From d0c59416d1984185bb8f84de82a76621e873e853 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sat, 18 Jun 2022 00:26:35 +0530 Subject: [PATCH 01/15] Port from GDNative to GDExtension for Godot 4.x --- .github/workflows/build.yml | 6 +- SConstruct | 2 +- demo/addons/godot-git-plugin/git_api.gdnlib | 6 +- demo/addons/godot-git-plugin/git_api.gdns | 8 +- demo/addons/godot-git-plugin/plugin.cfg | 2 +- demo/project.godot | 8 +- godot-cpp | 2 +- godot-git-plugin/SCsub | 8 +- godot-git-plugin/src/allocation_defs.h | 7 - godot-git-plugin/src/gdlibrary.cpp | 33 ++- godot-git-plugin/src/git_api.h | 152 ---------- .../src/{git_common.cpp => git_callbacks.cpp} | 52 ++-- .../src/{git_common.h => git_callbacks.h} | 21 +- .../src/{git_api.cpp => git_plugin.cpp} | 279 +++++++++--------- godot-git-plugin/src/git_plugin.h | 64 ++++ godot-git-plugin/src/git_wrappers.cpp | 16 + godot-git-plugin/src/git_wrappers.h | 73 +++++ 17 files changed, 375 insertions(+), 364 deletions(-) delete mode 100644 godot-git-plugin/src/allocation_defs.h delete mode 100644 godot-git-plugin/src/git_api.h rename godot-git-plugin/src/{git_common.cpp => git_callbacks.cpp} (54%) rename godot-git-plugin/src/{git_common.h => git_callbacks.h} (73%) rename godot-git-plugin/src/{git_api.cpp => git_plugin.cpp} (70%) create mode 100644 godot-git-plugin/src/git_plugin.h create mode 100644 godot-git-plugin/src/git_wrappers.cpp create mode 100644 godot-git-plugin/src/git_wrappers.h diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ed7786..0a2566d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: git submodule update --init --recursive pip3 install --user scons scons platform=linux target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=api.ci.json -j $(nproc) - ldd demo/addons/godot-git-plugin/linux/libgitapi.so + ldd demo/addons/godot-git-plugin/linux/libgit_plugin.so - uses: actions/upload-artifact@v2 with: name: godot-git-plugin-linux-release-x64-${{ github.sha }} @@ -34,7 +34,7 @@ jobs: git submodule update --init --recursive pip3 install --user scons scons platform=windows target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=api.ci.json -j $env:NUMBER_OF_PROCESSORS - dumpbin /dependents .\demo\addons\godot-git-plugin\win64\libgitapi.dll + dumpbin /dependents .\demo\addons\godot-git-plugin\win64\libgit_plugin.dll - uses: actions/upload-artifact@v2 with: name: godot-git-plugin-windows-release-x64-${{ github.sha }} @@ -51,7 +51,7 @@ jobs: git submodule update --init --recursive brew install scons scons platform=osx target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=api.ci.json macos_arch=universal use_llvm=yes -j $(sysctl -n hw.logicalcpu) - otool -L demo/addons/godot-git-plugin/osx/libgitapi.dylib + otool -L demo/addons/godot-git-plugin/osx/libgit_plugin.dylib - uses: actions/upload-artifact@v2 with: name: godot-git-plugin-macos-release-x64-${{ github.sha }} diff --git a/SConstruct b/SConstruct index e660b81..f70cb10 100644 --- a/SConstruct +++ b/SConstruct @@ -23,7 +23,7 @@ opts.Add(BoolVariable("use_llvm", opts.Add(PathVariable("target_path", "The path where the lib is installed.", "demo/addons/godot-git-plugin/")) opts.Add(PathVariable("target_name", "The library name.", - "libgitapi", PathVariable.PathAccept)) + "libgit_plugin", PathVariable.PathAccept)) opts.Add(EnumVariable("bits", "The bit architecture.", "64", ["64"])) opts.Add(EnumVariable("macos_arch", "Target macOS architecture", "universal", ["universal", "x86_64", "arm64"])) diff --git a/demo/addons/godot-git-plugin/git_api.gdnlib b/demo/addons/godot-git-plugin/git_api.gdnlib index 42c575b..342930a 100644 --- a/demo/addons/godot-git-plugin/git_api.gdnlib +++ b/demo/addons/godot-git-plugin/git_api.gdnlib @@ -7,9 +7,9 @@ singleton=false [entry] -OSX.64="res://addons/godot-git-plugin/osx/libgitapi.dylib" -Windows.64="res://addons/godot-git-plugin/win64/libgitapi.dll" -X11.64="res://addons/godot-git-plugin/linux/libgitapi.so" +OSX.64="res://addons/godot-git-plugin/osx/libgit_plugin.dylib" +Windows.64="res://addons/godot-git-plugin/win64/libgit_plugin.dll" +X11.64="res://addons/godot-git-plugin/linux/libgit_plugin.so" [dependencies] diff --git a/demo/addons/godot-git-plugin/git_api.gdns b/demo/addons/godot-git-plugin/git_api.gdns index eac0d86..621cd56 100644 --- a/demo/addons/godot-git-plugin/git_api.gdns +++ b/demo/addons/godot-git-plugin/git_api.gdns @@ -1,9 +1,9 @@ [gd_resource type="NativeScript" load_steps=2 format=2] -[ext_resource path="res://addons/godot-git-plugin/git_api.gdnlib" type="GDNativeLibrary" id=1] +[ext_resource path="res://addons/godot-git-plugin/git_plugin.gdnlib" type="GDNativeLibrary" id=1] [resource] -resource_name = "GitAPI" -class_name = "GitAPI" +resource_name = "GitPlugin" +class_name = "GitPlugin" library = ExtResource( 1 ) -script_class_name = "GitAPI" +script_class_name = "GitPlugin" diff --git a/demo/addons/godot-git-plugin/plugin.cfg b/demo/addons/godot-git-plugin/plugin.cfg index 6c5e0f6..a17b09e 100644 --- a/demo/addons/godot-git-plugin/plugin.cfg +++ b/demo/addons/godot-git-plugin/plugin.cfg @@ -4,4 +4,4 @@ name="Godot Git Plugin" description="This plugin lets you interact with Git without leaving the Godot editor. More information can be found at https://github.com/godotengine/godot-git-plugin/wiki" author="ChronicallySerious" version="v2.0.0" -script="git_api.gdns" +script="git_plugin.gdns" diff --git a/demo/project.godot b/demo/project.godot index 966c70f..4068d6a 100644 --- a/demo/project.godot +++ b/demo/project.godot @@ -10,12 +10,12 @@ config_version=4 _global_script_classes=[ { "base": "EditorVCSInterface", -"class": "GitAPI", +"class": "GitPlugin", "language": "NativeScript", -"path": "res://addons/godot-git-plugin/git_api.gdns" +"path": "res://addons/godot-git-plugin/git_plugin.gdns" } ] _global_script_class_icons={ -"GitAPI": "" +"GitPlugin": "" } [application] @@ -27,7 +27,7 @@ config/icon="res://icon.png" [editor] version_control/autoload_on_startup=true -version_control/plugin_name="GitAPI" +version_control/plugin_name="GitPlugin" [rendering] diff --git a/godot-cpp b/godot-cpp index 8366761..8dbaf5a 160000 --- a/godot-cpp +++ b/godot-cpp @@ -1 +1 @@ -Subproject commit 836676193031b706a9151f74959de7ae2fc1279b +Subproject commit 8dbaf5a7ff0b75222948d9e53633f584499f12bf diff --git a/godot-git-plugin/SCsub b/godot-git-plugin/SCsub index 053be64..2df48ed 100644 --- a/godot-git-plugin/SCsub +++ b/godot-git-plugin/SCsub @@ -53,6 +53,7 @@ elif env["platform"] == "linux": env.Append(CCFLAGS=["-fPIC", "-g", "-O3", "-std=c++17"]) elif env["platform"] == "windows": + env.Append(CPPDEFINES=["TYPED_METHOD_BIND"]) # TODO: Make this only apply when using MSVC env["target_path"] += "win64/" cpp_library += ".windows" # This makes sure to keep the session environment variables on windows, @@ -80,8 +81,11 @@ else: cpp_library += "." + str(bits) env.Append(CPPPATH=[".", "src/"]) -env.Append(CPPPATH=[godot_headers_path, cpp_bindings_path + "include/", - cpp_bindings_path + "include/core/", cpp_bindings_path + "include/gen/"]) +env.Append(CPPPATH=[ + godot_headers_path, + cpp_bindings_path + "include/", + cpp_bindings_path + "gen/include/" +]) env.Append(CPPPATH=["../thirdparty/git2/libgit2/include/"]) env.Append(LIBPATH=[cpp_bindings_path + "bin/", "../thirdparty/bin/"]) env.Prepend(LIBS=[cpp_library, "git2", "ssh2"]) diff --git a/godot-git-plugin/src/allocation_defs.h b/godot-git-plugin/src/allocation_defs.h deleted file mode 100644 index ab01496..0000000 --- a/godot-git-plugin/src/allocation_defs.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef ALLOCATION_DEF_H -#define ALLOCATION_DEF_H - -#define memnew(klass) new klass() -#define memdelete(pointer) pointer ? delete pointer : WARN_PRINT("GitAPI: Tried to delete a NULL object"); - -#endif // !ALLOCATION_DEF_H diff --git a/godot-git-plugin/src/gdlibrary.cpp b/godot-git-plugin/src/gdlibrary.cpp index c2e3201..d8fb10c 100644 --- a/godot-git-plugin/src/gdlibrary.cpp +++ b/godot-git-plugin/src/gdlibrary.cpp @@ -1,20 +1,31 @@ -#include "git_api.h" +#include "git_plugin.h" -#include +#include "godot_cpp/core/class_db.hpp" +#include "godot_cpp/godot.hpp" -extern "C" void GDN_EXPORT godot_gdnative_init(godot_gdnative_init_options *o) { - godot::Godot::gdnative_init(o); +void initialize_git_plugin_module(godot::ModuleInitializationLevel p_level) { + if (p_level != godot::MODULE_INITIALIZATION_LEVEL_EDITOR) { + return; + } + + godot::ClassDB::register_class(); } -extern "C" void GDN_EXPORT godot_gdnative_singleton(godot_gdnative_init_options *o) { +void uninitialize_git_plugin_module(godot::ModuleInitializationLevel p_level) { + if (p_level != godot::MODULE_INITIALIZATION_LEVEL_EDITOR) { + return; + } } -extern "C" void GDN_EXPORT godot_gdnative_terminate(godot_gdnative_terminate_options *o) { - godot::Godot::gdnative_terminate(o); -} +extern "C" { -extern "C" void GDN_EXPORT godot_nativescript_init(void *handle) { - godot::Godot::nativescript_init(handle); +GDNativeBool GDN_EXPORT git_plugin_init(const GDNativeInterface *p_interface, const GDNativeExtensionClassLibraryPtr p_library, GDNativeInitialization *r_initialization) { + godot::GDExtensionBinding::InitObject init_obj(p_interface, p_library, r_initialization); - godot::register_tool_class(); + init_obj.register_initializer(initialize_git_plugin_module); + init_obj.register_terminator(uninitialize_git_plugin_module); + init_obj.set_minimum_library_initialization_level(godot::MODULE_INITIALIZATION_LEVEL_EDITOR); + + return init_obj.init(); +} } diff --git a/godot-git-plugin/src/git_api.h b/godot-git-plugin/src/git_api.h deleted file mode 100644 index 417df97..0000000 --- a/godot-git-plugin/src/git_api.h +++ /dev/null @@ -1,152 +0,0 @@ -#ifndef GIT_API_H -#define GIT_API_H - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -#include - -namespace godot { - -class GitAPI; - -struct DiffHelper { - Array *diff_hunks; - GitAPI *git_api; -}; - -struct CString { - char *data = nullptr; - - CString() = delete; - CString(const String &string) : - data(string.alloc_c_string()) {} - CString(CString &&) = delete; - CString &operator=(const CString &) = delete; - CString &operator=(CString &&) = delete; - - ~CString() { - if (data) { - godot::api->godot_free(data); - data = nullptr; - } - } -}; - -template -class Capture { - T &smart_ptr = nullptr; - - using Raw = decltype(smart_ptr.get()); - - Raw raw = nullptr; - -public: - Capture() = delete; - Capture(T &ptr) : - smart_ptr(ptr) {} - Capture(Capture &&) = delete; - Capture &operator=(const Capture &) = delete; - Capture &operator=(Capture &&) = delete; - - operator Raw *() { - return &raw; - } - - ~Capture() { - if (raw) { - smart_ptr.reset(raw); - } - } -}; - -template -struct FunctionDeleter { - template - void operator()(T *ptr) { - DeleteFn(ptr); - } -}; - -template -using unique_ptr_deleter = std::unique_ptr>; - -using git_annotated_commit_ptr = unique_ptr_deleter; -using git_blob_ptr = unique_ptr_deleter; -using git_branch_iterator_ptr = unique_ptr_deleter; -using git_commit_ptr = unique_ptr_deleter; -using git_diff_ptr = unique_ptr_deleter; -using git_index_ptr = unique_ptr_deleter; -using git_object_ptr = unique_ptr_deleter; -using git_patch_ptr = unique_ptr_deleter; -using git_reference_ptr = unique_ptr_deleter; -using git_remote_ptr = unique_ptr_deleter; -using git_repository_ptr = unique_ptr_deleter; -using git_revwalk_ptr = unique_ptr_deleter; -using git_signature_ptr = unique_ptr_deleter; -using git_status_list_ptr = unique_ptr_deleter; -using git_tree_ptr = unique_ptr_deleter; - -class GitAPI : public EditorVCSInterface { - GODOT_CLASS(GitAPI, EditorVCSInterface) - - Credentials creds; - bool has_merge = false; - git_repository_ptr repo; - git_oid pull_merge_oid = {}; - - // Endpoints - bool _checkout_branch(const String branch_name); - void _commit(const String msg); - void _create_branch(const String branch_name); - void _create_remote(const String remote_name, const String remote_url); - void _discard_file(const String file_path); - void _fetch(const String remote); - Array _get_branch_list(); - String _get_current_branch_name(); - Array _get_diff(const String identifier, const int64_t area); - Array _get_line_diff(const String file_path, const String text); - Array _get_modified_files_data(); - Array _get_previous_commits(const int64_t max_commits); - Array _get_remotes(); - String _get_vcs_name(); - bool _initialize(const String project_path); - void _pull(const String remote); - void _push(const String remote, const bool force); - void _remove_branch(const String branch_name); - void _remove_remote(const String remote_name); - void _set_credentials(const String username, const String password, const String ssh_public_key_path, const String ssh_private_key_path, const String ssh_passphrase); - bool _shut_down(); - void _stage_file(const String file_path); - void _unstage_file(const String file_path); - - // Helpers - Array _parse_diff(git_diff *p_diff); - -public: - static void _register_methods(); - - bool check_errors(int error, String function, String file, int line, String message, const std::vector &ignores = {}); - void create_gitignore_and_gitattributes(); - bool create_initial_commit(); - - void _init(); -}; - -} // namespace godot - -#endif // !GIT_API_H diff --git a/godot-git-plugin/src/git_common.cpp b/godot-git-plugin/src/git_callbacks.cpp similarity index 54% rename from godot-git-plugin/src/git_common.cpp rename to godot-git-plugin/src/git_callbacks.cpp index 5c3233b..8c6c688 100644 --- a/godot-git-plugin/src/git_common.cpp +++ b/godot-git-plugin/src/git_callbacks.cpp @@ -1,6 +1,9 @@ -#include +#include -#include +#include "git_callbacks.h" + +#include "godot_cpp/godot.hpp" +#include "git_plugin.h" extern "C" int progress_cb(const char *str, int len, void *data) { (void)data; @@ -8,7 +11,7 @@ extern "C" int progress_cb(const char *str, int len, void *data) { char *progress_str = new char[len + 1]; memcpy(progress_str, str, len); progress_str[len] = '\0'; - godot::Godot::print("remote: " + godot::String(progress_str).strip_edges()); + std::cout << "remote: " << CString(godot::String(progress_str).strip_edges()).data << std::endl; delete[] progress_str; return 0; @@ -22,10 +25,10 @@ extern "C" int update_cb(const char *refname, const git_oid *a, const git_oid *b git_oid_tostr(b_str, short_commit_length, b); if (git_oid_is_zero(a)) { - godot::Godot::print("* [new] " + godot::String(b_str) + " " + godot::String(refname)); + std::cout << "* [new] " << CString(godot::String(b_str)).data << " " << CString(godot::String(refname)).data << std::endl; } else { git_oid_tostr(a_str, short_commit_length, a); - godot::Godot::print("[updated] " + godot::String(a_str) + "..." + godot::String(b_str) + " " + godot::String(refname)); + std::cout << "[updated] " << CString(godot::String(a_str)).data << "..." << CString(godot::String(b_str)).data << " " << CString(godot::String(refname)).data << std::endl; } return 0; @@ -35,9 +38,15 @@ extern "C" int transfer_progress_cb(const git_indexer_progress *stats, void *pay (void)payload; if (stats->received_objects == stats->total_objects) { - godot::Godot::print("Resolving deltas " + godot::String::num_int64(stats->indexed_deltas) + "/" + godot::String::num_int64(stats->total_deltas)); + std::cout << "Resolving deltas " << stats->indexed_deltas << "/" << stats->total_deltas << std::endl; } else if (stats->total_objects > 0) { - godot::Godot::print("Received " + godot::String::num_int64(stats->received_objects) + "/" + godot::String::num_int64(stats->total_objects) + " objects (" + godot::String::num_int64(stats->indexed_objects) + ") in " + godot::String::num_int64(static_cast(stats->received_bytes)) + " bytes"); + std::cout << "Received %d/%d objects (%d) in %d bytes" + << stats->received_objects << "/" + << stats->total_objects << " objects (" + << stats->indexed_objects << ") in " + << static_cast(stats->received_bytes) + << " bytes" + << std::endl; } return 0; } @@ -56,18 +65,19 @@ extern "C" int push_transfer_progress_cb(unsigned int current, unsigned int tota progress = (current * 100) / total; } - godot::Godot::print("Writing Objects: " + - godot::String::num_int64(progress) + "% (" + - godot::String::num_int64((int)current) + "/" + godot::String::num_int64((int)total) + "), " + godot::String::num_int64(bytes) + " bytes, done."); + std::cout << "Writing Objects: " + << progress << "% (" << current << "/" << total << ", " + << bytes << " bytes done." + << std::endl; return 0; } extern "C" int push_update_reference_cb(const char *refname, const char *status, void *data) { godot::String status_str = status; if (status_str == "") { - godot::Godot::print("[rejected] " + godot::String(refname) + " " + status_str); + std::cout << "[rejected] " << CString(godot::String(refname)).data << " " << CString(status_str).data << std::endl; } else { - godot::Godot::print("[updated] " + godot::String(refname)); + std::cout << "[updated] " << CString(godot::String(refname)).data << std::endl; } return 0; } @@ -78,29 +88,29 @@ extern "C" int credentials_cb(git_cred **out, const char *url, const char *usern godot::String proper_username = username_from_url ? username_from_url : creds->username; if (allowed_types & GIT_CREDENTIAL_USERPASS_PLAINTEXT) { - return git_cred_userpass_plaintext_new(out, godot::CString(proper_username).data, godot::CString(creds->password).data); + return git_cred_userpass_plaintext_new(out, CString(proper_username).data, CString(creds->password).data); } if (allowed_types & GIT_CREDENTIAL_SSH_KEY) { return git_credential_ssh_key_new(out, - godot::CString(proper_username).data, - godot::CString(creds->ssh_public_key_path).data, - godot::CString(creds->ssh_private_key_path).data, - godot::CString(creds->ssh_passphrase).data); + CString(proper_username).data, + CString(creds->ssh_public_key_path).data, + CString(creds->ssh_private_key_path).data, + CString(creds->ssh_passphrase).data); } if (allowed_types & GIT_CREDENTIAL_USERNAME) { - return git_credential_username_new(out, godot::CString(proper_username).data); + return git_credential_username_new(out, CString(proper_username).data); } return GIT_EUSER; } extern "C" int diff_hunk_cb(const git_diff_delta *delta, const git_diff_hunk *range, void *payload) { - godot::DiffHelper *diff_helper = (godot::DiffHelper *)payload; + DiffHelper *diff_helper = (DiffHelper *)payload; - godot::Dictionary hunk = diff_helper->git_api->create_diff_hunk(range->old_start, range->new_start, range->old_lines, range->new_lines); + godot::Dictionary hunk = diff_helper->git_plugin->create_diff_hunk(range->old_start, range->new_start, range->old_lines, range->new_lines); diff_helper->diff_hunks->push_back(hunk); return 1; -} \ No newline at end of file +} diff --git a/godot-git-plugin/src/git_common.h b/godot-git-plugin/src/git_callbacks.h similarity index 73% rename from godot-git-plugin/src/git_common.h rename to godot-git-plugin/src/git_callbacks.h index 539cd70..57015a9 100644 --- a/godot-git-plugin/src/git_common.h +++ b/godot-git-plugin/src/git_callbacks.h @@ -1,18 +1,13 @@ -#ifndef GIT_COMMON_H -#define GIT_COMMON_H +#pragma once -#include +#include "godot_cpp/variant/array.hpp" +#include "git2.h" -#include +class GitPlugin; -#include - -struct Credentials { - godot::String username; - godot::String password; - godot::String ssh_public_key_path; - godot::String ssh_private_key_path; - godot::String ssh_passphrase; +struct DiffHelper { + godot::Array *diff_hunks; + GitPlugin *git_plugin; }; extern "C" int progress_cb(const char *str, int len, void *data); @@ -23,5 +18,3 @@ extern "C" int credentials_cb(git_cred **out, const char *url, const char *usern extern "C" int push_transfer_progress_cb(unsigned int current, unsigned int total, size_t bytes, void *payload); extern "C" int push_update_reference_cb(const char *refname, const char *status, void *data); extern "C" int diff_hunk_cb(const git_diff_delta *delta, const git_diff_hunk *range, void *payload); - -#endif // !GIT_COMMON_H diff --git a/godot-git-plugin/src/git_api.cpp b/godot-git-plugin/src/git_plugin.cpp similarity index 70% rename from godot-git-plugin/src/git_api.cpp rename to godot-git-plugin/src/git_plugin.cpp index eb1cc41..8a01788 100644 --- a/godot-git-plugin/src/git_api.cpp +++ b/godot-git-plugin/src/git_plugin.cpp @@ -1,4 +1,7 @@ -#include "git_api.h" +#include "git_plugin.h" + +#include "godot_cpp/core/class_db.hpp" +#include "godot_cpp/classes/file.hpp" #define GIT2_CALL(error, msg) \ if (check_errors(error, __FUNCTION__, __FILE__, __LINE__, msg)) { \ @@ -22,35 +25,47 @@ #define COMMA , -namespace godot { - -void GitAPI::_register_methods() { - register_method("_commit", &GitAPI::_commit); - register_method("_get_modified_files_data", &GitAPI::_get_modified_files_data); - register_method("_get_remotes", &GitAPI::_get_remotes); - register_method("_get_diff", &GitAPI::_get_diff); - register_method("_get_vcs_name", &GitAPI::_get_vcs_name); - register_method("_initialize", &GitAPI::_initialize); - register_method("_shut_down", &GitAPI::_shut_down); - register_method("_stage_file", &GitAPI::_stage_file); - register_method("_discard_file", &GitAPI::_discard_file); - register_method("_unstage_file", &GitAPI::_unstage_file); - register_method("_get_previous_commits", &GitAPI::_get_previous_commits); - register_method("_get_branch_list", &GitAPI::_get_branch_list); - register_method("_create_branch", &GitAPI::_create_branch); - register_method("_create_remote", &GitAPI::_create_remote); - register_method("_remove_branch", &GitAPI::_remove_branch); - register_method("_remove_remote", &GitAPI::_remove_remote); - register_method("_get_current_branch_name", &GitAPI::_get_current_branch_name); - register_method("_checkout_branch", &GitAPI::_checkout_branch); - register_method("_fetch", &GitAPI::_fetch); - register_method("_pull", &GitAPI::_pull); - register_method("_push", &GitAPI::_push); - register_method("_get_line_diff", &GitAPI::_get_line_diff); - register_method("_set_credentials", &GitAPI::_set_credentials); +void GitPlugin::_bind_methods() { + godot::ClassDB::bind_method(godot::D_METHOD("_commit", "msg"), &GitPlugin::_commit); + godot::ClassDB::bind_method(godot::D_METHOD("_get_modified_files_data"), &GitPlugin::_get_modified_files_data); + godot::ClassDB::bind_method(godot::D_METHOD("_get_remotes"), &GitPlugin::_get_remotes); + godot::ClassDB::bind_method(godot::D_METHOD("_get_diff", "identifier", "area"), &GitPlugin::_get_diff); + godot::ClassDB::bind_method(godot::D_METHOD("_get_vcs_name"), &GitPlugin::_get_vcs_name); + godot::ClassDB::bind_method(godot::D_METHOD("_initialize", "project_path"), &GitPlugin::_initialize); + godot::ClassDB::bind_method(godot::D_METHOD("_shut_down"), &GitPlugin::_shut_down); + godot::ClassDB::bind_method(godot::D_METHOD("_stage_file", "file_path"), &GitPlugin::_stage_file); + godot::ClassDB::bind_method(godot::D_METHOD("_discard_file", "file_path"), &GitPlugin::_discard_file); + godot::ClassDB::bind_method(godot::D_METHOD("_unstage_file", "file_path"), &GitPlugin::_unstage_file); + godot::ClassDB::bind_method(godot::D_METHOD("_get_previous_commits", "max_commits"), &GitPlugin::_get_previous_commits); + godot::ClassDB::bind_method(godot::D_METHOD("_get_branch_list"), &GitPlugin::_get_branch_list); + godot::ClassDB::bind_method(godot::D_METHOD("_create_branch", "branch_name"), &GitPlugin::_create_branch); + godot::ClassDB::bind_method(godot::D_METHOD("_create_remote", "remote_url"), &GitPlugin::_create_remote); + godot::ClassDB::bind_method(godot::D_METHOD("_remove_branch", "branch_name"), &GitPlugin::_remove_branch); + godot::ClassDB::bind_method(godot::D_METHOD("_remove_remote", "remote_name"), &GitPlugin::_remove_remote); + godot::ClassDB::bind_method(godot::D_METHOD("_get_current_branch_name"), &GitPlugin::_get_current_branch_name); + godot::ClassDB::bind_method(godot::D_METHOD("_checkout_branch", "branch_name"), &GitPlugin::_checkout_branch); + godot::ClassDB::bind_method(godot::D_METHOD("_fetch", "remote"), &GitPlugin::_fetch); + godot::ClassDB::bind_method(godot::D_METHOD("_pull", "remote"), &GitPlugin::_pull); + godot::ClassDB::bind_method(godot::D_METHOD("_push", "remote", "force"), &GitPlugin::_push); + godot::ClassDB::bind_method(godot::D_METHOD("_get_line_diff", "file_path", "text"), &GitPlugin::_get_line_diff); + godot::ClassDB::bind_method(godot::D_METHOD("_set_credentials", "username", "password", "ssh_public_key_path", "ssh_private_key_path", "ssh_passphrase"), &GitPlugin::_set_credentials); } -bool GitAPI::check_errors(int error, String function, String file, int line, String message, const std::vector &ignores) { +GitPlugin::GitPlugin() { + map_changes[GIT_STATUS_WT_NEW] = CHANGE_TYPE_NEW; + map_changes[GIT_STATUS_INDEX_NEW] = CHANGE_TYPE_NEW; + map_changes[GIT_STATUS_WT_MODIFIED] = CHANGE_TYPE_MODIFIED; + map_changes[GIT_STATUS_INDEX_MODIFIED] = CHANGE_TYPE_MODIFIED; + map_changes[GIT_STATUS_WT_RENAMED] = CHANGE_TYPE_RENAMED; + map_changes[GIT_STATUS_INDEX_RENAMED] = CHANGE_TYPE_RENAMED; + map_changes[GIT_STATUS_WT_DELETED] = CHANGE_TYPE_DELETED; + map_changes[GIT_STATUS_INDEX_DELETED] = CHANGE_TYPE_DELETED; + map_changes[GIT_STATUS_WT_TYPECHANGE] = CHANGE_TYPE_TYPECHANGE; + map_changes[GIT_STATUS_INDEX_TYPECHANGE] = CHANGE_TYPE_TYPECHANGE; + map_changes[GIT_STATUS_CONFLICTED] = CHANGE_TYPE_UNMERGED; +} + +bool GitPlugin::check_errors(int error, godot::String function, godot::String file, int line, godot::String message, const std::vector &ignores) { const git_error *lg2err; if (error == 0) { @@ -63,18 +78,18 @@ bool GitAPI::check_errors(int error, String function, String file, int line, Str } } - message += "."; + message = message + "."; if ((lg2err = git_error_last()) != nullptr && lg2err->message != nullptr) { - message += " Error " + String::num_int64(error) + ": "; - message += String(lg2err->message); + message = message + " Error " + godot::String::num_int64(error) + ": "; + message = message + godot::String(lg2err->message); } - Godot::print_error("GitAPI: " + message, function, file, line); + std::cout << "GitPlugin: " << CString(message).data << " in " << CString(file).data << ":" << CString(function).data << "#L" << line << std::endl; popup_error(message); return true; } -void GitAPI::_set_credentials(const String username, const String password, const String ssh_public_key_path, const String ssh_private_key_path, const String ssh_passphrase) { +void GitPlugin::_set_credentials(const godot::String &username, const godot::String &password, const godot::String &ssh_public_key_path, const godot::String &ssh_private_key_path, const godot::String &ssh_passphrase) { creds.username = username; creds.password = password; creds.ssh_public_key_path = ssh_public_key_path; @@ -82,7 +97,7 @@ void GitAPI::_set_credentials(const String username, const String password, cons creds.ssh_passphrase = ssh_passphrase; } -void GitAPI::_discard_file(const String file_path) { +void GitPlugin::_discard_file(const godot::String &file_path) { git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT; CString c_path(file_path); char *paths[] = { c_path.data }; @@ -92,7 +107,7 @@ void GitAPI::_discard_file(const String file_path) { GIT2_CALL(git_checkout_index(repo.get(), nullptr, &opts), "Could not checkout index"); } -void GitAPI::_commit(const String msg) { +void GitPlugin::_commit(const godot::String &msg) { git_index_ptr repo_index; GIT2_CALL(git_repository_index(Capture(repo_index), repo.get()), "Could not get repository index"); @@ -152,7 +167,7 @@ void GitAPI::_commit(const String msg) { } } -void GitAPI::_stage_file(const String file_path) { +void GitPlugin::_stage_file(const godot::String &file_path) { CString c_path(file_path); char *paths[] = { c_path.data }; git_strarray array = { paths, 1 }; @@ -163,7 +178,7 @@ void GitAPI::_stage_file(const String file_path) { GIT2_CALL(git_index_write(index.get()), "Could not write changes to disk"); } -void GitAPI::_unstage_file(const String file_path) { +void GitPlugin::_unstage_file(const godot::String &file_path) { CString c_path(file_path); char *paths[] = { c_path.data }; git_strarray array = { paths, 1 }; @@ -187,12 +202,11 @@ void GitAPI::_unstage_file(const String file_path) { } } -void GitAPI::create_gitignore_and_gitattributes() { - File *file = File::_new(); - - if (!file->file_exists("res://.gitignore")) { - file->open("res://.gitignore", File::ModeFlags::WRITE); - file->store_string( +void GitPlugin::create_gitignore_and_gitattributes() { + if (!godot::File::file_exists("res://.gitignore")) { + godot::File file; + file.open("res://.gitignore", godot::File::ModeFlags::WRITE); + file.store_string( "# Godot-specific ignores\n" ".import/\n" "export.cfg\n" @@ -204,12 +218,13 @@ void GitAPI::create_gitignore_and_gitattributes() { "# Mono-specific ignores\n" ".mono/\n" "data_*/\n"); - file->close(); + file.close(); } - if (!file->file_exists("res://.gitattributes")) { - file->open("res://.gitattributes", File::ModeFlags::WRITE); - file->store_string( + if (!godot::File::file_exists("res://.gitattributes")) { + godot::File file; + file.open("res://.gitattributes", godot::File::ModeFlags::WRITE); + file.store_string( "# Set the default behavior, in case people don't have core.autocrlf set.\n" "* text=auto\n\n" @@ -227,14 +242,12 @@ void GitAPI::create_gitignore_and_gitattributes() { "# Denote all files that are truly binary and should not be modified.\n" "*.png binary\n" "*.jpg binary\n"); - file->close(); + file.close(); } - - file->free(); } -Array GitAPI::_get_modified_files_data() { - Array stats_files; +godot::Array GitPlugin::_get_modified_files_data() { + godot::Array stats_files; git_status_options opts = GIT_STATUS_OPTIONS_INIT; opts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR; @@ -242,45 +255,32 @@ Array GitAPI::_get_modified_files_data() { opts.flags |= GIT_STATUS_OPT_INCLUDE_UNTRACKED | GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX | GIT_STATUS_OPT_SORT_CASE_SENSITIVELY | GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS; git_status_list_ptr statuses; - GIT2_CALL_R(git_status_list_new(Capture(statuses), repo.get(), &opts), "Could not get status information from repository", Array()); + GIT2_CALL_R(git_status_list_new(Capture(statuses), repo.get(), &opts), "Could not get status information from repository", godot::Array()); size_t count = git_status_list_entrycount(statuses.get()); for (size_t i = 0; i < count; ++i) { const git_status_entry *entry = git_status_byindex(statuses.get(), i); - String path; + godot::String path; if (entry->index_to_workdir) { path = entry->index_to_workdir->new_file.path; } else { path = entry->head_to_index->new_file.path; } - static Dictionary map_changes = Dictionary::make( - GIT_STATUS_WT_NEW, CHANGE_TYPE_NEW, - GIT_STATUS_INDEX_NEW, CHANGE_TYPE_NEW, - GIT_STATUS_WT_MODIFIED, CHANGE_TYPE_MODIFIED, - GIT_STATUS_INDEX_MODIFIED, CHANGE_TYPE_MODIFIED, - GIT_STATUS_WT_RENAMED, CHANGE_TYPE_RENAMED, - GIT_STATUS_INDEX_RENAMED, CHANGE_TYPE_RENAMED, - GIT_STATUS_WT_DELETED, CHANGE_TYPE_DELETED, - GIT_STATUS_INDEX_DELETED, CHANGE_TYPE_DELETED, - GIT_STATUS_WT_TYPECHANGE, CHANGE_TYPE_TYPECHANGE, - GIT_STATUS_INDEX_TYPECHANGE, CHANGE_TYPE_TYPECHANGE, - GIT_STATUS_CONFLICTED, CHANGE_TYPE_UNMERGED); - const static int git_status_wt = GIT_STATUS_WT_NEW | GIT_STATUS_WT_MODIFIED | GIT_STATUS_WT_DELETED | GIT_STATUS_WT_TYPECHANGE | GIT_STATUS_WT_RENAMED | GIT_STATUS_CONFLICTED; const static int git_status_index = GIT_STATUS_INDEX_NEW | GIT_STATUS_INDEX_MODIFIED | GIT_STATUS_INDEX_DELETED | GIT_STATUS_INDEX_RENAMED | GIT_STATUS_INDEX_TYPECHANGE; if (entry->status & git_status_wt) { - stats_files.push_back(create_status_file(path, map_changes[entry->status & git_status_wt], TREE_AREA_UNSTAGED)); + stats_files.push_back(create_status_file(path, map_changes[git_status_t(entry->status & git_status_wt)], TREE_AREA_UNSTAGED)); } if (entry->status & git_status_index) { if (entry->status == GIT_STATUS_INDEX_RENAMED) { - String old_path = entry->head_to_index->old_file.path; - stats_files.push_back(create_status_file(old_path, map_changes[GIT_STATUS_INDEX_DELETED], TREE_AREA_STAGED)); - stats_files.push_back(create_status_file(path, map_changes[GIT_STATUS_INDEX_NEW], TREE_AREA_STAGED)); + godot::String old_path = entry->head_to_index->old_file.path; + stats_files.push_back(create_status_file(old_path, map_changes.at(GIT_STATUS_INDEX_DELETED), TREE_AREA_STAGED)); + stats_files.push_back(create_status_file(path, map_changes.at(GIT_STATUS_INDEX_NEW), TREE_AREA_STAGED)); } else { - stats_files.push_back(create_status_file(path, map_changes[entry->status & git_status_index], TREE_AREA_STAGED)); + stats_files.push_back(create_status_file(path, map_changes.at(git_status_t(entry->status & git_status_index)), TREE_AREA_STAGED)); } } } @@ -288,31 +288,31 @@ Array GitAPI::_get_modified_files_data() { return stats_files; } -Array GitAPI::_get_branch_list() { +godot::Array GitPlugin::_get_branch_list() { git_branch_iterator_ptr it; - GIT2_CALL_R(git_branch_iterator_new(Capture(it), repo.get(), GIT_BRANCH_LOCAL), "Could not create branch iterator", Array()); + GIT2_CALL_R(git_branch_iterator_new(Capture(it), repo.get(), GIT_BRANCH_LOCAL), "Could not create branch iterator", godot::Array()); - Array branch_names; + godot::Array branch_names; git_reference_ptr ref; git_branch_t type; while (git_branch_next(Capture(ref), &type, it.get()) != GIT_ITEROVER) { const char *name = nullptr; - GIT2_CALL_R(git_branch_name(&name, ref.get()), "Could not get branch name", Array()); + GIT2_CALL_R(git_branch_name(&name, ref.get()), "Could not get branch name", godot::Array()); if (git_branch_is_head(ref.get())) { // Always send the current branch as the first branch in list branch_names.push_front(name); } else { - branch_names.push_back(String(name)); + branch_names.push_back(godot::String(name)); } } return branch_names; } -void GitAPI::_create_branch(const String branch_name) { +void GitPlugin::_create_branch(const godot::String &branch_name) { git_oid head_commit_id; GIT2_CALL(git_reference_name_to_id(&head_commit_id, repo.get(), "HEAD"), "Could not get HEAD commit ID"); @@ -323,51 +323,51 @@ void GitAPI::_create_branch(const String branch_name) { GIT2_CALL(git_branch_create(Capture(branch_ref), repo.get(), CString(branch_name).data, head_commit.get(), 0), "Could not create branch from HEAD"); } -void GitAPI::_create_remote(const String remote_name, const String remote_url) { +void GitPlugin::_create_remote(const godot::String &remote_name, const godot::String &remote_url) { git_remote_ptr remote; GIT2_CALL(git_remote_create(Capture(remote), repo.get(), CString(remote_name).data, CString(remote_url).data), "Could not create remote"); } -void GitAPI::_remove_branch(const String branch_name) { +void GitPlugin::_remove_branch(const godot::String &branch_name) { git_reference_ptr branch; GIT2_CALL(git_branch_lookup(Capture(branch), repo.get(), CString(branch_name).data, GIT_BRANCH_LOCAL), "Could not find branch " + branch_name); GIT2_CALL(git_branch_delete(branch.get()), "Could not delete branch reference of " + branch_name); } -void GitAPI::_remove_remote(const String remote_name) { +void GitPlugin::_remove_remote(const godot::String &remote_name) { GIT2_CALL(git_remote_delete(repo.get(), CString(remote_name).data), "Could not delete remote " + remote_name); } -Array GitAPI::_get_line_diff(String file_path, String text) { +godot::Array GitPlugin::_get_line_diff(const godot::String &file_path, const godot::String &text) { git_diff_options opts = GIT_DIFF_OPTIONS_INIT; opts.context_lines = 0; opts.flags = GIT_DIFF_DISABLE_PATHSPEC_MATCH | GIT_DIFF_INCLUDE_UNTRACKED; git_index_ptr index; - GIT2_CALL_R(git_repository_index(Capture(index), repo.get()), "Failed to get repository index", Array()); - GIT2_CALL_R(git_index_read(index.get(), 0), "Failed to read index", Array()); + GIT2_CALL_R(git_repository_index(Capture(index), repo.get()), "Failed to get repository index", godot::Array()); + GIT2_CALL_R(git_index_read(index.get(), 0), "Failed to read index", godot::Array()); const git_index_entry *entry = git_index_get_bypath(index.get(), CString(file_path).data, GIT_INDEX_STAGE_NORMAL); if (!entry) { - return Array(); + return godot::Array(); } git_reference_ptr head; - GIT2_CALL_R(git_repository_head(Capture(head), repo.get()), "Failed to load repository head", Array()); + GIT2_CALL_R(git_repository_head(Capture(head), repo.get()), "Failed to load repository head", godot::Array()); git_blob_ptr blob; - GIT2_CALL_R(git_blob_lookup(Capture(blob), repo.get(), &entry->id), "Failed to load head blob", Array()); + GIT2_CALL_R(git_blob_lookup(Capture(blob), repo.get(), &entry->id), "Failed to load head blob", godot::Array()); - Array diff_contents; + godot::Array diff_contents; DiffHelper diff_helper = { &diff_contents, this }; - GIT2_CALL_R(git_diff_blob_to_buffer(blob.get(), nullptr, CString(text).data, text.length(), nullptr, &opts, nullptr, nullptr, diff_hunk_cb, nullptr, &diff_helper), "Failed to make diff", Array()); + GIT2_CALL_R(git_diff_blob_to_buffer(blob.get(), nullptr, CString(text).data, text.length(), nullptr, &opts, nullptr, nullptr, diff_hunk_cb, nullptr, &diff_helper), "Failed to make diff", godot::Array()); return diff_contents; } -String GitAPI::_get_current_branch_name() { +godot::String GitPlugin::_get_current_branch_name() { git_reference_ptr head; GIT2_CALL_R_IGNORE(git_repository_head(Capture(head), repo.get()), "Could not find repository HEAD", "", { GIT_ENOTFOUND COMMA GIT_EUNBORNBRANCH }); @@ -385,11 +385,11 @@ String GitAPI::_get_current_branch_name() { return name; } -Array GitAPI::_get_remotes() { +godot::Array GitPlugin::_get_remotes() { git_strarray remote_array; - GIT2_CALL_R(git_remote_list(&remote_array, repo.get()), "Could not get list of remotes", Array()); + GIT2_CALL_R(git_remote_list(&remote_array, repo.get()), "Could not get list of remotes", godot::Array()); - Array remotes; + godot::Array remotes; for (int i = 0; i < remote_array.count; i++) { remotes.push_back(remote_array.strings[i]); } @@ -397,25 +397,25 @@ Array GitAPI::_get_remotes() { return remotes; } -Array GitAPI::_get_previous_commits(const int64_t max_commits) { +godot::Array GitPlugin::_get_previous_commits(int64_t max_commits) { git_revwalk_ptr walker; - GIT2_CALL_R(git_revwalk_new(Capture(walker), repo.get()), "Could not create new revwalk", Array()); - GIT2_CALL_R(git_revwalk_sorting(walker.get(), GIT_SORT_TIME), "Could not sort revwalk by time", Array()); + GIT2_CALL_R(git_revwalk_new(Capture(walker), repo.get()), "Could not create new revwalk", godot::Array()); + GIT2_CALL_R(git_revwalk_sorting(walker.get(), GIT_SORT_TIME), "Could not sort revwalk by time", godot::Array()); - GIT2_CALL_R_IGNORE(git_revwalk_push_head(walker.get()), "Could not push HEAD to revwalk", Array(), { GIT_ENOTFOUND COMMA GIT_ERROR }); + GIT2_CALL_R_IGNORE(git_revwalk_push_head(walker.get()), "Could not push HEAD to revwalk", godot::Array(), { GIT_ENOTFOUND COMMA GIT_ERROR }); git_oid oid; - Array commits; + godot::Array commits; char commit_id[GIT_OID_HEXSZ + 1]; for (int i = 0; !git_revwalk_next(&oid, walker.get()) && i <= max_commits; i++) { git_commit_ptr commit; GIT2_CALL_R(git_commit_lookup(Capture(commit), repo.get(), &oid), "Failed to lookup the commit", commits); git_oid_tostr(commit_id, GIT_OID_HEXSZ + 1, git_commit_id(commit.get())); - String msg = git_commit_message(commit.get()); + godot::String msg = git_commit_message(commit.get()); const git_signature *sig = git_commit_author(commit.get()); - String author = String() + sig->name + " <" + sig->email + ">"; + godot::String author = godot::String() + sig->name + " <" + sig->email + ">"; commits.push_back(create_commit(msg, author, commit_id, sig->when.time, sig->when.offset)); } @@ -423,8 +423,8 @@ Array GitAPI::_get_previous_commits(const int64_t max_commits) { return commits; } -void GitAPI::_fetch(String remote) { - Godot::print("GitAPI: Performing fetch from " + remote); +void GitPlugin::_fetch(const godot::String &remote) { + std::cout << "GitPlugin: Performing fetch from " << CString(remote).data << std::endl; git_remote_ptr remote_object; GIT2_CALL(git_remote_lookup(Capture(remote_object), repo.get(), CString(remote).data), "Could not lookup remote \"" + remote + "\""); @@ -444,11 +444,11 @@ void GitAPI::_fetch(String remote) { opts.callbacks = remote_cbs; GIT2_CALL(git_remote_fetch(remote_object.get(), nullptr, &opts, "fetch"), "Could not fetch data from remote"); - Godot::print("GitAPI: Fetch ended"); + std::cout << "GitPlugin: Fetch ended" << std::endl; } -void GitAPI::_pull(String remote) { - Godot::print("GitAPI: Performing pull from " + remote); +void GitPlugin::_pull(const godot::String &remote) { + std::cout << "GitPlugin: Performing pull from " << CString(remote).data << std::endl; git_remote_ptr remote_object; GIT2_CALL(git_remote_lookup(Capture(remote_object), repo.get(), CString(remote).data), "Could not lookup remote \"" + remote + "\""); @@ -467,7 +467,7 @@ void GitAPI::_pull(String remote) { git_fetch_options fetch_opts = GIT_FETCH_OPTIONS_INIT; fetch_opts.callbacks = remote_cbs; - String branch_name = _get_current_branch_name(); + godot::String branch_name = _get_current_branch_name(); CString ref_spec_str("refs/heads/" + branch_name); @@ -480,7 +480,7 @@ void GitAPI::_pull(String remote) { GIT2_CALL(git_repository_fetchhead_foreach(repo.get(), fetchhead_foreach_cb, &pull_merge_oid), "Could not read \"FETCH_HEAD\" file"); if (git_oid_is_zero(&pull_merge_oid)) { - popup_error("GitAPI: Could not find remote branch HEAD for " + branch_name + ". Try pushing the branch first."); + popup_error("GitPlugin: Could not find remote branch HEAD for " + branch_name + ". Try pushing the branch first."); return; } @@ -501,7 +501,7 @@ void GitAPI::_pull(String remote) { GIT2_CALL(git_repository_head(Capture(target_ref), repo.get()), "Failed to get HEAD reference"); git_object_ptr target; - GIT2_CALL(git_object_lookup(Capture(target), repo.get(), &pull_merge_oid, GIT_OBJECT_COMMIT), "Failed to lookup OID " + String(git_oid_tostr_s(&pull_merge_oid))); + GIT2_CALL(git_object_lookup(Capture(target), repo.get(), &pull_merge_oid, GIT_OBJECT_COMMIT), "Failed to lookup OID " + godot::String(git_oid_tostr_s(&pull_merge_oid))); ff_checkout_options.checkout_strategy = GIT_CHECKOUT_SAFE; GIT2_CALL(git_checkout_tree(repo.get(), target.get(), &ff_checkout_options), "Failed to checkout HEAD reference"); @@ -509,7 +509,7 @@ void GitAPI::_pull(String remote) { git_reference_ptr new_target_ref; GIT2_CALL(git_reference_set_target(Capture(new_target_ref), target_ref.get(), &pull_merge_oid, nullptr), "Failed to move HEAD reference"); - Godot::print("GitAPI: Fast Forwarded"); + std::cout << "GitPlugin: Fast Forwarded" << std::endl; GIT2_CALL(git_repository_state_cleanup(repo.get()), "Could not clean repository state"); } else if (merge_analysis & GIT_MERGE_ANALYSIS_NORMAL) { @@ -525,27 +525,27 @@ void GitAPI::_pull(String remote) { GIT2_CALL(git_repository_index(Capture(index), repo.get()), "Could not get repository index"); if (git_index_has_conflicts(index.get())) { - popup_error("GitAPI: Index has conflicts, Solve conflicts and make a merge commit."); + popup_error("GitPlugin: Index has conflicts, Solve conflicts and make a merge commit."); } else { - popup_error("GitAPI: Change are staged, make a merge commit."); + popup_error("GitPlugin: Change are staged, make a merge commit."); } has_merge = true; } else if (merge_analysis & GIT_MERGE_ANALYSIS_UP_TO_DATE) { - Godot::print("GitAPI: Already up to date"); + std::cout << "GitPlugin: Already up to date" << std::endl; GIT2_CALL(git_repository_state_cleanup(repo.get()), "Could not clean repository state"); } else { - Godot::print("GitAPI: Can not merge"); + std::cout << "GitPlugin: Can not merge" << std::endl; } - Godot::print("GitAPI: Pull ended"); + std::cout << "GitPlugin: Pull ended" << std::endl; } -void GitAPI::_push(const String remote, const bool force) { - Godot::print("GitAPI: Performing push to " + remote); +void GitPlugin::_push(const godot::String &remote, bool force) { + std::cout << "GitPlugin: Performing push to " << CString(remote).data << std::endl; git_remote_ptr remote_object; GIT2_CALL(git_remote_lookup(Capture(remote_object), repo.get(), CString(remote).data), "Could not lookup remote \"" + remote + "\""); @@ -561,9 +561,9 @@ void GitAPI::_push(const String remote, const bool force) { GIT2_CALL(git_remote_connect(remote_object.get(), GIT_DIRECTION_PUSH, &remote_cbs, nullptr, nullptr), "Could not connect to remote \"" + remote + "\". Are your credentials correct? Try using a PAT token (in case you are using Github) as your password"); - String branch_name = _get_current_branch_name(); + godot::String branch_name = _get_current_branch_name(); - CString pushspec(String() + (force ? "+" : "") + "refs/heads/" + branch_name); + CString pushspec(godot::String() + (force ? "+" : "") + "refs/heads/" + branch_name); const git_strarray refspec = { &pushspec.data, 1 }; git_push_options push_options = GIT_PUSH_OPTIONS_INIT; @@ -571,10 +571,10 @@ void GitAPI::_push(const String remote, const bool force) { GIT2_CALL(git_remote_push(remote_object.get(), &refspec, &push_options), "Failed to push"); - Godot::print("GitAPI: Push ended"); + std::cout << "GitPlugin: Push ended" << std::endl; } -bool GitAPI::_checkout_branch(String branch_name) { +bool GitPlugin::_checkout_branch(const godot::String &branch_name) { git_reference_ptr branch; GIT2_CALL_R(git_branch_lookup(Capture(branch), repo.get(), CString(branch_name).data, GIT_BRANCH_LOCAL), "Could not find branch", false); const char *branch_ref_name = git_reference_name(branch.get()); @@ -590,9 +590,9 @@ bool GitAPI::_checkout_branch(String branch_name) { return true; } -Array GitAPI::_get_diff(const String identifier, const int64_t area) { +godot::Array GitPlugin::_get_diff(const godot::String &identifier, const int64_t area) { git_diff_options opts = GIT_DIFF_OPTIONS_INIT; - Array diff_contents; + godot::Array diff_contents; opts.context_lines = 2; opts.interhunk_lines = 0; @@ -651,34 +651,36 @@ Array GitAPI::_get_diff(const String identifier, const int64_t area) { return diff_contents; } -Array GitAPI::_parse_diff(git_diff *diff) { - Array diff_contents; +godot::Array GitPlugin::_parse_diff(git_diff *diff) { + godot::Array diff_contents; for (int i = 0; i < git_diff_num_deltas(diff); i++) { const git_diff_delta *delta = git_diff_get_delta(diff, i); git_patch_ptr patch; - GIT2_CALL_R(git_patch_from_diff(Capture(patch), diff, i), "Could not create patch from diff", Array()); + GIT2_CALL_R(git_patch_from_diff(Capture(patch), diff, i), "Could not create patch from diff", godot::Array()); - Dictionary diff_file = create_diff_file(delta->new_file.path, delta->old_file.path); + godot::Dictionary diff_file = create_diff_file(delta->new_file.path, delta->old_file.path); - Array diff_hunks; + godot::Array diff_hunks; for (int j = 0; j < git_patch_num_hunks(patch.get()); j++) { const git_diff_hunk *git_hunk; size_t line_count; - GIT2_CALL_R(git_patch_get_hunk(&git_hunk, &line_count, patch.get(), j), "Could not get hunk from patch", Array()); + GIT2_CALL_R(git_patch_get_hunk(&git_hunk, &line_count, patch.get(), j), "Could not get hunk from patch", godot::Array()); - Dictionary diff_hunk = create_diff_hunk(git_hunk->old_start, git_hunk->new_start, git_hunk->old_lines, git_hunk->new_lines); + godot::Dictionary diff_hunk = create_diff_hunk(git_hunk->old_start, git_hunk->new_start, git_hunk->old_lines, git_hunk->new_lines); - Array diff_lines; + godot::Array diff_lines; for (int k = 0; k < line_count; k++) { const git_diff_line *git_diff_line; - GIT2_CALL_R(git_patch_get_line_in_hunk(&git_diff_line, patch.get(), j, k), "Could not get line from hunk in patch", Array()); + GIT2_CALL_R(git_patch_get_line_in_hunk(&git_diff_line, patch.get(), j, k), "Could not get line from hunk in patch", godot::Array()); char *content = new char[git_diff_line->content_len + 1]; memcpy(content, git_diff_line->content, git_diff_line->content_len); content[git_diff_line->content_len] = '\0'; - diff_lines.push_back(create_diff_line(git_diff_line->new_lineno, git_diff_line->old_lineno, String(content), String(git_diff_line->origin))); + godot::String status = " "; // We reserve 1 null terminated space to fill the + or the - character at git_diff_line->origin + status[0] = git_diff_line->origin; + diff_lines.push_back(create_diff_line(git_diff_line->new_lineno, git_diff_line->old_lineno, godot::String(content), status)); delete[] content; } @@ -692,11 +694,13 @@ Array GitAPI::_parse_diff(git_diff *diff) { return diff_contents; } -String GitAPI::_get_vcs_name() { +godot::String GitPlugin::_get_vcs_name() { return "Git"; } -bool GitAPI::_initialize(String project_path) { +bool GitPlugin::_initialize(const godot::String &project_path) { + using namespace godot; + ERR_FAIL_COND_V(project_path == "", false); int init = git_libgit2_init(); @@ -716,13 +720,8 @@ bool GitAPI::_initialize(String project_path) { return true; } -bool GitAPI::_shut_down() { +bool GitPlugin::_shut_down() { repo.reset(); // Destroy repo object before libgit2 shuts down GIT2_CALL_R(git_libgit2_shutdown(), "Could not shutdown Git Plugin", false); return true; } - -void GitAPI::_init() { -} - -} // namespace godot diff --git a/godot-git-plugin/src/git_plugin.h b/godot-git-plugin/src/git_plugin.h new file mode 100644 index 0000000..25627da --- /dev/null +++ b/godot-git-plugin/src/git_plugin.h @@ -0,0 +1,64 @@ +#pragma once + +#include + +#include "git_callbacks.h" +#include "git_wrappers.h" + +#include "godot_cpp/classes/editor_vcs_interface.hpp" +#include "git2.h" + +struct Credentials { + godot::String username; + godot::String password; + godot::String ssh_public_key_path; + godot::String ssh_private_key_path; + godot::String ssh_passphrase; +}; + +class GitPlugin : public godot::EditorVCSInterface { + GDCLASS(GitPlugin, godot::EditorVCSInterface); + +protected: + static void _bind_methods(); + +public: + Credentials creds; + bool has_merge = false; + git_repository_ptr repo; + git_oid pull_merge_oid = {}; + std::unordered_map map_changes; + + GitPlugin(); + + // Endpoints + bool _initialize(const godot::String &project_path) override; + void _set_credentials(const godot::String &username, const godot::String &password, const godot::String &ssh_public_key_path, const godot::String &ssh_private_key_path, const godot::String &ssh_passphrase) override; + godot::Array _get_modified_files_data() override; + void _stage_file(const godot::String &file_path) override; + void _unstage_file(const godot::String &file_path) override; + void _discard_file(const godot::String &file_path) override; + void _commit(const godot::String &msg) override; + godot::Array _get_diff(const godot::String &identifier, int64_t area) override; + bool _shut_down() override; + godot::String _get_vcs_name() override; + godot::Array _get_previous_commits(int64_t max_commits) override; + godot::Array _get_branch_list() override; + godot::Array _get_remotes() override; + void _create_branch(const godot::String &branch_name) override; + void _remove_branch(const godot::String &branch_name) override; + void _create_remote(const godot::String &remote_name, const godot::String &remote_url) override; + void _remove_remote(const godot::String &remote_name) override; + godot::String _get_current_branch_name() override; + bool _checkout_branch(const godot::String &branch_name) override; + void _pull(const godot::String &remote) override; + void _push(const godot::String &remote, bool force) override; + void _fetch(const godot::String &remote) override; + godot::Array _get_line_diff(const godot::String &file_path, const godot::String &text) override; + + // Helpers + godot::Array _parse_diff(git_diff *p_diff); + bool check_errors(int error, godot::String function, godot::String file, int line, godot::String message, const std::vector &ignores = {}); + void create_gitignore_and_gitattributes(); + bool create_initial_commit(); +}; diff --git a/godot-git-plugin/src/git_wrappers.cpp b/godot-git-plugin/src/git_wrappers.cpp new file mode 100644 index 0000000..ebbaa15 --- /dev/null +++ b/godot-git-plugin/src/git_wrappers.cpp @@ -0,0 +1,16 @@ +#include "git_wrappers.h" + +CString::CString(const godot::String &string) { + godot::CharString godot_char_str = string.utf8(); + + data = new char[godot_char_str.length() + 1]; + memcpy(data, (void *)godot_char_str.get_data(), godot_char_str.length()); + data[godot_char_str.length()] = '\0'; +} + +CString::~CString() { + if (data) { + delete[] data; + data = nullptr; + } +} diff --git a/godot-git-plugin/src/git_wrappers.h b/godot-git-plugin/src/git_wrappers.h new file mode 100644 index 0000000..a88611f --- /dev/null +++ b/godot-git-plugin/src/git_wrappers.h @@ -0,0 +1,73 @@ +#pragma once + +#include + +#include "godot_cpp/variant/string.hpp" +#include "git2.h" + +class GitPlugin; + +struct CString { + char *data = nullptr; + + CString(const godot::String &string); + ~CString(); + CString() = delete; + CString(CString &&) = delete; + CString &operator=(const CString &) = delete; + CString &operator=(CString &&) = delete; +}; + +template +class Capture { + T &smart_ptr = nullptr; + + using Raw = decltype(smart_ptr.get()); + + Raw raw = nullptr; + +public: + Capture() = delete; + Capture(T &ptr) : + smart_ptr(ptr) {} + Capture(Capture &&) = delete; + Capture &operator=(const Capture &) = delete; + Capture &operator=(Capture &&) = delete; + + operator Raw *() { + return &raw; + } + + ~Capture() { + if (raw) { + smart_ptr.reset(raw); + } + } +}; + +template +struct FunctionDeleter { + template + void operator()(T *ptr) { + DeleteFn(ptr); + } +}; + +template +using unique_ptr_deleter = std::unique_ptr>; + +using git_annotated_commit_ptr = unique_ptr_deleter; +using git_blob_ptr = unique_ptr_deleter; +using git_branch_iterator_ptr = unique_ptr_deleter; +using git_commit_ptr = unique_ptr_deleter; +using git_diff_ptr = unique_ptr_deleter; +using git_index_ptr = unique_ptr_deleter; +using git_object_ptr = unique_ptr_deleter; +using git_patch_ptr = unique_ptr_deleter; +using git_reference_ptr = unique_ptr_deleter; +using git_remote_ptr = unique_ptr_deleter; +using git_repository_ptr = unique_ptr_deleter; +using git_revwalk_ptr = unique_ptr_deleter; +using git_signature_ptr = unique_ptr_deleter; +using git_status_list_ptr = unique_ptr_deleter; +using git_tree_ptr = unique_ptr_deleter; From 521341e7bf75a2380191920f1bbf3aebc1fc1bd9 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sun, 31 Jul 2022 21:27:47 +0530 Subject: [PATCH 02/15] Port demo files to Godot 4.0 --- .github/workflows/build.yml | 6 +- .gitignore | 5 +- README.md | 26 +- SConstruct | 5 +- api.ci.json | 212598 ------------ demo/.gitignore | 13 +- demo/addons/godot-git-plugin/git_api.gdnlib | 18 - demo/addons/godot-git-plugin/git_api.gdns | 9 - .../godot-git-plugin/git_plugin.gdextension | 16 + demo/addons/godot-git-plugin/plugin.cfg | 2 +- demo/default_env.tres | 7 - demo/demo.tscn | 4 +- demo/icon.png | Bin 3226 -> 0 bytes demo/icon.png.import | 35 - demo/new_script.gd | 12 +- demo/project.godot | 22 +- extension_api.ci.json | 255141 +++++++++++++++ godot-git-plugin/SCsub | 23 +- godot-git-plugin/src/git_callbacks.cpp | 10 +- godot-git-plugin/src/git_plugin.cpp | 37 +- release.sh | 0 thirdparty/SCsub | 2 + 22 files changed, 255220 insertions(+), 212771 deletions(-) delete mode 100644 api.ci.json delete mode 100644 demo/addons/godot-git-plugin/git_api.gdnlib delete mode 100644 demo/addons/godot-git-plugin/git_api.gdns create mode 100644 demo/addons/godot-git-plugin/git_plugin.gdextension delete mode 100644 demo/default_env.tres delete mode 100644 demo/icon.png delete mode 100644 demo/icon.png.import create mode 100644 extension_api.ci.json mode change 100755 => 100644 release.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a2566d..3c5a4e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: ldd demo/addons/godot-git-plugin/linux/libgit_plugin.so - uses: actions/upload-artifact@v2 with: - name: godot-git-plugin-linux-release-x64-${{ github.sha }} + name: libgit_plugin.linux.x86_64.release.dll-${{ github.sha }} if-no-files-found: error path: | demo/ @@ -37,7 +37,7 @@ jobs: dumpbin /dependents .\demo\addons\godot-git-plugin\win64\libgit_plugin.dll - uses: actions/upload-artifact@v2 with: - name: godot-git-plugin-windows-release-x64-${{ github.sha }} + name: libgit_plugin.windows.x86_64.release.dll-${{ github.sha }} if-no-files-found: error path: | demo/ @@ -54,7 +54,7 @@ jobs: otool -L demo/addons/godot-git-plugin/osx/libgit_plugin.dylib - uses: actions/upload-artifact@v2 with: - name: godot-git-plugin-macos-release-x64-${{ github.sha }} + name: libgit_plugin.osx.x86_64.release.dylib-${{ github.sha }} if-no-files-found: error path: | demo/ diff --git a/.gitignore b/.gitignore index 5e1c130..b93d1a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,11 @@ # SConstruct db *.dblite +# Godot ignores +demo/.godot/ + # Godot Serialisations -api.json +extension_api.json # Visual Studio Cache .vs/ diff --git a/README.md b/README.md index 08e0672..ad97a9f 100644 --- a/README.md +++ b/README.md @@ -26,29 +26,37 @@ This section onwards is only meant to be used if you intend to compile the plugi - Windows - No extra steps required other than setting up the compilers. - MacOS - - For making universal builds targeting both Apple Silicon and x86_64, you can optionally run `build_openssl_universal_osx.sh` to build OpenSSL yourself and replace the already prebuilt libraries provided inside `thirdparty/openssl/`, otherwise, just run `brew install openssl@1.1`. + - For making universal builds targeting both Apple Silicon and x86_64, you can optionally run `build_openssl_universal_osx.sh` to build OpenSSL yourself and replace the already prebuilt libraries provided inside `thirdparty/openssl/`, otherwise, just run `brew install openssl@1.1` to use the prebuilt libraries provided in this repository. - Linux - - Run `sudo apt-get install libssl-dev`, or local package manager equivalent. + - Run `sudo apt-get install libssl-dev`, or your local package manager's equivalent. -### Build +### Release Build ``` -scons platform= target=release bits=64 -j 6 +scons platform= target=release -j 6 ``` For more build options, run `scons platform= -h` -## Bleeding Edge +## Dev builds -Most of the times when new features are being worked on for the Godot VCS Integration, it requires developers to make changes in the Godot Editor source code along with this plugin. This means we need to manually generate the GDNative API from the custom Godot builds and then use it to compile godot-cpp. +When new features are being worked on for the Godot VCS Integration, the build process sometimes requires developers to make changes in the GDExtension API along with this plugin. This means we need to manually generate the GDExtension API from the custom Godot builds and then use it to compile godot-cpp. -To build using custom GDNative API definition JSON files, run the below helper command: +If you need to use a custom GDExtension API: ``` -scons platform= target=debug godot_cpp=yes generate_bindings=yes bits=64 use_custom_api_file=yes custom_api_file=path/to/api.json -j 6 +scons platform= target=debug godot_cpp=yes generate_bindings=yes bits=64 use_custom_api_file=yes custom_api_file=path/to/extension_api.json -j 6 ``` -Once this command is completed successfully, the standard build commands in the above section can be run without recompiling godot-cpp. Once compiled, to stop godot-cpp from recompiling, do not use the `godot_cpp` option in SCons arguments. To view more options available while recompiling godot-cpp, run `scons platform= godot_cpp=yes -h`. +You only need to build godot-cpp once every change in the GDExtension API, hence, this command should only be run the first time after generating a new JSON API file. + +To reuse the once-built godot-cpp library: + +``` +scons platform= target=debug -j 6 +``` + +To view more options available while recompiling godot-cpp, run `scons platform= godot_cpp=yes -h`. --- diff --git a/SConstruct b/SConstruct index f70cb10..c0da884 100644 --- a/SConstruct +++ b/SConstruct @@ -37,6 +37,9 @@ opts.Add(PathVariable("macos_openssl_static_crypto", "Path to OpenSSL libcrypto. # Updates the environment with the option variables. opts.Update(env) +if env["p"] != "": + env["platform"] = env["p"] + if env["platform"] == "osx": # Use only clang on osx because we need to do universal builds env["CXX"] = "clang++" @@ -54,7 +57,7 @@ Export("env") SConscript("thirdparty/SCsub") if env["godot_cpp"]: - if ARGUMENTS.get("use_custom_api_file", False) and ARGUMENTS.get("custom_api_file", "") != "": + if ARGUMENTS.get("custom_api_file", "") != "": ARGUMENTS["custom_api_file"] = "../" + ARGUMENTS["custom_api_file"] SConscript("godot-cpp/SConstruct") diff --git a/api.ci.json b/api.ci.json deleted file mode 100644 index 39c8d6d..0000000 --- a/api.ci.json +++ /dev/null @@ -1,212598 +0,0 @@ -[ - { - "name": "GlobalConstants", - "base_class": "", - "api_type": "core", - "singleton": true, - "singleton_name": "GlobalConstants", - "instanciable": false, - "is_reference": true, - "constants": { - "BUTTON_LEFT": 1, - "BUTTON_MASK_LEFT": 1, - "BUTTON_MASK_MIDDLE": 4, - "BUTTON_MASK_RIGHT": 2, - "BUTTON_MASK_XBUTTON1": 128, - "BUTTON_MASK_XBUTTON2": 256, - "BUTTON_MIDDLE": 3, - "BUTTON_RIGHT": 2, - "BUTTON_WHEEL_DOWN": 5, - "BUTTON_WHEEL_LEFT": 6, - "BUTTON_WHEEL_RIGHT": 7, - "BUTTON_WHEEL_UP": 4, - "BUTTON_XBUTTON1": 8, - "BUTTON_XBUTTON2": 9, - "CORNER_BOTTOM_LEFT": 3, - "CORNER_BOTTOM_RIGHT": 2, - "CORNER_TOP_LEFT": 0, - "CORNER_TOP_RIGHT": 1, - "ERR_ALREADY_EXISTS": 32, - "ERR_ALREADY_IN_USE": 22, - "ERR_BUG": 47, - "ERR_BUSY": 44, - "ERR_CANT_ACQUIRE_RESOURCE": 28, - "ERR_CANT_CONNECT": 25, - "ERR_CANT_CREATE": 20, - "ERR_CANT_FORK": 29, - "ERR_CANT_OPEN": 19, - "ERR_CANT_RESOLVE": 26, - "ERR_COMPILATION_FAILED": 36, - "ERR_CONNECTION_ERROR": 27, - "ERR_CYCLIC_LINK": 40, - "ERR_DATABASE_CANT_READ": 34, - "ERR_DATABASE_CANT_WRITE": 35, - "ERR_DOES_NOT_EXIST": 33, - "ERR_DUPLICATE_SYMBOL": 42, - "ERR_FILE_ALREADY_IN_USE": 11, - "ERR_FILE_BAD_DRIVE": 8, - "ERR_FILE_BAD_PATH": 9, - "ERR_FILE_CANT_OPEN": 12, - "ERR_FILE_CANT_READ": 14, - "ERR_FILE_CANT_WRITE": 13, - "ERR_FILE_CORRUPT": 16, - "ERR_FILE_EOF": 18, - "ERR_FILE_MISSING_DEPENDENCIES": 17, - "ERR_FILE_NOT_FOUND": 7, - "ERR_FILE_NO_PERMISSION": 10, - "ERR_FILE_UNRECOGNIZED": 15, - "ERR_HELP": 46, - "ERR_INVALID_DATA": 30, - "ERR_INVALID_DECLARATION": 41, - "ERR_INVALID_PARAMETER": 31, - "ERR_LINK_FAILED": 38, - "ERR_LOCKED": 23, - "ERR_METHOD_NOT_FOUND": 37, - "ERR_OUT_OF_MEMORY": 6, - "ERR_PARAMETER_RANGE_ERROR": 5, - "ERR_PARSE_ERROR": 43, - "ERR_PRINTER_ON_FIRE": 48, - "ERR_QUERY_FAILED": 21, - "ERR_SCRIPT_FAILED": 39, - "ERR_SKIP": 45, - "ERR_TIMEOUT": 24, - "ERR_UNAUTHORIZED": 4, - "ERR_UNAVAILABLE": 2, - "ERR_UNCONFIGURED": 3, - "FAILED": 1, - "HALIGN_CENTER": 1, - "HALIGN_LEFT": 0, - "HALIGN_RIGHT": 2, - "HORIZONTAL": 0, - "JOY_ANALOG_L2": 6, - "JOY_ANALOG_LX": 0, - "JOY_ANALOG_LY": 1, - "JOY_ANALOG_R2": 7, - "JOY_ANALOG_RX": 2, - "JOY_ANALOG_RY": 3, - "JOY_AXIS_0": 0, - "JOY_AXIS_1": 1, - "JOY_AXIS_2": 2, - "JOY_AXIS_3": 3, - "JOY_AXIS_4": 4, - "JOY_AXIS_5": 5, - "JOY_AXIS_6": 6, - "JOY_AXIS_7": 7, - "JOY_AXIS_8": 8, - "JOY_AXIS_9": 9, - "JOY_AXIS_MAX": 10, - "JOY_BUTTON_0": 0, - "JOY_BUTTON_1": 1, - "JOY_BUTTON_10": 10, - "JOY_BUTTON_11": 11, - "JOY_BUTTON_12": 12, - "JOY_BUTTON_13": 13, - "JOY_BUTTON_14": 14, - "JOY_BUTTON_15": 15, - "JOY_BUTTON_16": 16, - "JOY_BUTTON_17": 17, - "JOY_BUTTON_18": 18, - "JOY_BUTTON_19": 19, - "JOY_BUTTON_2": 2, - "JOY_BUTTON_20": 20, - "JOY_BUTTON_21": 21, - "JOY_BUTTON_22": 22, - "JOY_BUTTON_3": 3, - "JOY_BUTTON_4": 4, - "JOY_BUTTON_5": 5, - "JOY_BUTTON_6": 6, - "JOY_BUTTON_7": 7, - "JOY_BUTTON_8": 8, - "JOY_BUTTON_9": 9, - "JOY_BUTTON_MAX": 128, - "JOY_DPAD_DOWN": 13, - "JOY_DPAD_LEFT": 14, - "JOY_DPAD_RIGHT": 15, - "JOY_DPAD_UP": 12, - "JOY_DS_A": 1, - "JOY_DS_B": 0, - "JOY_DS_X": 3, - "JOY_DS_Y": 2, - "JOY_GUIDE": 16, - "JOY_INVALID_OPTION": -1, - "JOY_L": 4, - "JOY_L2": 6, - "JOY_L3": 8, - "JOY_MISC1": 17, - "JOY_OCULUS_AX": 7, - "JOY_OCULUS_BY": 1, - "JOY_OCULUS_MENU": 3, - "JOY_OPENVR_MENU": 1, - "JOY_OPENVR_TOUCHPADX": 0, - "JOY_OPENVR_TOUCHPADY": 1, - "JOY_PADDLE1": 18, - "JOY_PADDLE2": 19, - "JOY_PADDLE3": 20, - "JOY_PADDLE4": 21, - "JOY_R": 5, - "JOY_R2": 7, - "JOY_R3": 9, - "JOY_SELECT": 10, - "JOY_SONY_CIRCLE": 1, - "JOY_SONY_SQUARE": 2, - "JOY_SONY_TRIANGLE": 3, - "JOY_SONY_X": 0, - "JOY_START": 11, - "JOY_TOUCHPAD": 22, - "JOY_VR_ANALOG_GRIP": 4, - "JOY_VR_ANALOG_TRIGGER": 2, - "JOY_VR_GRIP": 2, - "JOY_VR_PAD": 14, - "JOY_VR_TRIGGER": 15, - "JOY_XBOX_A": 0, - "JOY_XBOX_B": 1, - "JOY_XBOX_X": 2, - "JOY_XBOX_Y": 3, - "KEY_0": 48, - "KEY_1": 49, - "KEY_2": 50, - "KEY_3": 51, - "KEY_4": 52, - "KEY_5": 53, - "KEY_6": 54, - "KEY_7": 55, - "KEY_8": 56, - "KEY_9": 57, - "KEY_A": 65, - "KEY_AACUTE": 193, - "KEY_ACIRCUMFLEX": 194, - "KEY_ACUTE": 180, - "KEY_ADIAERESIS": 196, - "KEY_AE": 198, - "KEY_AGRAVE": 192, - "KEY_ALT": 16777240, - "KEY_AMPERSAND": 38, - "KEY_APOSTROPHE": 39, - "KEY_ARING": 197, - "KEY_ASCIICIRCUM": 94, - "KEY_ASCIITILDE": 126, - "KEY_ASTERISK": 42, - "KEY_AT": 64, - "KEY_ATILDE": 195, - "KEY_B": 66, - "KEY_BACK": 16777280, - "KEY_BACKSLASH": 92, - "KEY_BACKSPACE": 16777220, - "KEY_BACKTAB": 16777219, - "KEY_BAR": 124, - "KEY_BASSBOOST": 16777287, - "KEY_BASSDOWN": 16777289, - "KEY_BASSUP": 16777288, - "KEY_BRACELEFT": 123, - "KEY_BRACERIGHT": 125, - "KEY_BRACKETLEFT": 91, - "KEY_BRACKETRIGHT": 93, - "KEY_BROKENBAR": 166, - "KEY_C": 67, - "KEY_CAPSLOCK": 16777241, - "KEY_CCEDILLA": 199, - "KEY_CEDILLA": 184, - "KEY_CENT": 162, - "KEY_CLEAR": 16777228, - "KEY_CODE_MASK": 33554431, - "KEY_COLON": 58, - "KEY_COMMA": 44, - "KEY_CONTROL": 16777238, - "KEY_COPYRIGHT": 169, - "KEY_CURRENCY": 164, - "KEY_D": 68, - "KEY_DEGREE": 176, - "KEY_DELETE": 16777224, - "KEY_DIAERESIS": 168, - "KEY_DIRECTION_L": 16777266, - "KEY_DIRECTION_R": 16777267, - "KEY_DIVISION": 247, - "KEY_DOLLAR": 36, - "KEY_DOWN": 16777234, - "KEY_E": 69, - "KEY_EACUTE": 201, - "KEY_ECIRCUMFLEX": 202, - "KEY_EDIAERESIS": 203, - "KEY_EGRAVE": 200, - "KEY_END": 16777230, - "KEY_ENTER": 16777221, - "KEY_EQUAL": 61, - "KEY_ESCAPE": 16777217, - "KEY_ETH": 208, - "KEY_EXCLAM": 33, - "KEY_EXCLAMDOWN": 161, - "KEY_F": 70, - "KEY_F1": 16777244, - "KEY_F10": 16777253, - "KEY_F11": 16777254, - "KEY_F12": 16777255, - "KEY_F13": 16777256, - "KEY_F14": 16777257, - "KEY_F15": 16777258, - "KEY_F16": 16777259, - "KEY_F2": 16777245, - "KEY_F3": 16777246, - "KEY_F4": 16777247, - "KEY_F5": 16777248, - "KEY_F6": 16777249, - "KEY_F7": 16777250, - "KEY_F8": 16777251, - "KEY_F9": 16777252, - "KEY_FAVORITES": 16777298, - "KEY_FORWARD": 16777281, - "KEY_G": 71, - "KEY_GREATER": 62, - "KEY_GUILLEMOTLEFT": 171, - "KEY_GUILLEMOTRIGHT": 187, - "KEY_H": 72, - "KEY_HELP": 16777265, - "KEY_HOME": 16777229, - "KEY_HOMEPAGE": 16777297, - "KEY_HYPER_L": 16777263, - "KEY_HYPER_R": 16777264, - "KEY_HYPHEN": 173, - "KEY_I": 73, - "KEY_IACUTE": 205, - "KEY_ICIRCUMFLEX": 206, - "KEY_IDIAERESIS": 207, - "KEY_IGRAVE": 204, - "KEY_INSERT": 16777223, - "KEY_J": 74, - "KEY_K": 75, - "KEY_KP_0": 16777350, - "KEY_KP_1": 16777351, - "KEY_KP_2": 16777352, - "KEY_KP_3": 16777353, - "KEY_KP_4": 16777354, - "KEY_KP_5": 16777355, - "KEY_KP_6": 16777356, - "KEY_KP_7": 16777357, - "KEY_KP_8": 16777358, - "KEY_KP_9": 16777359, - "KEY_KP_ADD": 16777349, - "KEY_KP_DIVIDE": 16777346, - "KEY_KP_ENTER": 16777222, - "KEY_KP_MULTIPLY": 16777345, - "KEY_KP_PERIOD": 16777348, - "KEY_KP_SUBTRACT": 16777347, - "KEY_L": 76, - "KEY_LAUNCH0": 16777304, - "KEY_LAUNCH1": 16777305, - "KEY_LAUNCH2": 16777306, - "KEY_LAUNCH3": 16777307, - "KEY_LAUNCH4": 16777308, - "KEY_LAUNCH5": 16777309, - "KEY_LAUNCH6": 16777310, - "KEY_LAUNCH7": 16777311, - "KEY_LAUNCH8": 16777312, - "KEY_LAUNCH9": 16777313, - "KEY_LAUNCHA": 16777314, - "KEY_LAUNCHB": 16777315, - "KEY_LAUNCHC": 16777316, - "KEY_LAUNCHD": 16777317, - "KEY_LAUNCHE": 16777318, - "KEY_LAUNCHF": 16777319, - "KEY_LAUNCHMAIL": 16777302, - "KEY_LAUNCHMEDIA": 16777303, - "KEY_LEFT": 16777231, - "KEY_LESS": 60, - "KEY_M": 77, - "KEY_MACRON": 175, - "KEY_MASCULINE": 186, - "KEY_MASK_ALT": 67108864, - "KEY_MASK_CMD": 268435456, - "KEY_MASK_CTRL": 268435456, - "KEY_MASK_GROUP_SWITCH": 1073741824, - "KEY_MASK_KPAD": 536870912, - "KEY_MASK_META": 134217728, - "KEY_MASK_SHIFT": 33554432, - "KEY_MEDIANEXT": 16777295, - "KEY_MEDIAPLAY": 16777292, - "KEY_MEDIAPREVIOUS": 16777294, - "KEY_MEDIARECORD": 16777296, - "KEY_MEDIASTOP": 16777293, - "KEY_MENU": 16777262, - "KEY_META": 16777239, - "KEY_MINUS": 45, - "KEY_MODIFIER_MASK": -16777216, - "KEY_MU": 181, - "KEY_MULTIPLY": 215, - "KEY_N": 78, - "KEY_NOBREAKSPACE": 160, - "KEY_NOTSIGN": 172, - "KEY_NTILDE": 209, - "KEY_NUMBERSIGN": 35, - "KEY_NUMLOCK": 16777242, - "KEY_O": 79, - "KEY_OACUTE": 211, - "KEY_OCIRCUMFLEX": 212, - "KEY_ODIAERESIS": 214, - "KEY_OGRAVE": 210, - "KEY_ONEHALF": 189, - "KEY_ONEQUARTER": 188, - "KEY_ONESUPERIOR": 185, - "KEY_OOBLIQUE": 216, - "KEY_OPENURL": 16777301, - "KEY_ORDFEMININE": 170, - "KEY_OTILDE": 213, - "KEY_P": 80, - "KEY_PAGEDOWN": 16777236, - "KEY_PAGEUP": 16777235, - "KEY_PARAGRAPH": 182, - "KEY_PARENLEFT": 40, - "KEY_PARENRIGHT": 41, - "KEY_PAUSE": 16777225, - "KEY_PERCENT": 37, - "KEY_PERIOD": 46, - "KEY_PERIODCENTERED": 183, - "KEY_PLUS": 43, - "KEY_PLUSMINUS": 177, - "KEY_PRINT": 16777226, - "KEY_Q": 81, - "KEY_QUESTION": 63, - "KEY_QUESTIONDOWN": 191, - "KEY_QUOTEDBL": 34, - "KEY_QUOTELEFT": 96, - "KEY_R": 82, - "KEY_REFRESH": 16777283, - "KEY_REGISTERED": 174, - "KEY_RIGHT": 16777233, - "KEY_S": 83, - "KEY_SCROLLLOCK": 16777243, - "KEY_SEARCH": 16777299, - "KEY_SECTION": 167, - "KEY_SEMICOLON": 59, - "KEY_SHIFT": 16777237, - "KEY_SLASH": 47, - "KEY_SPACE": 32, - "KEY_SSHARP": 223, - "KEY_STANDBY": 16777300, - "KEY_STERLING": 163, - "KEY_STOP": 16777282, - "KEY_SUPER_L": 16777260, - "KEY_SUPER_R": 16777261, - "KEY_SYSREQ": 16777227, - "KEY_T": 84, - "KEY_TAB": 16777218, - "KEY_THORN": 222, - "KEY_THREEQUARTERS": 190, - "KEY_THREESUPERIOR": 179, - "KEY_TREBLEDOWN": 16777291, - "KEY_TREBLEUP": 16777290, - "KEY_TWOSUPERIOR": 178, - "KEY_U": 85, - "KEY_UACUTE": 218, - "KEY_UCIRCUMFLEX": 219, - "KEY_UDIAERESIS": 220, - "KEY_UGRAVE": 217, - "KEY_UNDERSCORE": 95, - "KEY_UNKNOWN": 33554431, - "KEY_UP": 16777232, - "KEY_V": 86, - "KEY_VOLUMEDOWN": 16777284, - "KEY_VOLUMEMUTE": 16777285, - "KEY_VOLUMEUP": 16777286, - "KEY_W": 87, - "KEY_X": 88, - "KEY_Y": 89, - "KEY_YACUTE": 221, - "KEY_YDIAERESIS": 255, - "KEY_YEN": 165, - "KEY_Z": 90, - "MARGIN_BOTTOM": 3, - "MARGIN_LEFT": 0, - "MARGIN_RIGHT": 2, - "MARGIN_TOP": 1, - "METHOD_FLAGS_DEFAULT": 1, - "METHOD_FLAG_CONST": 8, - "METHOD_FLAG_EDITOR": 2, - "METHOD_FLAG_FROM_SCRIPT": 64, - "METHOD_FLAG_NORMAL": 1, - "METHOD_FLAG_NOSCRIPT": 4, - "METHOD_FLAG_REVERSE": 16, - "METHOD_FLAG_VIRTUAL": 32, - "MIDI_MESSAGE_ACTIVE_SENSING": 254, - "MIDI_MESSAGE_AFTERTOUCH": 10, - "MIDI_MESSAGE_CHANNEL_PRESSURE": 13, - "MIDI_MESSAGE_CONTINUE": 251, - "MIDI_MESSAGE_CONTROL_CHANGE": 11, - "MIDI_MESSAGE_NOTE_OFF": 8, - "MIDI_MESSAGE_NOTE_ON": 9, - "MIDI_MESSAGE_PITCH_BEND": 14, - "MIDI_MESSAGE_PROGRAM_CHANGE": 12, - "MIDI_MESSAGE_QUARTER_FRAME": 241, - "MIDI_MESSAGE_SONG_POSITION_POINTER": 242, - "MIDI_MESSAGE_SONG_SELECT": 243, - "MIDI_MESSAGE_START": 250, - "MIDI_MESSAGE_STOP": 252, - "MIDI_MESSAGE_SYSTEM_EXCLUSIVE": 240, - "MIDI_MESSAGE_SYSTEM_RESET": 255, - "MIDI_MESSAGE_TIMING_CLOCK": 248, - "MIDI_MESSAGE_TUNE_REQUEST": 246, - "OK": 0, - "OP_ADD": 6, - "OP_AND": 20, - "OP_BIT_AND": 16, - "OP_BIT_NEGATE": 19, - "OP_BIT_OR": 17, - "OP_BIT_XOR": 18, - "OP_DIVIDE": 9, - "OP_EQUAL": 0, - "OP_GREATER": 4, - "OP_GREATER_EQUAL": 5, - "OP_IN": 24, - "OP_LESS": 2, - "OP_LESS_EQUAL": 3, - "OP_MAX": 25, - "OP_MODULE": 12, - "OP_MULTIPLY": 8, - "OP_NEGATE": 10, - "OP_NOT": 23, - "OP_NOT_EQUAL": 1, - "OP_OR": 21, - "OP_POSITIVE": 11, - "OP_SHIFT_LEFT": 14, - "OP_SHIFT_RIGHT": 15, - "OP_STRING_CONCAT": 13, - "OP_SUBTRACT": 7, - "OP_XOR": 22, - "PROPERTY_HINT_COLOR_NO_ALPHA": 20, - "PROPERTY_HINT_DIR": 14, - "PROPERTY_HINT_ENUM": 3, - "PROPERTY_HINT_EXP_EASING": 4, - "PROPERTY_HINT_EXP_RANGE": 2, - "PROPERTY_HINT_FILE": 13, - "PROPERTY_HINT_FLAGS": 8, - "PROPERTY_HINT_GLOBAL_DIR": 16, - "PROPERTY_HINT_GLOBAL_FILE": 15, - "PROPERTY_HINT_IMAGE_COMPRESS_LOSSLESS": 22, - "PROPERTY_HINT_IMAGE_COMPRESS_LOSSY": 21, - "PROPERTY_HINT_KEY_ACCEL": 7, - "PROPERTY_HINT_LAYERS_2D_PHYSICS": 10, - "PROPERTY_HINT_LAYERS_2D_RENDER": 9, - "PROPERTY_HINT_LAYERS_3D_PHYSICS": 12, - "PROPERTY_HINT_LAYERS_3D_RENDER": 11, - "PROPERTY_HINT_LENGTH": 5, - "PROPERTY_HINT_MULTILINE_TEXT": 18, - "PROPERTY_HINT_NONE": 0, - "PROPERTY_HINT_PLACEHOLDER_TEXT": 19, - "PROPERTY_HINT_RANGE": 1, - "PROPERTY_HINT_RESOURCE_TYPE": 17, - "PROPERTY_USAGE_CATEGORY": 256, - "PROPERTY_USAGE_CHECKABLE": 16, - "PROPERTY_USAGE_CHECKED": 32, - "PROPERTY_USAGE_DEFAULT": 7, - "PROPERTY_USAGE_DEFAULT_INTL": 71, - "PROPERTY_USAGE_EDITOR": 2, - "PROPERTY_USAGE_EDITOR_HELPER": 8, - "PROPERTY_USAGE_GROUP": 128, - "PROPERTY_USAGE_INTERNATIONALIZED": 64, - "PROPERTY_USAGE_NETWORK": 4, - "PROPERTY_USAGE_NOEDITOR": 5, - "PROPERTY_USAGE_NO_INSTANCE_STATE": 2048, - "PROPERTY_USAGE_RESTART_IF_CHANGED": 4096, - "PROPERTY_USAGE_SCRIPT_VARIABLE": 8192, - "PROPERTY_USAGE_STORAGE": 1, - "SPKEY": 16777216, - "TYPE_AABB": 11, - "TYPE_ARRAY": 19, - "TYPE_BASIS": 12, - "TYPE_BOOL": 1, - "TYPE_COLOR": 14, - "TYPE_COLOR_ARRAY": 26, - "TYPE_DICTIONARY": 18, - "TYPE_INT": 2, - "TYPE_INT_ARRAY": 21, - "TYPE_MAX": 27, - "TYPE_NIL": 0, - "TYPE_NODE_PATH": 15, - "TYPE_OBJECT": 17, - "TYPE_PLANE": 9, - "TYPE_QUAT": 10, - "TYPE_RAW_ARRAY": 20, - "TYPE_REAL": 3, - "TYPE_REAL_ARRAY": 22, - "TYPE_RECT2": 6, - "TYPE_RID": 16, - "TYPE_STRING": 4, - "TYPE_STRING_ARRAY": 23, - "TYPE_TRANSFORM": 13, - "TYPE_TRANSFORM2D": 8, - "TYPE_VECTOR2": 5, - "TYPE_VECTOR2_ARRAY": 24, - "TYPE_VECTOR3": 7, - "TYPE_VECTOR3_ARRAY": 25, - "VALIGN_BOTTOM": 2, - "VALIGN_CENTER": 1, - "VALIGN_TOP": 0, - "VERTICAL": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AESContext", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MODE_CBC_DECRYPT": 3, - "MODE_CBC_ENCRYPT": 2, - "MODE_ECB_DECRYPT": 1, - "MODE_ECB_ENCRYPT": 0, - "MODE_MAX": 4 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "finish", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_iv_state", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "start", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "iv", - "type": "PoolByteArray", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "update", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_ECB_ENCRYPT": 0, - "MODE_ECB_DECRYPT": 1, - "MODE_CBC_ENCRYPT": 2, - "MODE_CBC_DECRYPT": 3, - "MODE_MAX": 4 - } - } - ] - }, - { - "name": "ARVRAnchor", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "anchor_id", - "type": "int", - "getter": "get_anchor_id", - "setter": "set_anchor_id", - "index": -1 - } - ], - "signals": [ - { - "name": "mesh_updated", - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_anchor_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_anchor_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_plane", - "return_type": "Plane", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_anchor_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anchor_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ARVRCamera", - "base_class": "Camera", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "ARVRController", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "controller_id", - "type": "int", - "getter": "get_controller_id", - "setter": "set_controller_id", - "index": -1 - }, - { - "name": "rumble", - "type": "float", - "getter": "get_rumble", - "setter": "set_rumble", - "index": -1 - } - ], - "signals": [ - { - "name": "button_pressed", - "arguments": [ - { - "name": "button", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "button_release", - "arguments": [ - { - "name": "button", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_updated", - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_controller_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_controller_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hand", - "return_type": "enum.ARVRPositionalTracker::TrackerHand", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joystick_axis", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joystick_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rumble", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_button_pressed", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_controller_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rumble", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rumble", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ARVRInterface", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "ARVR_AR": 4, - "ARVR_EXCESSIVE_MOTION": 1, - "ARVR_EXTERNAL": 8, - "ARVR_INSUFFICIENT_FEATURES": 2, - "ARVR_MONO": 1, - "ARVR_NONE": 0, - "ARVR_NORMAL_TRACKING": 0, - "ARVR_NOT_TRACKING": 4, - "ARVR_STEREO": 2, - "ARVR_UNKNOWN_TRACKING": 3, - "EYE_LEFT": 1, - "EYE_MONO": 0, - "EYE_RIGHT": 2 - }, - "properties": [ - { - "name": "ar_is_anchor_detection_enabled", - "type": "bool", - "getter": "get_anchor_detection_is_enabled", - "setter": "set_anchor_detection_is_enabled", - "index": -1 - }, - { - "name": "interface_is_initialized", - "type": "bool", - "getter": "is_initialized", - "setter": "set_is_initialized", - "index": -1 - }, - { - "name": "interface_is_primary", - "type": "bool", - "getter": "is_primary", - "setter": "set_is_primary", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_anchor_detection_is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera_feed_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_capabilities", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_render_targetsize", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tracking_status", - "return_type": "enum.ARVRInterface::Tracking_status", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "initialize", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_initialized", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_primary", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_stereo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_anchor_detection_is_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_is_initialized", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "initialized", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_is_primary", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "uninitialize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "Tracking_status", - "values": { - "ARVR_NORMAL_TRACKING": 0, - "ARVR_EXCESSIVE_MOTION": 1, - "ARVR_INSUFFICIENT_FEATURES": 2, - "ARVR_UNKNOWN_TRACKING": 3, - "ARVR_NOT_TRACKING": 4 - } - }, - { - "name": "Eyes", - "values": { - "EYE_MONO": 0, - "EYE_LEFT": 1, - "EYE_RIGHT": 2 - } - }, - { - "name": "Capabilities", - "values": { - "ARVR_NONE": 0, - "ARVR_MONO": 1, - "ARVR_STEREO": 2, - "ARVR_AR": 4, - "ARVR_EXTERNAL": 8 - } - } - ] - }, - { - "name": "ARVRInterfaceGDNative", - "base_class": "ARVRInterface", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "ARVROrigin", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "world_scale", - "type": "float", - "getter": "get_world_scale", - "setter": "set_world_scale", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_world_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_world_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "world_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ARVRPositionalTracker", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "TRACKER_HAND_UNKNOWN": 0, - "TRACKER_LEFT_HAND": 1, - "TRACKER_RIGHT_HAND": 2 - }, - "properties": [ - { - "name": "rumble", - "type": "float", - "getter": "get_rumble", - "setter": "set_rumble", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_set_joy_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joy_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_orientation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "orientation", - "type": "Basis", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_rw_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rw_position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_hand", - "return_type": "enum.ARVRPositionalTracker::TrackerHand", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joy_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_orientation", - "return_type": "Basis", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rumble", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tracker_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tracks_orientation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tracks_position", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "adjust_by_reference_frame", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_type", - "return_type": "enum.ARVRServer::TrackerType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_rumble", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rumble", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TrackerHand", - "values": { - "TRACKER_HAND_UNKNOWN": 0, - "TRACKER_LEFT_HAND": 1, - "TRACKER_RIGHT_HAND": 2 - } - } - ] - }, - { - "name": "ARVRServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "ARVRServer", - "instanciable": false, - "is_reference": false, - "constants": { - "DONT_RESET_ROTATION": 2, - "RESET_BUT_KEEP_TILT": 1, - "RESET_FULL_ROTATION": 0, - "TRACKER_ANCHOR": 4, - "TRACKER_ANY": 255, - "TRACKER_ANY_KNOWN": 127, - "TRACKER_BASESTATION": 2, - "TRACKER_CONTROLLER": 1, - "TRACKER_UNKNOWN": 128 - }, - "properties": [ - { - "name": "primary_interface", - "type": "Object", - "getter": "get_primary_interface", - "setter": "set_primary_interface", - "index": -1 - }, - { - "name": "world_scale", - "type": "float", - "getter": "get_world_scale", - "setter": "set_world_scale", - "index": -1 - } - ], - "signals": [ - { - "name": "interface_added", - "arguments": [ - { - "name": "interface_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interface_removed", - "arguments": [ - { - "name": "interface_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tracker_added", - "arguments": [ - { - "name": "tracker_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tracker_removed", - "arguments": [ - { - "name": "tracker_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "add_interface", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interface", - "type": "ARVRInterface", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_tracker", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tracker", - "type": "ARVRPositionalTracker", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "center_on_hmd", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rotation_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_height", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_primary_interface_if", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interface", - "type": "ARVRInterface", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_interface", - "return_type": "ARVRInterface", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_hmd_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_interface", - "return_type": "ARVRInterface", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_interface_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_interfaces", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_last_commit_usec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_last_frame_usec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_last_process_usec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_primary_interface", - "return_type": "ARVRInterface", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_reference_frame", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tracker", - "return_type": "ARVRPositionalTracker", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tracker_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_world_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_interface", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interface", - "type": "ARVRInterface", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_tracker", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tracker", - "type": "ARVRPositionalTracker", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_primary_interface", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interface", - "type": "ARVRInterface", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_world_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "RotationMode", - "values": { - "RESET_FULL_ROTATION": 0, - "RESET_BUT_KEEP_TILT": 1, - "DONT_RESET_ROTATION": 2 - } - }, - { - "name": "TrackerType", - "values": { - "TRACKER_CONTROLLER": 1, - "TRACKER_BASESTATION": 2, - "TRACKER_ANCHOR": 4, - "TRACKER_ANY_KNOWN": 127, - "TRACKER_UNKNOWN": 128, - "TRACKER_ANY": 255 - } - } - ] - }, - { - "name": "AStar", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_compute_cost", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_estimate_cost", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weight_scale", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "are_points_connected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bidirectional", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bidirectional", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "disconnect_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bidirectional", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_available_point_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_point", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "include_disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_closest_position_in_segment", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_id_path", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_capacity", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_connections", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_path", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_weight_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_points", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_point", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_point_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reserve_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "num_nodes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_weight_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weight_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AStar2D", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_compute_cost", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_estimate_cost", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weight_scale", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "are_points_connected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bidirectional", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "disconnect_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_available_point_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_point", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "include_disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_closest_position_in_segment", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_id_path", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_capacity", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_connections", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_path", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_weight_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_points", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_point", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_point_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reserve_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "num_nodes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_weight_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weight_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AcceptDialog", - "base_class": "WindowDialog", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "dialog_autowrap", - "type": "bool", - "getter": "has_autowrap", - "setter": "set_autowrap", - "index": -1 - }, - { - "name": "dialog_hide_on_ok", - "type": "bool", - "getter": "get_hide_on_ok", - "setter": "set_hide_on_ok", - "index": -1 - }, - { - "name": "dialog_text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - } - ], - "signals": [ - { - "name": "confirmed", - "arguments": [ - ] - }, - { - "name": "custom_action", - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_builtin_text_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_custom_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_ok", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_button", - "return_type": "Button", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "right", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "action", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "add_cancel", - "return_type": "Button", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_hide_on_ok", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_label", - "return_type": "Label", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ok", - "return_type": "Button", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_autowrap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "register_text_enter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line_edit", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_button", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autowrap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "autowrap", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_on_ok", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimatedSprite", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "animation", - "type": "String", - "getter": "get_animation", - "setter": "set_animation", - "index": -1 - }, - { - "name": "centered", - "type": "bool", - "getter": "is_centered", - "setter": "set_centered", - "index": -1 - }, - { - "name": "flip_h", - "type": "bool", - "getter": "is_flipped_h", - "setter": "set_flip_h", - "index": -1 - }, - { - "name": "flip_v", - "type": "bool", - "getter": "is_flipped_v", - "setter": "set_flip_v", - "index": -1 - }, - { - "name": "frame", - "type": "int", - "getter": "get_frame", - "setter": "set_frame", - "index": -1 - }, - { - "name": "frames", - "type": "SpriteFrames", - "getter": "get_sprite_frames", - "setter": "set_sprite_frames", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "playing", - "type": "bool", - "getter": "is_playing", - "setter": "set_playing", - "index": -1 - }, - { - "name": "speed_scale", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - } - ], - "signals": [ - { - "name": "animation_finished", - "arguments": [ - ] - }, - { - "name": "frame_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_res_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sprite_frames", - "return_type": "SpriteFrames", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_centered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_h", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_v", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "backwards", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "animation", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_centered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "centered", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_h", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_h", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_v", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_v", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_playing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "playing", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sprite_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sprite_frames", - "type": "SpriteFrames", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimatedSprite3D", - "base_class": "SpriteBase3D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "animation", - "type": "String", - "getter": "get_animation", - "setter": "set_animation", - "index": -1 - }, - { - "name": "frame", - "type": "int", - "getter": "get_frame", - "setter": "set_frame", - "index": -1 - }, - { - "name": "frames", - "type": "SpriteFrames", - "getter": "get_sprite_frames", - "setter": "set_sprite_frames", - "index": -1 - }, - { - "name": "playing", - "type": "bool", - "getter": "_is_playing", - "setter": "_set_playing", - "index": -1 - } - ], - "signals": [ - { - "name": "animation_finished", - "arguments": [ - ] - }, - { - "name": "frame_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_res_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_playing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "playing", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sprite_frames", - "return_type": "SpriteFrames", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "set_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "animation", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sprite_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sprite_frames", - "type": "SpriteFrames", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimatedTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MAX_FRAMES": 256 - }, - "properties": [ - { - "name": "current_frame", - "type": "int", - "getter": "get_current_frame", - "setter": "set_current_frame", - "index": -1 - }, - { - "name": "fps", - "type": "float", - "getter": "get_fps", - "setter": "set_fps", - "index": -1 - }, - { - "name": "frame_0/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 0 - }, - { - "name": "frame_0/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 0 - }, - { - "name": "frame_1/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 1 - }, - { - "name": "frame_1/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 1 - }, - { - "name": "frame_10/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 10 - }, - { - "name": "frame_10/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 10 - }, - { - "name": "frame_100/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 100 - }, - { - "name": "frame_100/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 100 - }, - { - "name": "frame_101/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 101 - }, - { - "name": "frame_101/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 101 - }, - { - "name": "frame_102/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 102 - }, - { - "name": "frame_102/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 102 - }, - { - "name": "frame_103/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 103 - }, - { - "name": "frame_103/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 103 - }, - { - "name": "frame_104/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 104 - }, - { - "name": "frame_104/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 104 - }, - { - "name": "frame_105/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 105 - }, - { - "name": "frame_105/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 105 - }, - { - "name": "frame_106/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 106 - }, - { - "name": "frame_106/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 106 - }, - { - "name": "frame_107/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 107 - }, - { - "name": "frame_107/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 107 - }, - { - "name": "frame_108/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 108 - }, - { - "name": "frame_108/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 108 - }, - { - "name": "frame_109/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 109 - }, - { - "name": "frame_109/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 109 - }, - { - "name": "frame_11/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 11 - }, - { - "name": "frame_11/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 11 - }, - { - "name": "frame_110/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 110 - }, - { - "name": "frame_110/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 110 - }, - { - "name": "frame_111/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 111 - }, - { - "name": "frame_111/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 111 - }, - { - "name": "frame_112/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 112 - }, - { - "name": "frame_112/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 112 - }, - { - "name": "frame_113/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 113 - }, - { - "name": "frame_113/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 113 - }, - { - "name": "frame_114/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 114 - }, - { - "name": "frame_114/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 114 - }, - { - "name": "frame_115/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 115 - }, - { - "name": "frame_115/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 115 - }, - { - "name": "frame_116/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 116 - }, - { - "name": "frame_116/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 116 - }, - { - "name": "frame_117/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 117 - }, - { - "name": "frame_117/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 117 - }, - { - "name": "frame_118/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 118 - }, - { - "name": "frame_118/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 118 - }, - { - "name": "frame_119/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 119 - }, - { - "name": "frame_119/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 119 - }, - { - "name": "frame_12/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 12 - }, - { - "name": "frame_12/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 12 - }, - { - "name": "frame_120/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 120 - }, - { - "name": "frame_120/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 120 - }, - { - "name": "frame_121/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 121 - }, - { - "name": "frame_121/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 121 - }, - { - "name": "frame_122/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 122 - }, - { - "name": "frame_122/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 122 - }, - { - "name": "frame_123/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 123 - }, - { - "name": "frame_123/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 123 - }, - { - "name": "frame_124/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 124 - }, - { - "name": "frame_124/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 124 - }, - { - "name": "frame_125/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 125 - }, - { - "name": "frame_125/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 125 - }, - { - "name": "frame_126/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 126 - }, - { - "name": "frame_126/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 126 - }, - { - "name": "frame_127/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 127 - }, - { - "name": "frame_127/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 127 - }, - { - "name": "frame_128/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 128 - }, - { - "name": "frame_128/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 128 - }, - { - "name": "frame_129/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 129 - }, - { - "name": "frame_129/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 129 - }, - { - "name": "frame_13/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 13 - }, - { - "name": "frame_13/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 13 - }, - { - "name": "frame_130/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 130 - }, - { - "name": "frame_130/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 130 - }, - { - "name": "frame_131/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 131 - }, - { - "name": "frame_131/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 131 - }, - { - "name": "frame_132/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 132 - }, - { - "name": "frame_132/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 132 - }, - { - "name": "frame_133/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 133 - }, - { - "name": "frame_133/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 133 - }, - { - "name": "frame_134/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 134 - }, - { - "name": "frame_134/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 134 - }, - { - "name": "frame_135/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 135 - }, - { - "name": "frame_135/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 135 - }, - { - "name": "frame_136/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 136 - }, - { - "name": "frame_136/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 136 - }, - { - "name": "frame_137/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 137 - }, - { - "name": "frame_137/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 137 - }, - { - "name": "frame_138/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 138 - }, - { - "name": "frame_138/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 138 - }, - { - "name": "frame_139/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 139 - }, - { - "name": "frame_139/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 139 - }, - { - "name": "frame_14/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 14 - }, - { - "name": "frame_14/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 14 - }, - { - "name": "frame_140/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 140 - }, - { - "name": "frame_140/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 140 - }, - { - "name": "frame_141/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 141 - }, - { - "name": "frame_141/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 141 - }, - { - "name": "frame_142/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 142 - }, - { - "name": "frame_142/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 142 - }, - { - "name": "frame_143/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 143 - }, - { - "name": "frame_143/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 143 - }, - { - "name": "frame_144/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 144 - }, - { - "name": "frame_144/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 144 - }, - { - "name": "frame_145/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 145 - }, - { - "name": "frame_145/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 145 - }, - { - "name": "frame_146/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 146 - }, - { - "name": "frame_146/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 146 - }, - { - "name": "frame_147/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 147 - }, - { - "name": "frame_147/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 147 - }, - { - "name": "frame_148/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 148 - }, - { - "name": "frame_148/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 148 - }, - { - "name": "frame_149/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 149 - }, - { - "name": "frame_149/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 149 - }, - { - "name": "frame_15/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 15 - }, - { - "name": "frame_15/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 15 - }, - { - "name": "frame_150/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 150 - }, - { - "name": "frame_150/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 150 - }, - { - "name": "frame_151/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 151 - }, - { - "name": "frame_151/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 151 - }, - { - "name": "frame_152/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 152 - }, - { - "name": "frame_152/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 152 - }, - { - "name": "frame_153/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 153 - }, - { - "name": "frame_153/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 153 - }, - { - "name": "frame_154/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 154 - }, - { - "name": "frame_154/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 154 - }, - { - "name": "frame_155/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 155 - }, - { - "name": "frame_155/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 155 - }, - { - "name": "frame_156/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 156 - }, - { - "name": "frame_156/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 156 - }, - { - "name": "frame_157/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 157 - }, - { - "name": "frame_157/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 157 - }, - { - "name": "frame_158/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 158 - }, - { - "name": "frame_158/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 158 - }, - { - "name": "frame_159/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 159 - }, - { - "name": "frame_159/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 159 - }, - { - "name": "frame_16/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 16 - }, - { - "name": "frame_16/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 16 - }, - { - "name": "frame_160/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 160 - }, - { - "name": "frame_160/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 160 - }, - { - "name": "frame_161/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 161 - }, - { - "name": "frame_161/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 161 - }, - { - "name": "frame_162/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 162 - }, - { - "name": "frame_162/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 162 - }, - { - "name": "frame_163/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 163 - }, - { - "name": "frame_163/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 163 - }, - { - "name": "frame_164/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 164 - }, - { - "name": "frame_164/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 164 - }, - { - "name": "frame_165/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 165 - }, - { - "name": "frame_165/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 165 - }, - { - "name": "frame_166/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 166 - }, - { - "name": "frame_166/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 166 - }, - { - "name": "frame_167/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 167 - }, - { - "name": "frame_167/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 167 - }, - { - "name": "frame_168/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 168 - }, - { - "name": "frame_168/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 168 - }, - { - "name": "frame_169/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 169 - }, - { - "name": "frame_169/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 169 - }, - { - "name": "frame_17/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 17 - }, - { - "name": "frame_17/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 17 - }, - { - "name": "frame_170/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 170 - }, - { - "name": "frame_170/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 170 - }, - { - "name": "frame_171/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 171 - }, - { - "name": "frame_171/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 171 - }, - { - "name": "frame_172/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 172 - }, - { - "name": "frame_172/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 172 - }, - { - "name": "frame_173/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 173 - }, - { - "name": "frame_173/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 173 - }, - { - "name": "frame_174/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 174 - }, - { - "name": "frame_174/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 174 - }, - { - "name": "frame_175/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 175 - }, - { - "name": "frame_175/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 175 - }, - { - "name": "frame_176/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 176 - }, - { - "name": "frame_176/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 176 - }, - { - "name": "frame_177/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 177 - }, - { - "name": "frame_177/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 177 - }, - { - "name": "frame_178/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 178 - }, - { - "name": "frame_178/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 178 - }, - { - "name": "frame_179/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 179 - }, - { - "name": "frame_179/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 179 - }, - { - "name": "frame_18/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 18 - }, - { - "name": "frame_18/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 18 - }, - { - "name": "frame_180/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 180 - }, - { - "name": "frame_180/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 180 - }, - { - "name": "frame_181/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 181 - }, - { - "name": "frame_181/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 181 - }, - { - "name": "frame_182/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 182 - }, - { - "name": "frame_182/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 182 - }, - { - "name": "frame_183/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 183 - }, - { - "name": "frame_183/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 183 - }, - { - "name": "frame_184/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 184 - }, - { - "name": "frame_184/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 184 - }, - { - "name": "frame_185/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 185 - }, - { - "name": "frame_185/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 185 - }, - { - "name": "frame_186/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 186 - }, - { - "name": "frame_186/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 186 - }, - { - "name": "frame_187/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 187 - }, - { - "name": "frame_187/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 187 - }, - { - "name": "frame_188/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 188 - }, - { - "name": "frame_188/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 188 - }, - { - "name": "frame_189/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 189 - }, - { - "name": "frame_189/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 189 - }, - { - "name": "frame_19/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 19 - }, - { - "name": "frame_19/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 19 - }, - { - "name": "frame_190/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 190 - }, - { - "name": "frame_190/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 190 - }, - { - "name": "frame_191/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 191 - }, - { - "name": "frame_191/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 191 - }, - { - "name": "frame_192/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 192 - }, - { - "name": "frame_192/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 192 - }, - { - "name": "frame_193/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 193 - }, - { - "name": "frame_193/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 193 - }, - { - "name": "frame_194/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 194 - }, - { - "name": "frame_194/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 194 - }, - { - "name": "frame_195/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 195 - }, - { - "name": "frame_195/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 195 - }, - { - "name": "frame_196/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 196 - }, - { - "name": "frame_196/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 196 - }, - { - "name": "frame_197/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 197 - }, - { - "name": "frame_197/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 197 - }, - { - "name": "frame_198/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 198 - }, - { - "name": "frame_198/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 198 - }, - { - "name": "frame_199/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 199 - }, - { - "name": "frame_199/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 199 - }, - { - "name": "frame_2/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 2 - }, - { - "name": "frame_2/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 2 - }, - { - "name": "frame_20/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 20 - }, - { - "name": "frame_20/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 20 - }, - { - "name": "frame_200/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 200 - }, - { - "name": "frame_200/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 200 - }, - { - "name": "frame_201/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 201 - }, - { - "name": "frame_201/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 201 - }, - { - "name": "frame_202/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 202 - }, - { - "name": "frame_202/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 202 - }, - { - "name": "frame_203/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 203 - }, - { - "name": "frame_203/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 203 - }, - { - "name": "frame_204/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 204 - }, - { - "name": "frame_204/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 204 - }, - { - "name": "frame_205/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 205 - }, - { - "name": "frame_205/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 205 - }, - { - "name": "frame_206/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 206 - }, - { - "name": "frame_206/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 206 - }, - { - "name": "frame_207/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 207 - }, - { - "name": "frame_207/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 207 - }, - { - "name": "frame_208/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 208 - }, - { - "name": "frame_208/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 208 - }, - { - "name": "frame_209/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 209 - }, - { - "name": "frame_209/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 209 - }, - { - "name": "frame_21/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 21 - }, - { - "name": "frame_21/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 21 - }, - { - "name": "frame_210/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 210 - }, - { - "name": "frame_210/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 210 - }, - { - "name": "frame_211/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 211 - }, - { - "name": "frame_211/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 211 - }, - { - "name": "frame_212/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 212 - }, - { - "name": "frame_212/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 212 - }, - { - "name": "frame_213/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 213 - }, - { - "name": "frame_213/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 213 - }, - { - "name": "frame_214/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 214 - }, - { - "name": "frame_214/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 214 - }, - { - "name": "frame_215/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 215 - }, - { - "name": "frame_215/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 215 - }, - { - "name": "frame_216/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 216 - }, - { - "name": "frame_216/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 216 - }, - { - "name": "frame_217/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 217 - }, - { - "name": "frame_217/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 217 - }, - { - "name": "frame_218/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 218 - }, - { - "name": "frame_218/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 218 - }, - { - "name": "frame_219/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 219 - }, - { - "name": "frame_219/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 219 - }, - { - "name": "frame_22/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 22 - }, - { - "name": "frame_22/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 22 - }, - { - "name": "frame_220/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 220 - }, - { - "name": "frame_220/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 220 - }, - { - "name": "frame_221/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 221 - }, - { - "name": "frame_221/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 221 - }, - { - "name": "frame_222/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 222 - }, - { - "name": "frame_222/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 222 - }, - { - "name": "frame_223/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 223 - }, - { - "name": "frame_223/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 223 - }, - { - "name": "frame_224/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 224 - }, - { - "name": "frame_224/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 224 - }, - { - "name": "frame_225/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 225 - }, - { - "name": "frame_225/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 225 - }, - { - "name": "frame_226/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 226 - }, - { - "name": "frame_226/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 226 - }, - { - "name": "frame_227/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 227 - }, - { - "name": "frame_227/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 227 - }, - { - "name": "frame_228/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 228 - }, - { - "name": "frame_228/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 228 - }, - { - "name": "frame_229/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 229 - }, - { - "name": "frame_229/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 229 - }, - { - "name": "frame_23/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 23 - }, - { - "name": "frame_23/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 23 - }, - { - "name": "frame_230/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 230 - }, - { - "name": "frame_230/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 230 - }, - { - "name": "frame_231/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 231 - }, - { - "name": "frame_231/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 231 - }, - { - "name": "frame_232/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 232 - }, - { - "name": "frame_232/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 232 - }, - { - "name": "frame_233/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 233 - }, - { - "name": "frame_233/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 233 - }, - { - "name": "frame_234/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 234 - }, - { - "name": "frame_234/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 234 - }, - { - "name": "frame_235/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 235 - }, - { - "name": "frame_235/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 235 - }, - { - "name": "frame_236/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 236 - }, - { - "name": "frame_236/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 236 - }, - { - "name": "frame_237/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 237 - }, - { - "name": "frame_237/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 237 - }, - { - "name": "frame_238/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 238 - }, - { - "name": "frame_238/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 238 - }, - { - "name": "frame_239/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 239 - }, - { - "name": "frame_239/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 239 - }, - { - "name": "frame_24/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 24 - }, - { - "name": "frame_24/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 24 - }, - { - "name": "frame_240/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 240 - }, - { - "name": "frame_240/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 240 - }, - { - "name": "frame_241/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 241 - }, - { - "name": "frame_241/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 241 - }, - { - "name": "frame_242/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 242 - }, - { - "name": "frame_242/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 242 - }, - { - "name": "frame_243/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 243 - }, - { - "name": "frame_243/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 243 - }, - { - "name": "frame_244/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 244 - }, - { - "name": "frame_244/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 244 - }, - { - "name": "frame_245/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 245 - }, - { - "name": "frame_245/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 245 - }, - { - "name": "frame_246/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 246 - }, - { - "name": "frame_246/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 246 - }, - { - "name": "frame_247/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 247 - }, - { - "name": "frame_247/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 247 - }, - { - "name": "frame_248/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 248 - }, - { - "name": "frame_248/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 248 - }, - { - "name": "frame_249/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 249 - }, - { - "name": "frame_249/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 249 - }, - { - "name": "frame_25/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 25 - }, - { - "name": "frame_25/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 25 - }, - { - "name": "frame_250/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 250 - }, - { - "name": "frame_250/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 250 - }, - { - "name": "frame_251/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 251 - }, - { - "name": "frame_251/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 251 - }, - { - "name": "frame_252/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 252 - }, - { - "name": "frame_252/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 252 - }, - { - "name": "frame_253/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 253 - }, - { - "name": "frame_253/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 253 - }, - { - "name": "frame_254/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 254 - }, - { - "name": "frame_254/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 254 - }, - { - "name": "frame_255/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 255 - }, - { - "name": "frame_255/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 255 - }, - { - "name": "frame_26/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 26 - }, - { - "name": "frame_26/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 26 - }, - { - "name": "frame_27/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 27 - }, - { - "name": "frame_27/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 27 - }, - { - "name": "frame_28/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 28 - }, - { - "name": "frame_28/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 28 - }, - { - "name": "frame_29/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 29 - }, - { - "name": "frame_29/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 29 - }, - { - "name": "frame_3/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 3 - }, - { - "name": "frame_3/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 3 - }, - { - "name": "frame_30/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 30 - }, - { - "name": "frame_30/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 30 - }, - { - "name": "frame_31/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 31 - }, - { - "name": "frame_31/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 31 - }, - { - "name": "frame_32/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 32 - }, - { - "name": "frame_32/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 32 - }, - { - "name": "frame_33/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 33 - }, - { - "name": "frame_33/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 33 - }, - { - "name": "frame_34/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 34 - }, - { - "name": "frame_34/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 34 - }, - { - "name": "frame_35/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 35 - }, - { - "name": "frame_35/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 35 - }, - { - "name": "frame_36/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 36 - }, - { - "name": "frame_36/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 36 - }, - { - "name": "frame_37/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 37 - }, - { - "name": "frame_37/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 37 - }, - { - "name": "frame_38/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 38 - }, - { - "name": "frame_38/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 38 - }, - { - "name": "frame_39/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 39 - }, - { - "name": "frame_39/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 39 - }, - { - "name": "frame_4/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 4 - }, - { - "name": "frame_4/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 4 - }, - { - "name": "frame_40/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 40 - }, - { - "name": "frame_40/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 40 - }, - { - "name": "frame_41/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 41 - }, - { - "name": "frame_41/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 41 - }, - { - "name": "frame_42/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 42 - }, - { - "name": "frame_42/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 42 - }, - { - "name": "frame_43/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 43 - }, - { - "name": "frame_43/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 43 - }, - { - "name": "frame_44/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 44 - }, - { - "name": "frame_44/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 44 - }, - { - "name": "frame_45/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 45 - }, - { - "name": "frame_45/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 45 - }, - { - "name": "frame_46/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 46 - }, - { - "name": "frame_46/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 46 - }, - { - "name": "frame_47/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 47 - }, - { - "name": "frame_47/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 47 - }, - { - "name": "frame_48/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 48 - }, - { - "name": "frame_48/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 48 - }, - { - "name": "frame_49/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 49 - }, - { - "name": "frame_49/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 49 - }, - { - "name": "frame_5/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 5 - }, - { - "name": "frame_5/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 5 - }, - { - "name": "frame_50/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 50 - }, - { - "name": "frame_50/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 50 - }, - { - "name": "frame_51/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 51 - }, - { - "name": "frame_51/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 51 - }, - { - "name": "frame_52/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 52 - }, - { - "name": "frame_52/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 52 - }, - { - "name": "frame_53/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 53 - }, - { - "name": "frame_53/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 53 - }, - { - "name": "frame_54/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 54 - }, - { - "name": "frame_54/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 54 - }, - { - "name": "frame_55/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 55 - }, - { - "name": "frame_55/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 55 - }, - { - "name": "frame_56/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 56 - }, - { - "name": "frame_56/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 56 - }, - { - "name": "frame_57/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 57 - }, - { - "name": "frame_57/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 57 - }, - { - "name": "frame_58/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 58 - }, - { - "name": "frame_58/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 58 - }, - { - "name": "frame_59/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 59 - }, - { - "name": "frame_59/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 59 - }, - { - "name": "frame_6/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 6 - }, - { - "name": "frame_6/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 6 - }, - { - "name": "frame_60/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 60 - }, - { - "name": "frame_60/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 60 - }, - { - "name": "frame_61/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 61 - }, - { - "name": "frame_61/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 61 - }, - { - "name": "frame_62/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 62 - }, - { - "name": "frame_62/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 62 - }, - { - "name": "frame_63/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 63 - }, - { - "name": "frame_63/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 63 - }, - { - "name": "frame_64/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 64 - }, - { - "name": "frame_64/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 64 - }, - { - "name": "frame_65/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 65 - }, - { - "name": "frame_65/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 65 - }, - { - "name": "frame_66/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 66 - }, - { - "name": "frame_66/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 66 - }, - { - "name": "frame_67/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 67 - }, - { - "name": "frame_67/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 67 - }, - { - "name": "frame_68/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 68 - }, - { - "name": "frame_68/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 68 - }, - { - "name": "frame_69/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 69 - }, - { - "name": "frame_69/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 69 - }, - { - "name": "frame_7/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 7 - }, - { - "name": "frame_7/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 7 - }, - { - "name": "frame_70/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 70 - }, - { - "name": "frame_70/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 70 - }, - { - "name": "frame_71/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 71 - }, - { - "name": "frame_71/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 71 - }, - { - "name": "frame_72/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 72 - }, - { - "name": "frame_72/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 72 - }, - { - "name": "frame_73/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 73 - }, - { - "name": "frame_73/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 73 - }, - { - "name": "frame_74/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 74 - }, - { - "name": "frame_74/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 74 - }, - { - "name": "frame_75/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 75 - }, - { - "name": "frame_75/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 75 - }, - { - "name": "frame_76/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 76 - }, - { - "name": "frame_76/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 76 - }, - { - "name": "frame_77/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 77 - }, - { - "name": "frame_77/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 77 - }, - { - "name": "frame_78/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 78 - }, - { - "name": "frame_78/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 78 - }, - { - "name": "frame_79/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 79 - }, - { - "name": "frame_79/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 79 - }, - { - "name": "frame_8/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 8 - }, - { - "name": "frame_8/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 8 - }, - { - "name": "frame_80/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 80 - }, - { - "name": "frame_80/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 80 - }, - { - "name": "frame_81/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 81 - }, - { - "name": "frame_81/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 81 - }, - { - "name": "frame_82/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 82 - }, - { - "name": "frame_82/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 82 - }, - { - "name": "frame_83/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 83 - }, - { - "name": "frame_83/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 83 - }, - { - "name": "frame_84/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 84 - }, - { - "name": "frame_84/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 84 - }, - { - "name": "frame_85/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 85 - }, - { - "name": "frame_85/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 85 - }, - { - "name": "frame_86/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 86 - }, - { - "name": "frame_86/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 86 - }, - { - "name": "frame_87/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 87 - }, - { - "name": "frame_87/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 87 - }, - { - "name": "frame_88/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 88 - }, - { - "name": "frame_88/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 88 - }, - { - "name": "frame_89/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 89 - }, - { - "name": "frame_89/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 89 - }, - { - "name": "frame_9/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 9 - }, - { - "name": "frame_9/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 9 - }, - { - "name": "frame_90/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 90 - }, - { - "name": "frame_90/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 90 - }, - { - "name": "frame_91/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 91 - }, - { - "name": "frame_91/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 91 - }, - { - "name": "frame_92/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 92 - }, - { - "name": "frame_92/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 92 - }, - { - "name": "frame_93/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 93 - }, - { - "name": "frame_93/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 93 - }, - { - "name": "frame_94/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 94 - }, - { - "name": "frame_94/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 94 - }, - { - "name": "frame_95/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 95 - }, - { - "name": "frame_95/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 95 - }, - { - "name": "frame_96/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 96 - }, - { - "name": "frame_96/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 96 - }, - { - "name": "frame_97/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 97 - }, - { - "name": "frame_97/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 97 - }, - { - "name": "frame_98/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 98 - }, - { - "name": "frame_98/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 98 - }, - { - "name": "frame_99/delay_sec", - "type": "float", - "getter": "get_frame_delay", - "setter": "set_frame_delay", - "index": 99 - }, - { - "name": "frame_99/texture", - "type": "Texture", - "getter": "get_frame_texture", - "setter": "set_frame_texture", - "index": 99 - }, - { - "name": "frames", - "type": "int", - "getter": "get_frames", - "setter": "set_frames", - "index": -1 - }, - { - "name": "oneshot", - "type": "bool", - "getter": "get_oneshot", - "setter": "set_oneshot", - "index": -1 - }, - { - "name": "pause", - "type": "bool", - "getter": "get_pause", - "setter": "set_pause", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_update_proxy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_frame", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fps", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame_delay", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_frame_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_oneshot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pause", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_current_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fps", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delay", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_oneshot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "oneshot", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pause", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pause", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Animation", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "INTERPOLATION_CUBIC": 2, - "INTERPOLATION_LINEAR": 1, - "INTERPOLATION_NEAREST": 0, - "TYPE_ANIMATION": 5, - "TYPE_AUDIO": 4, - "TYPE_BEZIER": 3, - "TYPE_METHOD": 2, - "TYPE_TRANSFORM": 1, - "TYPE_VALUE": 0, - "UPDATE_CAPTURE": 3, - "UPDATE_CONTINUOUS": 0, - "UPDATE_DISCRETE": 1, - "UPDATE_TRIGGER": 2 - }, - "properties": [ - { - "name": "length", - "type": "float", - "getter": "get_length", - "setter": "set_length", - "index": -1 - }, - { - "name": "loop", - "type": "bool", - "getter": "has_loop", - "setter": "set_loop", - "index": -1 - }, - { - "name": "step", - "type": "float", - "getter": "get_step", - "setter": "set_step", - "index": -1 - } - ], - "signals": [ - { - "name": "tracks_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "add_track", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "animation_track_get_key_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_track_insert_key", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "animation", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_track_set_key_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "animation", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "audio_track_get_key_end_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "audio_track_get_key_start_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "audio_track_get_key_stream", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "audio_track_insert_key", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "stream", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "start_offset", - "type": "float", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "end_offset", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "audio_track_set_key_end_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "audio_track_set_key_start_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "audio_track_set_key_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "stream", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_get_key_in_handle", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_get_key_out_handle", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_get_key_value", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_insert_key", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "in_handle", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "out_handle", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "bezier_track_interpolate", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_set_key_in_handle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "in_handle", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_set_key_out_handle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "out_handle", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bezier_track_set_key_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "copy_track", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_animation", - "type": "Animation", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_track", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_track_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "method_track_get_key_indices", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "method_track_get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "method_track_get_params", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_track", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_step", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_find_key", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "track_get_interpolation_loop_wrap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_interpolation_type", - "return_type": "enum.Animation::InterpolationType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_key_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_key_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_key_transition", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_key_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_get_type", - "return_type": "enum.Animation::TrackType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_insert_key", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transition", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "track_is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_is_imported", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_move_down", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_move_to", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_move_up", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_remove_key", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_remove_key_at_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_imported", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "imported", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_interpolation_loop_wrap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "interpolation", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_interpolation_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "interpolation", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_key_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_key_transition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transition", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_key_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_set_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "track_swap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "with_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transform_track_insert_key", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "location", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rotation", - "type": "Quat", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transform_track_interpolate", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "value_track_get_key_indices", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "value_track_get_update_mode", - "return_type": "enum.Animation::UpdateMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "value_track_interpolate", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "value_track_set_update_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TrackType", - "values": { - "TYPE_VALUE": 0, - "TYPE_TRANSFORM": 1, - "TYPE_METHOD": 2, - "TYPE_BEZIER": 3, - "TYPE_AUDIO": 4, - "TYPE_ANIMATION": 5 - } - }, - { - "name": "UpdateMode", - "values": { - "UPDATE_CONTINUOUS": 0, - "UPDATE_DISCRETE": 1, - "UPDATE_TRIGGER": 2, - "UPDATE_CAPTURE": 3 - } - }, - { - "name": "InterpolationType", - "values": { - "INTERPOLATION_NEAREST": 0, - "INTERPOLATION_LINEAR": 1, - "INTERPOLATION_CUBIC": 2 - } - } - ] - }, - { - "name": "AnimationNode", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FILTER_BLEND": 3, - "FILTER_IGNORE": 0, - "FILTER_PASS": 1, - "FILTER_STOP": 2 - }, - "properties": [ - { - "name": "filter_enabled", - "type": "bool", - "getter": "is_filter_enabled", - "setter": "set_filter_enabled", - "index": -1 - }, - { - "name": "filters", - "type": "Array", - "getter": "_get_filters", - "setter": "_set_filters", - "index": -1 - } - ], - "signals": [ - { - "name": "removed_from_graph", - "arguments": [ - ] - }, - { - "name": "tree_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_get_filters", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_filters", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filters", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "animation", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "seeked", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend_input", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "seek", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "filter", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "optimize", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "blend_node", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "seek", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "filter", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "optimize", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_caption", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_child_by_name", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_child_nodes", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_input_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_input_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_parameter", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_parameter_default_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_parameter_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_filter", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_filter_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_path_filtered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "seek", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filter_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filter_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_parameter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FilterAction", - "values": { - "FILTER_IGNORE": 0, - "FILTER_PASS": 1, - "FILTER_STOP": 2, - "FILTER_BLEND": 3 - } - } - ] - }, - { - "name": "AnimationNodeAdd2", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "sync", - "type": "bool", - "getter": "is_using_sync", - "setter": "set_use_sync", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_using_sync", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_use_sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeAdd3", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "sync", - "type": "bool", - "getter": "is_using_sync", - "setter": "set_use_sync", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_using_sync", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_use_sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeAnimation", - "base_class": "AnimationRootNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "animation", - "type": "String", - "getter": "get_animation", - "setter": "set_animation", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeBlend2", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "sync", - "type": "bool", - "getter": "is_using_sync", - "setter": "set_use_sync", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_using_sync", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_use_sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeBlend3", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "sync", - "type": "bool", - "getter": "is_using_sync", - "setter": "set_use_sync", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_using_sync", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_use_sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeBlendSpace1D", - "base_class": "AnimationRootNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "blend_point_0/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 0 - }, - { - "name": "blend_point_0/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 0 - }, - { - "name": "blend_point_1/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 1 - }, - { - "name": "blend_point_1/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 1 - }, - { - "name": "blend_point_10/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 10 - }, - { - "name": "blend_point_10/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 10 - }, - { - "name": "blend_point_11/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 11 - }, - { - "name": "blend_point_11/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 11 - }, - { - "name": "blend_point_12/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 12 - }, - { - "name": "blend_point_12/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 12 - }, - { - "name": "blend_point_13/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 13 - }, - { - "name": "blend_point_13/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 13 - }, - { - "name": "blend_point_14/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 14 - }, - { - "name": "blend_point_14/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 14 - }, - { - "name": "blend_point_15/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 15 - }, - { - "name": "blend_point_15/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 15 - }, - { - "name": "blend_point_16/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 16 - }, - { - "name": "blend_point_16/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 16 - }, - { - "name": "blend_point_17/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 17 - }, - { - "name": "blend_point_17/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 17 - }, - { - "name": "blend_point_18/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 18 - }, - { - "name": "blend_point_18/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 18 - }, - { - "name": "blend_point_19/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 19 - }, - { - "name": "blend_point_19/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 19 - }, - { - "name": "blend_point_2/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 2 - }, - { - "name": "blend_point_2/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 2 - }, - { - "name": "blend_point_20/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 20 - }, - { - "name": "blend_point_20/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 20 - }, - { - "name": "blend_point_21/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 21 - }, - { - "name": "blend_point_21/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 21 - }, - { - "name": "blend_point_22/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 22 - }, - { - "name": "blend_point_22/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 22 - }, - { - "name": "blend_point_23/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 23 - }, - { - "name": "blend_point_23/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 23 - }, - { - "name": "blend_point_24/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 24 - }, - { - "name": "blend_point_24/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 24 - }, - { - "name": "blend_point_25/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 25 - }, - { - "name": "blend_point_25/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 25 - }, - { - "name": "blend_point_26/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 26 - }, - { - "name": "blend_point_26/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 26 - }, - { - "name": "blend_point_27/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 27 - }, - { - "name": "blend_point_27/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 27 - }, - { - "name": "blend_point_28/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 28 - }, - { - "name": "blend_point_28/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 28 - }, - { - "name": "blend_point_29/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 29 - }, - { - "name": "blend_point_29/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 29 - }, - { - "name": "blend_point_3/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 3 - }, - { - "name": "blend_point_3/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 3 - }, - { - "name": "blend_point_30/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 30 - }, - { - "name": "blend_point_30/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 30 - }, - { - "name": "blend_point_31/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 31 - }, - { - "name": "blend_point_31/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 31 - }, - { - "name": "blend_point_32/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 32 - }, - { - "name": "blend_point_32/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 32 - }, - { - "name": "blend_point_33/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 33 - }, - { - "name": "blend_point_33/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 33 - }, - { - "name": "blend_point_34/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 34 - }, - { - "name": "blend_point_34/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 34 - }, - { - "name": "blend_point_35/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 35 - }, - { - "name": "blend_point_35/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 35 - }, - { - "name": "blend_point_36/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 36 - }, - { - "name": "blend_point_36/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 36 - }, - { - "name": "blend_point_37/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 37 - }, - { - "name": "blend_point_37/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 37 - }, - { - "name": "blend_point_38/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 38 - }, - { - "name": "blend_point_38/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 38 - }, - { - "name": "blend_point_39/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 39 - }, - { - "name": "blend_point_39/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 39 - }, - { - "name": "blend_point_4/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 4 - }, - { - "name": "blend_point_4/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 4 - }, - { - "name": "blend_point_40/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 40 - }, - { - "name": "blend_point_40/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 40 - }, - { - "name": "blend_point_41/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 41 - }, - { - "name": "blend_point_41/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 41 - }, - { - "name": "blend_point_42/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 42 - }, - { - "name": "blend_point_42/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 42 - }, - { - "name": "blend_point_43/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 43 - }, - { - "name": "blend_point_43/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 43 - }, - { - "name": "blend_point_44/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 44 - }, - { - "name": "blend_point_44/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 44 - }, - { - "name": "blend_point_45/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 45 - }, - { - "name": "blend_point_45/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 45 - }, - { - "name": "blend_point_46/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 46 - }, - { - "name": "blend_point_46/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 46 - }, - { - "name": "blend_point_47/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 47 - }, - { - "name": "blend_point_47/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 47 - }, - { - "name": "blend_point_48/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 48 - }, - { - "name": "blend_point_48/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 48 - }, - { - "name": "blend_point_49/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 49 - }, - { - "name": "blend_point_49/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 49 - }, - { - "name": "blend_point_5/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 5 - }, - { - "name": "blend_point_5/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 5 - }, - { - "name": "blend_point_50/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 50 - }, - { - "name": "blend_point_50/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 50 - }, - { - "name": "blend_point_51/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 51 - }, - { - "name": "blend_point_51/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 51 - }, - { - "name": "blend_point_52/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 52 - }, - { - "name": "blend_point_52/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 52 - }, - { - "name": "blend_point_53/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 53 - }, - { - "name": "blend_point_53/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 53 - }, - { - "name": "blend_point_54/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 54 - }, - { - "name": "blend_point_54/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 54 - }, - { - "name": "blend_point_55/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 55 - }, - { - "name": "blend_point_55/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 55 - }, - { - "name": "blend_point_56/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 56 - }, - { - "name": "blend_point_56/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 56 - }, - { - "name": "blend_point_57/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 57 - }, - { - "name": "blend_point_57/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 57 - }, - { - "name": "blend_point_58/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 58 - }, - { - "name": "blend_point_58/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 58 - }, - { - "name": "blend_point_59/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 59 - }, - { - "name": "blend_point_59/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 59 - }, - { - "name": "blend_point_6/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 6 - }, - { - "name": "blend_point_6/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 6 - }, - { - "name": "blend_point_60/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 60 - }, - { - "name": "blend_point_60/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 60 - }, - { - "name": "blend_point_61/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 61 - }, - { - "name": "blend_point_61/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 61 - }, - { - "name": "blend_point_62/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 62 - }, - { - "name": "blend_point_62/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 62 - }, - { - "name": "blend_point_63/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 63 - }, - { - "name": "blend_point_63/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 63 - }, - { - "name": "blend_point_7/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 7 - }, - { - "name": "blend_point_7/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 7 - }, - { - "name": "blend_point_8/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 8 - }, - { - "name": "blend_point_8/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 8 - }, - { - "name": "blend_point_9/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 9 - }, - { - "name": "blend_point_9/pos", - "type": "float", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 9 - }, - { - "name": "max_space", - "type": "float", - "getter": "get_max_space", - "setter": "set_max_space", - "index": -1 - }, - { - "name": "min_space", - "type": "float", - "getter": "get_min_space", - "setter": "set_min_space", - "index": -1 - }, - { - "name": "snap", - "type": "float", - "getter": "get_snap", - "setter": "set_snap", - "index": -1 - }, - { - "name": "value_label", - "type": "String", - "getter": "get_value_label", - "setter": "set_value_label", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_add_blend_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationRootNode", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_blend_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "AnimationRootNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pos", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_index", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_blend_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_point_node", - "return_type": "AnimationRootNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_blend_point_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_max_space", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min_space", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_snap", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_value_label", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_blend_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_point_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationRootNode", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pos", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_space", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "min_space", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_snap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "snap", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_value_label", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeBlendSpace2D", - "base_class": "AnimationRootNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "BLEND_MODE_DISCRETE": 1, - "BLEND_MODE_DISCRETE_CARRY": 2, - "BLEND_MODE_INTERPOLATED": 0 - }, - "properties": [ - { - "name": "auto_triangles", - "type": "bool", - "getter": "get_auto_triangles", - "setter": "set_auto_triangles", - "index": -1 - }, - { - "name": "blend_mode", - "type": "int", - "getter": "get_blend_mode", - "setter": "set_blend_mode", - "index": -1 - }, - { - "name": "blend_point_0/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 0 - }, - { - "name": "blend_point_0/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 0 - }, - { - "name": "blend_point_1/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 1 - }, - { - "name": "blend_point_1/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 1 - }, - { - "name": "blend_point_10/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 10 - }, - { - "name": "blend_point_10/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 10 - }, - { - "name": "blend_point_11/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 11 - }, - { - "name": "blend_point_11/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 11 - }, - { - "name": "blend_point_12/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 12 - }, - { - "name": "blend_point_12/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 12 - }, - { - "name": "blend_point_13/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 13 - }, - { - "name": "blend_point_13/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 13 - }, - { - "name": "blend_point_14/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 14 - }, - { - "name": "blend_point_14/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 14 - }, - { - "name": "blend_point_15/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 15 - }, - { - "name": "blend_point_15/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 15 - }, - { - "name": "blend_point_16/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 16 - }, - { - "name": "blend_point_16/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 16 - }, - { - "name": "blend_point_17/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 17 - }, - { - "name": "blend_point_17/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 17 - }, - { - "name": "blend_point_18/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 18 - }, - { - "name": "blend_point_18/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 18 - }, - { - "name": "blend_point_19/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 19 - }, - { - "name": "blend_point_19/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 19 - }, - { - "name": "blend_point_2/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 2 - }, - { - "name": "blend_point_2/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 2 - }, - { - "name": "blend_point_20/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 20 - }, - { - "name": "blend_point_20/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 20 - }, - { - "name": "blend_point_21/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 21 - }, - { - "name": "blend_point_21/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 21 - }, - { - "name": "blend_point_22/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 22 - }, - { - "name": "blend_point_22/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 22 - }, - { - "name": "blend_point_23/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 23 - }, - { - "name": "blend_point_23/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 23 - }, - { - "name": "blend_point_24/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 24 - }, - { - "name": "blend_point_24/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 24 - }, - { - "name": "blend_point_25/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 25 - }, - { - "name": "blend_point_25/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 25 - }, - { - "name": "blend_point_26/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 26 - }, - { - "name": "blend_point_26/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 26 - }, - { - "name": "blend_point_27/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 27 - }, - { - "name": "blend_point_27/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 27 - }, - { - "name": "blend_point_28/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 28 - }, - { - "name": "blend_point_28/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 28 - }, - { - "name": "blend_point_29/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 29 - }, - { - "name": "blend_point_29/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 29 - }, - { - "name": "blend_point_3/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 3 - }, - { - "name": "blend_point_3/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 3 - }, - { - "name": "blend_point_30/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 30 - }, - { - "name": "blend_point_30/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 30 - }, - { - "name": "blend_point_31/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 31 - }, - { - "name": "blend_point_31/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 31 - }, - { - "name": "blend_point_32/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 32 - }, - { - "name": "blend_point_32/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 32 - }, - { - "name": "blend_point_33/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 33 - }, - { - "name": "blend_point_33/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 33 - }, - { - "name": "blend_point_34/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 34 - }, - { - "name": "blend_point_34/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 34 - }, - { - "name": "blend_point_35/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 35 - }, - { - "name": "blend_point_35/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 35 - }, - { - "name": "blend_point_36/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 36 - }, - { - "name": "blend_point_36/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 36 - }, - { - "name": "blend_point_37/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 37 - }, - { - "name": "blend_point_37/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 37 - }, - { - "name": "blend_point_38/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 38 - }, - { - "name": "blend_point_38/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 38 - }, - { - "name": "blend_point_39/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 39 - }, - { - "name": "blend_point_39/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 39 - }, - { - "name": "blend_point_4/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 4 - }, - { - "name": "blend_point_4/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 4 - }, - { - "name": "blend_point_40/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 40 - }, - { - "name": "blend_point_40/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 40 - }, - { - "name": "blend_point_41/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 41 - }, - { - "name": "blend_point_41/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 41 - }, - { - "name": "blend_point_42/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 42 - }, - { - "name": "blend_point_42/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 42 - }, - { - "name": "blend_point_43/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 43 - }, - { - "name": "blend_point_43/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 43 - }, - { - "name": "blend_point_44/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 44 - }, - { - "name": "blend_point_44/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 44 - }, - { - "name": "blend_point_45/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 45 - }, - { - "name": "blend_point_45/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 45 - }, - { - "name": "blend_point_46/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 46 - }, - { - "name": "blend_point_46/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 46 - }, - { - "name": "blend_point_47/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 47 - }, - { - "name": "blend_point_47/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 47 - }, - { - "name": "blend_point_48/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 48 - }, - { - "name": "blend_point_48/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 48 - }, - { - "name": "blend_point_49/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 49 - }, - { - "name": "blend_point_49/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 49 - }, - { - "name": "blend_point_5/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 5 - }, - { - "name": "blend_point_5/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 5 - }, - { - "name": "blend_point_50/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 50 - }, - { - "name": "blend_point_50/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 50 - }, - { - "name": "blend_point_51/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 51 - }, - { - "name": "blend_point_51/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 51 - }, - { - "name": "blend_point_52/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 52 - }, - { - "name": "blend_point_52/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 52 - }, - { - "name": "blend_point_53/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 53 - }, - { - "name": "blend_point_53/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 53 - }, - { - "name": "blend_point_54/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 54 - }, - { - "name": "blend_point_54/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 54 - }, - { - "name": "blend_point_55/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 55 - }, - { - "name": "blend_point_55/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 55 - }, - { - "name": "blend_point_56/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 56 - }, - { - "name": "blend_point_56/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 56 - }, - { - "name": "blend_point_57/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 57 - }, - { - "name": "blend_point_57/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 57 - }, - { - "name": "blend_point_58/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 58 - }, - { - "name": "blend_point_58/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 58 - }, - { - "name": "blend_point_59/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 59 - }, - { - "name": "blend_point_59/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 59 - }, - { - "name": "blend_point_6/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 6 - }, - { - "name": "blend_point_6/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 6 - }, - { - "name": "blend_point_60/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 60 - }, - { - "name": "blend_point_60/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 60 - }, - { - "name": "blend_point_61/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 61 - }, - { - "name": "blend_point_61/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 61 - }, - { - "name": "blend_point_62/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 62 - }, - { - "name": "blend_point_62/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 62 - }, - { - "name": "blend_point_63/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 63 - }, - { - "name": "blend_point_63/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 63 - }, - { - "name": "blend_point_7/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 7 - }, - { - "name": "blend_point_7/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 7 - }, - { - "name": "blend_point_8/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 8 - }, - { - "name": "blend_point_8/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 8 - }, - { - "name": "blend_point_9/node", - "type": "AnimationRootNode", - "getter": "get_blend_point_node", - "setter": "_add_blend_point", - "index": 9 - }, - { - "name": "blend_point_9/pos", - "type": "Vector2", - "getter": "get_blend_point_position", - "setter": "set_blend_point_position", - "index": 9 - }, - { - "name": "max_space", - "type": "Vector2", - "getter": "get_max_space", - "setter": "set_max_space", - "index": -1 - }, - { - "name": "min_space", - "type": "Vector2", - "getter": "get_min_space", - "setter": "set_min_space", - "index": -1 - }, - { - "name": "snap", - "type": "Vector2", - "getter": "get_snap", - "setter": "set_snap", - "index": -1 - }, - { - "name": "triangles", - "type": "PoolIntArray", - "getter": "_get_triangles", - "setter": "_set_triangles", - "index": -1 - }, - { - "name": "x_label", - "type": "String", - "getter": "get_x_label", - "setter": "set_x_label", - "index": -1 - }, - { - "name": "y_label", - "type": "String", - "getter": "get_y_label", - "setter": "set_y_label", - "index": -1 - } - ], - "signals": [ - { - "name": "triangles_updated", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_add_blend_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationRootNode", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_triangles", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_triangles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "triangles", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_triangles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_blend_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "AnimationRootNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pos", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_index", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "add_triangle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_index", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_auto_triangles", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_mode", - "return_type": "enum.AnimationNodeBlendSpace2D::BlendMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_point_node", - "return_type": "AnimationRootNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_blend_point_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_max_space", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min_space", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_snap", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_triangle_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_triangle_point", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "triangle", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_x_label", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_y_label", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_blend_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_triangle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "triangle", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_auto_triangles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_point_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationRootNode", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pos", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_space", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "min_space", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_snap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "snap", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_x_label", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_y_label", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BlendMode", - "values": { - "BLEND_MODE_INTERPOLATED": 0, - "BLEND_MODE_DISCRETE": 1, - "BLEND_MODE_DISCRETE_CARRY": 2 - } - } - ] - }, - { - "name": "AnimationNodeBlendTree", - "base_class": "AnimationRootNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "CONNECTION_ERROR_CONNECTION_EXISTS": 5, - "CONNECTION_ERROR_NO_INPUT": 1, - "CONNECTION_ERROR_NO_INPUT_INDEX": 2, - "CONNECTION_ERROR_NO_OUTPUT": 3, - "CONNECTION_ERROR_SAME_NODE": 4, - "CONNECTION_OK": 0 - }, - "properties": [ - { - "name": "graph_offset", - "type": "Vector2", - "getter": "get_graph_offset", - "setter": "set_graph_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_node_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "connect_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input_node", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "output_node", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "disconnect_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input_node", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_graph_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node", - "return_type": "AnimationNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_node", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_graph_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeOneShot", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MIX_MODE_ADD": 1, - "MIX_MODE_BLEND": 0 - }, - "properties": [ - { - "name": "autorestart", - "type": "bool", - "getter": "has_autorestart", - "setter": "set_autorestart", - "index": -1 - }, - { - "name": "autorestart_delay", - "type": "float", - "getter": "get_autorestart_delay", - "setter": "set_autorestart_delay", - "index": -1 - }, - { - "name": "autorestart_random_delay", - "type": "float", - "getter": "get_autorestart_random_delay", - "setter": "set_autorestart_random_delay", - "index": -1 - }, - { - "name": "fadein_time", - "type": "float", - "getter": "get_fadein_time", - "setter": "set_fadein_time", - "index": -1 - }, - { - "name": "fadeout_time", - "type": "float", - "getter": "get_fadeout_time", - "setter": "set_fadeout_time", - "index": -1 - }, - { - "name": "sync", - "type": "bool", - "getter": "is_using_sync", - "setter": "set_use_sync", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_autorestart_delay", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_autorestart_random_delay", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fadein_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fadeout_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mix_mode", - "return_type": "enum.AnimationNodeOneShot::MixMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_autorestart", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_sync", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_autorestart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autorestart_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autorestart_random_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fadein_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fadeout_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mix_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "MixMode", - "values": { - "MIX_MODE_BLEND": 0, - "MIX_MODE_ADD": 1 - } - } - ] - }, - { - "name": "AnimationNodeOutput", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeStateMachine", - "base_class": "AnimationRootNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_tree_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "add_transition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transition", - "type": "AnimationNodeStateMachineTransition", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_end_node", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_graph_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node", - "return_type": "AnimationNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "AnimationNode", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_start_node", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transition", - "return_type": "AnimationNodeStateMachineTransition", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_transition_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transition_from", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_transition_to", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_node", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_transition", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_transition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_transition_by_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "replace_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "AnimationNode", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_end_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_graph_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_start_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeStateMachinePlayback", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_current_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_node", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_play_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_travel_path", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "start", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "travel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_node", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeStateMachineTransition", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "SWITCH_MODE_AT_END": 2, - "SWITCH_MODE_IMMEDIATE": 0, - "SWITCH_MODE_SYNC": 1 - }, - "properties": [ - { - "name": "advance_condition", - "type": "String", - "getter": "get_advance_condition", - "setter": "set_advance_condition", - "index": -1 - }, - { - "name": "auto_advance", - "type": "bool", - "getter": "has_auto_advance", - "setter": "set_auto_advance", - "index": -1 - }, - { - "name": "disabled", - "type": "bool", - "getter": "is_disabled", - "setter": "set_disabled", - "index": -1 - }, - { - "name": "priority", - "type": "int", - "getter": "get_priority", - "setter": "set_priority", - "index": -1 - }, - { - "name": "switch_mode", - "type": "int", - "getter": "get_switch_mode", - "setter": "set_switch_mode", - "index": -1 - }, - { - "name": "xfade_time", - "type": "float", - "getter": "get_xfade_time", - "setter": "set_xfade_time", - "index": -1 - } - ], - "signals": [ - { - "name": "advance_condition_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_advance_condition", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_switch_mode", - "return_type": "enum.AnimationNodeStateMachineTransition::SwitchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_xfade_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_auto_advance", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_advance_condition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_auto_advance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "auto_advance", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_switch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_xfade_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "SwitchMode", - "values": { - "SWITCH_MODE_IMMEDIATE": 0, - "SWITCH_MODE_SYNC": 1, - "SWITCH_MODE_AT_END": 2 - } - } - ] - }, - { - "name": "AnimationNodeTimeScale", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeTimeSeek", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AnimationNodeTransition", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "input_0/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 0 - }, - { - "name": "input_0/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 0 - }, - { - "name": "input_1/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 1 - }, - { - "name": "input_1/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 1 - }, - { - "name": "input_10/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 10 - }, - { - "name": "input_10/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 10 - }, - { - "name": "input_11/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 11 - }, - { - "name": "input_11/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 11 - }, - { - "name": "input_12/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 12 - }, - { - "name": "input_12/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 12 - }, - { - "name": "input_13/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 13 - }, - { - "name": "input_13/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 13 - }, - { - "name": "input_14/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 14 - }, - { - "name": "input_14/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 14 - }, - { - "name": "input_15/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 15 - }, - { - "name": "input_15/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 15 - }, - { - "name": "input_16/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 16 - }, - { - "name": "input_16/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 16 - }, - { - "name": "input_17/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 17 - }, - { - "name": "input_17/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 17 - }, - { - "name": "input_18/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 18 - }, - { - "name": "input_18/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 18 - }, - { - "name": "input_19/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 19 - }, - { - "name": "input_19/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 19 - }, - { - "name": "input_2/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 2 - }, - { - "name": "input_2/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 2 - }, - { - "name": "input_20/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 20 - }, - { - "name": "input_20/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 20 - }, - { - "name": "input_21/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 21 - }, - { - "name": "input_21/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 21 - }, - { - "name": "input_22/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 22 - }, - { - "name": "input_22/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 22 - }, - { - "name": "input_23/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 23 - }, - { - "name": "input_23/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 23 - }, - { - "name": "input_24/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 24 - }, - { - "name": "input_24/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 24 - }, - { - "name": "input_25/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 25 - }, - { - "name": "input_25/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 25 - }, - { - "name": "input_26/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 26 - }, - { - "name": "input_26/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 26 - }, - { - "name": "input_27/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 27 - }, - { - "name": "input_27/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 27 - }, - { - "name": "input_28/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 28 - }, - { - "name": "input_28/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 28 - }, - { - "name": "input_29/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 29 - }, - { - "name": "input_29/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 29 - }, - { - "name": "input_3/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 3 - }, - { - "name": "input_3/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 3 - }, - { - "name": "input_30/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 30 - }, - { - "name": "input_30/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 30 - }, - { - "name": "input_31/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 31 - }, - { - "name": "input_31/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 31 - }, - { - "name": "input_4/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 4 - }, - { - "name": "input_4/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 4 - }, - { - "name": "input_5/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 5 - }, - { - "name": "input_5/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 5 - }, - { - "name": "input_6/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 6 - }, - { - "name": "input_6/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 6 - }, - { - "name": "input_7/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 7 - }, - { - "name": "input_7/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 7 - }, - { - "name": "input_8/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 8 - }, - { - "name": "input_8/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 8 - }, - { - "name": "input_9/auto_advance", - "type": "bool", - "getter": "is_input_set_as_auto_advance", - "setter": "set_input_as_auto_advance", - "index": 9 - }, - { - "name": "input_9/name", - "type": "String", - "getter": "get_input_caption", - "setter": "set_input_caption", - "index": 9 - }, - { - "name": "input_count", - "type": "int", - "getter": "get_enabled_inputs", - "setter": "set_enabled_inputs", - "index": -1 - }, - { - "name": "xfade_time", - "type": "float", - "getter": "get_cross_fade_time", - "setter": "set_cross_fade_time", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cross_fade_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_enabled_inputs", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_input_caption", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_input_set_as_auto_advance", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cross_fade_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabled_inputs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_as_auto_advance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_caption", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "caption", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AnimationPlayer", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ANIMATION_METHOD_CALL_DEFERRED": 0, - "ANIMATION_METHOD_CALL_IMMEDIATE": 1, - "ANIMATION_PROCESS_IDLE": 1, - "ANIMATION_PROCESS_MANUAL": 2, - "ANIMATION_PROCESS_PHYSICS": 0 - }, - "properties": [ - { - "name": "assigned_animation", - "type": "String", - "getter": "get_assigned_animation", - "setter": "set_assigned_animation", - "index": -1 - }, - { - "name": "autoplay", - "type": "String", - "getter": "get_autoplay", - "setter": "set_autoplay", - "index": -1 - }, - { - "name": "current_animation", - "type": "String", - "getter": "get_current_animation", - "setter": "set_current_animation", - "index": -1 - }, - { - "name": "current_animation_length", - "type": "float", - "getter": "get_current_animation_length", - "setter": "", - "index": -1 - }, - { - "name": "current_animation_position", - "type": "float", - "getter": "get_current_animation_position", - "setter": "", - "index": -1 - }, - { - "name": "method_call_mode", - "type": "int", - "getter": "get_method_call_mode", - "setter": "set_method_call_mode", - "index": -1 - }, - { - "name": "playback_active", - "type": "bool", - "getter": "is_active", - "setter": "set_active", - "index": -1 - }, - { - "name": "playback_default_blend_time", - "type": "float", - "getter": "get_default_blend_time", - "setter": "set_default_blend_time", - "index": -1 - }, - { - "name": "playback_process_mode", - "type": "int", - "getter": "get_animation_process_mode", - "setter": "set_animation_process_mode", - "index": -1 - }, - { - "name": "playback_speed", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - }, - { - "name": "reset_on_save", - "type": "bool", - "getter": "is_reset_on_save_enabled", - "setter": "set_reset_on_save_enabled", - "index": -1 - }, - { - "name": "root_node", - "type": "NodePath", - "getter": "get_root", - "setter": "set_root", - "index": -1 - } - ], - "signals": [ - { - "name": "animation_changed", - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_finished", - "arguments": [ - { - "name": "anim_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_started", - "arguments": [ - { - "name": "anim_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "caches_cleared", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_animation_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_node_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_animation", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "animation", - "type": "Animation", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "advance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_get_next", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim_from", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_set_next", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim_from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anim_to", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_caches", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_queue", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "find_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "animation", - "type": "Animation", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation", - "return_type": "Animation", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_animation_process_mode", - "return_type": "enum.AnimationPlayer::AnimationProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_assigned_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_autoplay", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim_from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anim_to", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_current_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_animation_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_animation_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_blend_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_method_call_mode", - "return_type": "enum.AnimationPlayer::AnimationMethodCallMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_playing_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_queue", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_animation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_reset_on_save_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "custom_blend", - "type": "float", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "custom_speed", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "from_end", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "play_backwards", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "custom_blend", - "type": "float", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "queue", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "newname", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "update", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_animation_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_assigned_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autoplay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim_from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anim_to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_blend_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_method_call_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_reset_on_save_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_root", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "reset", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - } - ], - "enums": [ - { - "name": "AnimationProcessMode", - "values": { - "ANIMATION_PROCESS_PHYSICS": 0, - "ANIMATION_PROCESS_IDLE": 1, - "ANIMATION_PROCESS_MANUAL": 2 - } - }, - { - "name": "AnimationMethodCallMode", - "values": { - "ANIMATION_METHOD_CALL_DEFERRED": 0, - "ANIMATION_METHOD_CALL_IMMEDIATE": 1 - } - } - ] - }, - { - "name": "AnimationRootNode", - "base_class": "AnimationNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AnimationTrackEditPlugin", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AnimationTree", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ANIMATION_PROCESS_IDLE": 1, - "ANIMATION_PROCESS_MANUAL": 2, - "ANIMATION_PROCESS_PHYSICS": 0 - }, - "properties": [ - { - "name": "active", - "type": "bool", - "getter": "is_active", - "setter": "set_active", - "index": -1 - }, - { - "name": "anim_player", - "type": "NodePath", - "getter": "get_animation_player", - "setter": "set_animation_player", - "index": -1 - }, - { - "name": "process_mode", - "type": "int", - "getter": "get_process_mode", - "setter": "set_process_mode", - "index": -1 - }, - { - "name": "root_motion_track", - "type": "NodePath", - "getter": "get_root_motion_track", - "setter": "set_root_motion_track", - "index": -1 - }, - { - "name": "tree_root", - "type": "AnimationRootNode", - "getter": "get_tree_root", - "setter": "set_tree_root", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_clear_caches", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_node_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_properties", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "advance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation_player", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_mode", - "return_type": "enum.AnimationTree::AnimationProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root_motion_track", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root_motion_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tree_root", - "return_type": "AnimationNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rename_parameter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_animation_player", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "root", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_root_motion_track", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tree_root", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "root", - "type": "AnimationNode", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AnimationProcessMode", - "values": { - "ANIMATION_PROCESS_PHYSICS": 0, - "ANIMATION_PROCESS_IDLE": 1, - "ANIMATION_PROCESS_MANUAL": 2 - } - } - ] - }, - { - "name": "AnimationTreePlayer", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ANIMATION_PROCESS_IDLE": 1, - "ANIMATION_PROCESS_PHYSICS": 0, - "NODE_ANIMATION": 1, - "NODE_BLEND2": 4, - "NODE_BLEND3": 5, - "NODE_BLEND4": 6, - "NODE_MIX": 3, - "NODE_ONESHOT": 2, - "NODE_OUTPUT": 0, - "NODE_TIMESCALE": 7, - "NODE_TIMESEEK": 8, - "NODE_TRANSITION": 9 - }, - "properties": [ - { - "name": "active", - "type": "bool", - "getter": "is_active", - "setter": "set_active", - "index": -1 - }, - { - "name": "base_path", - "type": "NodePath", - "getter": "get_base_path", - "setter": "set_base_path", - "index": -1 - }, - { - "name": "master_player", - "type": "NodePath", - "getter": "get_master_player", - "setter": "set_master_player", - "index": -1 - }, - { - "name": "playback_process_mode", - "type": "int", - "getter": "get_animation_process_mode", - "setter": "set_animation_process_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "advance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_node_get_animation", - "return_type": "Animation", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_node_get_master_animation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_node_get_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_node_set_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "animation", - "type": "Animation", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_node_set_filter_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "animation_node_set_master_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "source", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "are_nodes_connected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend2_node_get_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend2_node_set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend2_node_set_filter_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend3_node_get_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend3_node_set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend4_node_get_amount", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend4_node_set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "connect_nodes", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "disconnect_nodes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation_process_mode", - "return_type": "enum.AnimationTreePlayer::AnimationProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_master_player", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "mix_node_get_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mix_node_set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_exists", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_get_input_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_get_input_source", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_get_type", - "return_type": "enum.AnimationTreePlayer::NodeType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_rename", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "screen_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_get_autorestart_delay", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_get_autorestart_random_delay", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_get_fadein_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_get_fadeout_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_has_autorestart", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_set_autorestart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_set_autorestart_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delay_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_set_autorestart_random_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rand_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_set_fadein_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_set_fadeout_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_set_filter_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_start", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "oneshot_node_stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "recompute_caches", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_animation_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_master_player", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nodepath", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "timescale_node_get_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "timescale_node_set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "timeseek_node_seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_delete_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_get_current", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_get_input_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_get_xfade_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_has_input_auto_advance", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_set_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_set_input_auto_advance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_set_input_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "transition_node_set_xfade_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AnimationProcessMode", - "values": { - "ANIMATION_PROCESS_PHYSICS": 0, - "ANIMATION_PROCESS_IDLE": 1 - } - }, - { - "name": "NodeType", - "values": { - "NODE_OUTPUT": 0, - "NODE_ANIMATION": 1, - "NODE_ONESHOT": 2, - "NODE_MIX": 3, - "NODE_BLEND2": 4, - "NODE_BLEND3": 5, - "NODE_BLEND4": 6, - "NODE_TIMESCALE": 7, - "NODE_TIMESEEK": 8, - "NODE_TRANSITION": 9 - } - } - ] - }, - { - "name": "Area", - "base_class": "CollisionObject", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "SPACE_OVERRIDE_COMBINE": 1, - "SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "SPACE_OVERRIDE_DISABLED": 0, - "SPACE_OVERRIDE_REPLACE": 3, - "SPACE_OVERRIDE_REPLACE_COMBINE": 4 - }, - "properties": [ - { - "name": "angular_damp", - "type": "float", - "getter": "get_angular_damp", - "setter": "set_angular_damp", - "index": -1 - }, - { - "name": "audio_bus_name", - "type": "String", - "getter": "get_audio_bus", - "setter": "set_audio_bus", - "index": -1 - }, - { - "name": "audio_bus_override", - "type": "bool", - "getter": "is_overriding_audio_bus", - "setter": "set_audio_bus_override", - "index": -1 - }, - { - "name": "gravity", - "type": "float", - "getter": "get_gravity", - "setter": "set_gravity", - "index": -1 - }, - { - "name": "gravity_distance_scale", - "type": "float", - "getter": "get_gravity_distance_scale", - "setter": "set_gravity_distance_scale", - "index": -1 - }, - { - "name": "gravity_point", - "type": "bool", - "getter": "is_gravity_a_point", - "setter": "set_gravity_is_point", - "index": -1 - }, - { - "name": "gravity_vec", - "type": "Vector3", - "getter": "get_gravity_vector", - "setter": "set_gravity_vector", - "index": -1 - }, - { - "name": "linear_damp", - "type": "float", - "getter": "get_linear_damp", - "setter": "set_linear_damp", - "index": -1 - }, - { - "name": "monitorable", - "type": "bool", - "getter": "is_monitorable", - "setter": "set_monitorable", - "index": -1 - }, - { - "name": "monitoring", - "type": "bool", - "getter": "is_monitoring", - "setter": "set_monitoring", - "index": -1 - }, - { - "name": "priority", - "type": "int", - "getter": "get_priority", - "setter": "set_priority", - "index": -1 - }, - { - "name": "reverb_bus_amount", - "type": "float", - "getter": "get_reverb_amount", - "setter": "set_reverb_amount", - "index": -1 - }, - { - "name": "reverb_bus_enable", - "type": "bool", - "getter": "is_using_reverb_bus", - "setter": "set_use_reverb_bus", - "index": -1 - }, - { - "name": "reverb_bus_name", - "type": "String", - "getter": "get_reverb_bus", - "setter": "set_reverb_bus", - "index": -1 - }, - { - "name": "reverb_bus_uniformity", - "type": "float", - "getter": "get_reverb_uniformity", - "setter": "set_reverb_uniformity", - "index": -1 - }, - { - "name": "space_override", - "type": "int", - "getter": "get_space_override_mode", - "setter": "set_space_override_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "area_entered", - "arguments": [ - { - "name": "area", - "type": "Area", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_exited", - "arguments": [ - { - "name": "area", - "type": "Area", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_shape_entered", - "arguments": [ - { - "name": "area_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area", - "type": "Area", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_shape_exited", - "arguments": [ - { - "name": "area_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area", - "type": "Area", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_area_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_area_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_area_inout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg4", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_inout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg4", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angular_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_audio_bus", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_distance_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_vector", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_overlapping_areas", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_overlapping_bodies", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_priority", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_reverb_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_reverb_bus", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_reverb_uniformity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space_override_mode", - "return_type": "enum.Area::SpaceOverride", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_gravity_a_point", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_monitorable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_monitoring", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_overriding_audio_bus", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_reverb_bus", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "overlaps_area", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "overlaps_body", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_angular_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_audio_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_audio_bus_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gravity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_distance_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_is_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_vector", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vector", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_monitorable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_monitoring", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_reverb_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_reverb_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_reverb_uniformity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_space_override_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_reverb_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "SpaceOverride", - "values": { - "SPACE_OVERRIDE_DISABLED": 0, - "SPACE_OVERRIDE_COMBINE": 1, - "SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "SPACE_OVERRIDE_REPLACE": 3, - "SPACE_OVERRIDE_REPLACE_COMBINE": 4 - } - } - ] - }, - { - "name": "Area2D", - "base_class": "CollisionObject2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "SPACE_OVERRIDE_COMBINE": 1, - "SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "SPACE_OVERRIDE_DISABLED": 0, - "SPACE_OVERRIDE_REPLACE": 3, - "SPACE_OVERRIDE_REPLACE_COMBINE": 4 - }, - "properties": [ - { - "name": "angular_damp", - "type": "float", - "getter": "get_angular_damp", - "setter": "set_angular_damp", - "index": -1 - }, - { - "name": "audio_bus_name", - "type": "String", - "getter": "get_audio_bus_name", - "setter": "set_audio_bus_name", - "index": -1 - }, - { - "name": "audio_bus_override", - "type": "bool", - "getter": "is_overriding_audio_bus", - "setter": "set_audio_bus_override", - "index": -1 - }, - { - "name": "gravity", - "type": "float", - "getter": "get_gravity", - "setter": "set_gravity", - "index": -1 - }, - { - "name": "gravity_distance_scale", - "type": "float", - "getter": "get_gravity_distance_scale", - "setter": "set_gravity_distance_scale", - "index": -1 - }, - { - "name": "gravity_point", - "type": "bool", - "getter": "is_gravity_a_point", - "setter": "set_gravity_is_point", - "index": -1 - }, - { - "name": "gravity_vec", - "type": "Vector2", - "getter": "get_gravity_vector", - "setter": "set_gravity_vector", - "index": -1 - }, - { - "name": "linear_damp", - "type": "float", - "getter": "get_linear_damp", - "setter": "set_linear_damp", - "index": -1 - }, - { - "name": "monitorable", - "type": "bool", - "getter": "is_monitorable", - "setter": "set_monitorable", - "index": -1 - }, - { - "name": "monitoring", - "type": "bool", - "getter": "is_monitoring", - "setter": "set_monitoring", - "index": -1 - }, - { - "name": "priority", - "type": "int", - "getter": "get_priority", - "setter": "set_priority", - "index": -1 - }, - { - "name": "space_override", - "type": "int", - "getter": "get_space_override_mode", - "setter": "set_space_override_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "area_entered", - "arguments": [ - { - "name": "area", - "type": "Area2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_exited", - "arguments": [ - { - "name": "area", - "type": "Area2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_shape_entered", - "arguments": [ - { - "name": "area_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area", - "type": "Area2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_shape_exited", - "arguments": [ - { - "name": "area_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area", - "type": "Area2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_area_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_area_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_area_inout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg4", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_inout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg4", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angular_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_audio_bus_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_distance_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_vector", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_overlapping_areas", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_overlapping_bodies", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_priority", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space_override_mode", - "return_type": "enum.Area2D::SpaceOverride", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_gravity_a_point", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_monitorable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_monitoring", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_overriding_audio_bus", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "overlaps_area", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "overlaps_body", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_angular_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_audio_bus_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_audio_bus_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gravity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_distance_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_is_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_vector", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vector", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_monitorable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_monitoring", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_space_override_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space_override_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "SpaceOverride", - "values": { - "SPACE_OVERRIDE_DISABLED": 0, - "SPACE_OVERRIDE_COMBINE": 1, - "SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "SPACE_OVERRIDE_REPLACE": 3, - "SPACE_OVERRIDE_REPLACE_COMBINE": 4 - } - } - ] - }, - { - "name": "ArrayMesh", - "base_class": "Mesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "ARRAY_BONES": 6, - "ARRAY_COLOR": 3, - "ARRAY_FORMAT_BONES": 64, - "ARRAY_FORMAT_COLOR": 8, - "ARRAY_FORMAT_INDEX": 256, - "ARRAY_FORMAT_NORMAL": 2, - "ARRAY_FORMAT_TANGENT": 4, - "ARRAY_FORMAT_TEX_UV": 16, - "ARRAY_FORMAT_TEX_UV2": 32, - "ARRAY_FORMAT_VERTEX": 1, - "ARRAY_FORMAT_WEIGHTS": 128, - "ARRAY_INDEX": 8, - "ARRAY_MAX": 9, - "ARRAY_NORMAL": 1, - "ARRAY_TANGENT": 2, - "ARRAY_TEX_UV": 4, - "ARRAY_TEX_UV2": 5, - "ARRAY_VERTEX": 0, - "ARRAY_WEIGHTS": 7, - "ARRAY_WEIGHTS_SIZE": 4, - "NO_INDEX_ARRAY": -1 - }, - "properties": [ - { - "name": "blend_shape_mode", - "type": "int", - "getter": "get_blend_shape_mode", - "setter": "set_blend_shape_mode", - "index": -1 - }, - { - "name": "custom_aabb", - "type": "AABB", - "getter": "get_custom_aabb", - "setter": "set_custom_aabb", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_blend_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_surface_from_arrays", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "primitive", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arrays", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend_shapes", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "compress_flags", - "type": "int", - "has_default_value": true, - "default_value": "2194432" - } - ] - }, - { - "name": "clear_blend_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_surfaces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_shape_mode", - "return_type": "enum.Mesh::BlendShapeMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_shape_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_custom_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "lightmap_unwrap", - "return_type": "enum.Error", - "is_editor": true, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texel_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "regen_normalmaps", - "return_type": "void", - "is_editor": true, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_blend_shape_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_shape_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_find_by_name", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_array_index_len", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_array_len", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_format", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_primitive_type", - "return_type": "enum.Mesh::PrimitiveType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_remove", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_set_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_update_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ArrayFormat", - "values": { - "ARRAY_FORMAT_VERTEX": 1, - "ARRAY_FORMAT_NORMAL": 2, - "ARRAY_FORMAT_TANGENT": 4, - "ARRAY_FORMAT_COLOR": 8, - "ARRAY_FORMAT_TEX_UV": 16, - "ARRAY_FORMAT_TEX_UV2": 32, - "ARRAY_FORMAT_BONES": 64, - "ARRAY_FORMAT_WEIGHTS": 128, - "ARRAY_FORMAT_INDEX": 256 - } - }, - { - "name": "ArrayType", - "values": { - "ARRAY_VERTEX": 0, - "ARRAY_NORMAL": 1, - "ARRAY_TANGENT": 2, - "ARRAY_COLOR": 3, - "ARRAY_TEX_UV": 4, - "ARRAY_TEX_UV2": 5, - "ARRAY_BONES": 6, - "ARRAY_WEIGHTS": 7, - "ARRAY_INDEX": 8, - "ARRAY_MAX": 9 - } - } - ] - }, - { - "name": "AspectRatioContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_BEGIN": 0, - "ALIGN_CENTER": 1, - "ALIGN_END": 2, - "STRETCH_COVER": 3, - "STRETCH_FIT": 2, - "STRETCH_HEIGHT_CONTROLS_WIDTH": 1, - "STRETCH_WIDTH_CONTROLS_HEIGHT": 0 - }, - "properties": [ - { - "name": "alignment_horizontal", - "type": "int", - "getter": "get_alignment_horizontal", - "setter": "set_alignment_horizontal", - "index": -1 - }, - { - "name": "alignment_vertical", - "type": "int", - "getter": "get_alignment_vertical", - "setter": "set_alignment_vertical", - "index": -1 - }, - { - "name": "ratio", - "type": "float", - "getter": "get_ratio", - "setter": "set_ratio", - "index": -1 - }, - { - "name": "stretch_mode", - "type": "int", - "getter": "get_stretch_mode", - "setter": "set_stretch_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_alignment_horizontal", - "return_type": "enum.AspectRatioContainer::AlignMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_alignment_vertical", - "return_type": "enum.AspectRatioContainer::AlignMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stretch_mode", - "return_type": "enum.AspectRatioContainer::StretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_alignment_horizontal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "alignment_horizontal", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_alignment_vertical", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "alignment_vertical", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stretch_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AlignMode", - "values": { - "ALIGN_BEGIN": 0, - "ALIGN_CENTER": 1, - "ALIGN_END": 2 - } - }, - { - "name": "StretchMode", - "values": { - "STRETCH_WIDTH_CONTROLS_HEIGHT": 0, - "STRETCH_HEIGHT_CONTROLS_WIDTH": 1, - "STRETCH_FIT": 2, - "STRETCH_COVER": 3 - } - } - ] - }, - { - "name": "AtlasTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "atlas", - "type": "Texture", - "getter": "get_atlas", - "setter": "set_atlas", - "index": -1 - }, - { - "name": "filter_clip", - "type": "bool", - "getter": "has_filter_clip", - "setter": "set_filter_clip", - "index": -1 - }, - { - "name": "margin", - "type": "Rect2", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - }, - { - "name": "region", - "type": "Rect2", - "getter": "get_region", - "setter": "set_region", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_atlas", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_region", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_filter_clip", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_atlas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "atlas", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filter_clip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioBusLayout", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffect", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectAmplify", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "volume_db", - "type": "float", - "getter": "get_volume_db", - "setter": "set_volume_db", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_volume_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_volume_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "volume", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectBandLimitFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectBandPassFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectCapture", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "buffer_length", - "type": "float", - "getter": "get_buffer_length", - "setter": "set_buffer_length", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "can_get_buffer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_buffer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffer", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_buffer_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffer_length_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_discarded_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frames_available", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pushed_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_buffer_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer_length_seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectChorus", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "dry", - "type": "float", - "getter": "get_dry", - "setter": "set_dry", - "index": -1 - }, - { - "name": "voice/1/cutoff_hz", - "type": "float", - "getter": "get_voice_cutoff_hz", - "setter": "set_voice_cutoff_hz", - "index": 0 - }, - { - "name": "voice/1/delay_ms", - "type": "float", - "getter": "get_voice_delay_ms", - "setter": "set_voice_delay_ms", - "index": 0 - }, - { - "name": "voice/1/depth_ms", - "type": "float", - "getter": "get_voice_depth_ms", - "setter": "set_voice_depth_ms", - "index": 0 - }, - { - "name": "voice/1/level_db", - "type": "float", - "getter": "get_voice_level_db", - "setter": "set_voice_level_db", - "index": 0 - }, - { - "name": "voice/1/pan", - "type": "float", - "getter": "get_voice_pan", - "setter": "set_voice_pan", - "index": 0 - }, - { - "name": "voice/1/rate_hz", - "type": "float", - "getter": "get_voice_rate_hz", - "setter": "set_voice_rate_hz", - "index": 0 - }, - { - "name": "voice/2/cutoff_hz", - "type": "float", - "getter": "get_voice_cutoff_hz", - "setter": "set_voice_cutoff_hz", - "index": 1 - }, - { - "name": "voice/2/delay_ms", - "type": "float", - "getter": "get_voice_delay_ms", - "setter": "set_voice_delay_ms", - "index": 1 - }, - { - "name": "voice/2/depth_ms", - "type": "float", - "getter": "get_voice_depth_ms", - "setter": "set_voice_depth_ms", - "index": 1 - }, - { - "name": "voice/2/level_db", - "type": "float", - "getter": "get_voice_level_db", - "setter": "set_voice_level_db", - "index": 1 - }, - { - "name": "voice/2/pan", - "type": "float", - "getter": "get_voice_pan", - "setter": "set_voice_pan", - "index": 1 - }, - { - "name": "voice/2/rate_hz", - "type": "float", - "getter": "get_voice_rate_hz", - "setter": "set_voice_rate_hz", - "index": 1 - }, - { - "name": "voice/3/cutoff_hz", - "type": "float", - "getter": "get_voice_cutoff_hz", - "setter": "set_voice_cutoff_hz", - "index": 2 - }, - { - "name": "voice/3/delay_ms", - "type": "float", - "getter": "get_voice_delay_ms", - "setter": "set_voice_delay_ms", - "index": 2 - }, - { - "name": "voice/3/depth_ms", - "type": "float", - "getter": "get_voice_depth_ms", - "setter": "set_voice_depth_ms", - "index": 2 - }, - { - "name": "voice/3/level_db", - "type": "float", - "getter": "get_voice_level_db", - "setter": "set_voice_level_db", - "index": 2 - }, - { - "name": "voice/3/pan", - "type": "float", - "getter": "get_voice_pan", - "setter": "set_voice_pan", - "index": 2 - }, - { - "name": "voice/3/rate_hz", - "type": "float", - "getter": "get_voice_rate_hz", - "setter": "set_voice_rate_hz", - "index": 2 - }, - { - "name": "voice/4/cutoff_hz", - "type": "float", - "getter": "get_voice_cutoff_hz", - "setter": "set_voice_cutoff_hz", - "index": 3 - }, - { - "name": "voice/4/delay_ms", - "type": "float", - "getter": "get_voice_delay_ms", - "setter": "set_voice_delay_ms", - "index": 3 - }, - { - "name": "voice/4/depth_ms", - "type": "float", - "getter": "get_voice_depth_ms", - "setter": "set_voice_depth_ms", - "index": 3 - }, - { - "name": "voice/4/level_db", - "type": "float", - "getter": "get_voice_level_db", - "setter": "set_voice_level_db", - "index": 3 - }, - { - "name": "voice/4/pan", - "type": "float", - "getter": "get_voice_pan", - "setter": "set_voice_pan", - "index": 3 - }, - { - "name": "voice/4/rate_hz", - "type": "float", - "getter": "get_voice_rate_hz", - "setter": "set_voice_rate_hz", - "index": 3 - }, - { - "name": "voice_count", - "type": "int", - "getter": "get_voice_count", - "setter": "set_voice_count", - "index": -1 - }, - { - "name": "wet", - "type": "float", - "getter": "get_wet", - "setter": "set_wet", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_dry", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_voice_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_voice_cutoff_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_voice_delay_ms", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_voice_depth_ms", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_voice_level_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_voice_pan", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_voice_rate_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_wet", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_dry", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voices", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_cutoff_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cutoff_hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_delay_ms", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delay_ms", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_depth_ms", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth_ms", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_level_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "level_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_pan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pan", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_voice_rate_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "voice_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rate_hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_wet", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectCompressor", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "attack_us", - "type": "float", - "getter": "get_attack_us", - "setter": "set_attack_us", - "index": -1 - }, - { - "name": "gain", - "type": "float", - "getter": "get_gain", - "setter": "set_gain", - "index": -1 - }, - { - "name": "mix", - "type": "float", - "getter": "get_mix", - "setter": "set_mix", - "index": -1 - }, - { - "name": "ratio", - "type": "float", - "getter": "get_ratio", - "setter": "set_ratio", - "index": -1 - }, - { - "name": "release_ms", - "type": "float", - "getter": "get_release_ms", - "setter": "set_release_ms", - "index": -1 - }, - { - "name": "sidechain", - "type": "String", - "getter": "get_sidechain", - "setter": "set_sidechain", - "index": -1 - }, - { - "name": "threshold", - "type": "float", - "getter": "get_threshold", - "setter": "set_threshold", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_attack_us", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gain", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mix", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_release_ms", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sidechain", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_threshold", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_attack_us", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "attack_us", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gain", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gain", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mix", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_release_ms", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "release_ms", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sidechain", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sidechain", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_threshold", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "threshold", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectDelay", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "dry", - "type": "float", - "getter": "get_dry", - "setter": "set_dry", - "index": -1 - }, - { - "name": "feedback/active", - "type": "bool", - "getter": "is_feedback_active", - "setter": "set_feedback_active", - "index": -1 - }, - { - "name": "feedback/delay_ms", - "type": "float", - "getter": "get_feedback_delay_ms", - "setter": "set_feedback_delay_ms", - "index": -1 - }, - { - "name": "feedback/level_db", - "type": "float", - "getter": "get_feedback_level_db", - "setter": "set_feedback_level_db", - "index": -1 - }, - { - "name": "feedback/lowpass", - "type": "float", - "getter": "get_feedback_lowpass", - "setter": "set_feedback_lowpass", - "index": -1 - }, - { - "name": "tap1/active", - "type": "bool", - "getter": "is_tap1_active", - "setter": "set_tap1_active", - "index": -1 - }, - { - "name": "tap1/delay_ms", - "type": "float", - "getter": "get_tap1_delay_ms", - "setter": "set_tap1_delay_ms", - "index": -1 - }, - { - "name": "tap1/level_db", - "type": "float", - "getter": "get_tap1_level_db", - "setter": "set_tap1_level_db", - "index": -1 - }, - { - "name": "tap1/pan", - "type": "float", - "getter": "get_tap1_pan", - "setter": "set_tap1_pan", - "index": -1 - }, - { - "name": "tap2/active", - "type": "bool", - "getter": "is_tap2_active", - "setter": "set_tap2_active", - "index": -1 - }, - { - "name": "tap2/delay_ms", - "type": "float", - "getter": "get_tap2_delay_ms", - "setter": "set_tap2_delay_ms", - "index": -1 - }, - { - "name": "tap2/level_db", - "type": "float", - "getter": "get_tap2_level_db", - "setter": "set_tap2_level_db", - "index": -1 - }, - { - "name": "tap2/pan", - "type": "float", - "getter": "get_tap2_pan", - "setter": "set_tap2_pan", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_dry", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_feedback_delay_ms", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_feedback_level_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_feedback_lowpass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap1_delay_ms", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap1_level_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap1_pan", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap2_delay_ms", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap2_level_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap2_pan", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_feedback_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_tap1_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_tap2_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_dry", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_feedback_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_feedback_delay_ms", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_feedback_level_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_feedback_lowpass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap1_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap1_delay_ms", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap1_level_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap1_pan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap2_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap2_delay_ms", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap2_level_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap2_pan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectDistortion", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MODE_ATAN": 1, - "MODE_CLIP": 0, - "MODE_LOFI": 2, - "MODE_OVERDRIVE": 3, - "MODE_WAVESHAPE": 4 - }, - "properties": [ - { - "name": "drive", - "type": "float", - "getter": "get_drive", - "setter": "set_drive", - "index": -1 - }, - { - "name": "keep_hf_hz", - "type": "float", - "getter": "get_keep_hf_hz", - "setter": "set_keep_hf_hz", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "post_gain", - "type": "float", - "getter": "get_post_gain", - "setter": "set_post_gain", - "index": -1 - }, - { - "name": "pre_gain", - "type": "float", - "getter": "get_pre_gain", - "setter": "set_pre_gain", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_drive", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_keep_hf_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.AudioEffectDistortion::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_post_gain", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pre_gain", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_drive", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "drive", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_keep_hf_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keep_hf_hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_post_gain", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "post_gain", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pre_gain", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pre_gain", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_CLIP": 0, - "MODE_ATAN": 1, - "MODE_LOFI": 2, - "MODE_OVERDRIVE": 3, - "MODE_WAVESHAPE": 4 - } - } - ] - }, - { - "name": "AudioEffectEQ", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_band_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_band_gain_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "band_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_band_gain_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "band_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "volume_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectEQ10", - "base_class": "AudioEffectEQ", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectEQ21", - "base_class": "AudioEffectEQ", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectEQ6", - "base_class": "AudioEffectEQ", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectFilter", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FILTER_12DB": 1, - "FILTER_18DB": 2, - "FILTER_24DB": 3, - "FILTER_6DB": 0 - }, - "properties": [ - { - "name": "cutoff_hz", - "type": "float", - "getter": "get_cutoff", - "setter": "set_cutoff", - "index": -1 - }, - { - "name": "db", - "type": "int", - "getter": "get_db", - "setter": "set_db", - "index": -1 - }, - { - "name": "gain", - "type": "float", - "getter": "get_gain", - "setter": "set_gain", - "index": -1 - }, - { - "name": "resonance", - "type": "float", - "getter": "get_resonance", - "setter": "set_resonance", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cutoff", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_db", - "return_type": "enum.AudioEffectFilter::FilterDB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gain", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resonance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cutoff", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "freq", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gain", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_resonance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FilterDB", - "values": { - "FILTER_6DB": 0, - "FILTER_12DB": 1, - "FILTER_18DB": 2, - "FILTER_24DB": 3 - } - } - ] - }, - { - "name": "AudioEffectHighPassFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectHighShelfFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectInstance", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectLimiter", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "ceiling_db", - "type": "float", - "getter": "get_ceiling_db", - "setter": "set_ceiling_db", - "index": -1 - }, - { - "name": "soft_clip_db", - "type": "float", - "getter": "get_soft_clip_db", - "setter": "set_soft_clip_db", - "index": -1 - }, - { - "name": "soft_clip_ratio", - "type": "float", - "getter": "get_soft_clip_ratio", - "setter": "set_soft_clip_ratio", - "index": -1 - }, - { - "name": "threshold_db", - "type": "float", - "getter": "get_threshold_db", - "setter": "set_threshold_db", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_ceiling_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_soft_clip_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_soft_clip_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_threshold_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_ceiling_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ceiling", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_soft_clip_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "soft_clip", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_soft_clip_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "soft_clip", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_threshold_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "threshold", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectLowPassFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectLowShelfFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectNotchFilter", - "base_class": "AudioEffectFilter", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioEffectPanner", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "pan", - "type": "float", - "getter": "get_pan", - "setter": "set_pan", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_pan", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_pan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cpanume", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectPhaser", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "depth", - "type": "float", - "getter": "get_depth", - "setter": "set_depth", - "index": -1 - }, - { - "name": "feedback", - "type": "float", - "getter": "get_feedback", - "setter": "set_feedback", - "index": -1 - }, - { - "name": "range_max_hz", - "type": "float", - "getter": "get_range_max_hz", - "setter": "set_range_max_hz", - "index": -1 - }, - { - "name": "range_min_hz", - "type": "float", - "getter": "get_range_min_hz", - "setter": "set_range_min_hz", - "index": -1 - }, - { - "name": "rate_hz", - "type": "float", - "getter": "get_rate_hz", - "setter": "set_rate_hz", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_depth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_feedback", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_range_max_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_range_min_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rate_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_feedback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fbk", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_range_max_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_range_min_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rate_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectPitchShift", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FFT_SIZE_1024": 2, - "FFT_SIZE_2048": 3, - "FFT_SIZE_256": 0, - "FFT_SIZE_4096": 4, - "FFT_SIZE_512": 1, - "FFT_SIZE_MAX": 5 - }, - "properties": [ - { - "name": "fft_size", - "type": "int", - "getter": "get_fft_size", - "setter": "set_fft_size", - "index": -1 - }, - { - "name": "oversampling", - "type": "float", - "getter": "get_oversampling", - "setter": "set_oversampling", - "index": -1 - }, - { - "name": "pitch_scale", - "type": "float", - "getter": "get_pitch_scale", - "setter": "set_pitch_scale", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_fft_size", - "return_type": "enum.AudioEffectPitchShift::FFT_Size", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_oversampling", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pitch_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_fft_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_oversampling", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pitch_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rate", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FFT_Size", - "values": { - "FFT_SIZE_256": 0, - "FFT_SIZE_512": 1, - "FFT_SIZE_1024": 2, - "FFT_SIZE_2048": 3, - "FFT_SIZE_4096": 4, - "FFT_SIZE_MAX": 5 - } - } - ] - }, - { - "name": "AudioEffectRecord", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "format", - "type": "int", - "getter": "get_format", - "setter": "set_format", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_format", - "return_type": "enum.AudioStreamSample::Format", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_recording", - "return_type": "AudioStreamSample", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_recording_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_format", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_recording_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "record", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectReverb", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "damping", - "type": "float", - "getter": "get_damping", - "setter": "set_damping", - "index": -1 - }, - { - "name": "dry", - "type": "float", - "getter": "get_dry", - "setter": "set_dry", - "index": -1 - }, - { - "name": "hipass", - "type": "float", - "getter": "get_hpf", - "setter": "set_hpf", - "index": -1 - }, - { - "name": "predelay_feedback", - "type": "float", - "getter": "get_predelay_feedback", - "setter": "set_predelay_feedback", - "index": -1 - }, - { - "name": "predelay_msec", - "type": "float", - "getter": "get_predelay_msec", - "setter": "set_predelay_msec", - "index": -1 - }, - { - "name": "room_size", - "type": "float", - "getter": "get_room_size", - "setter": "set_room_size", - "index": -1 - }, - { - "name": "spread", - "type": "float", - "getter": "get_spread", - "setter": "set_spread", - "index": -1 - }, - { - "name": "wet", - "type": "float", - "getter": "get_wet", - "setter": "set_wet", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_damping", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dry", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hpf", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_predelay_feedback", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_predelay_msec", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_room_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spread", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_wet", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_damping", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dry", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hpf", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_predelay_feedback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feedback", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_predelay_msec", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_room_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spread", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_wet", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioEffectSpectrumAnalyzer", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FFT_SIZE_1024": 2, - "FFT_SIZE_2048": 3, - "FFT_SIZE_256": 0, - "FFT_SIZE_4096": 4, - "FFT_SIZE_512": 1, - "FFT_SIZE_MAX": 5 - }, - "properties": [ - { - "name": "buffer_length", - "type": "float", - "getter": "get_buffer_length", - "setter": "set_buffer_length", - "index": -1 - }, - { - "name": "fft_size", - "type": "int", - "getter": "get_fft_size", - "setter": "set_fft_size", - "index": -1 - }, - { - "name": "tap_back_pos", - "type": "float", - "getter": "get_tap_back_pos", - "setter": "set_tap_back_pos", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_buffer_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fft_size", - "return_type": "enum.AudioEffectSpectrumAnalyzer::FFT_Size", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tap_back_pos", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_buffer_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fft_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tap_back_pos", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FFT_Size", - "values": { - "FFT_SIZE_256": 0, - "FFT_SIZE_512": 1, - "FFT_SIZE_1024": 2, - "FFT_SIZE_2048": 3, - "FFT_SIZE_4096": 4, - "FFT_SIZE_MAX": 5 - } - } - ] - }, - { - "name": "AudioEffectSpectrumAnalyzerInstance", - "base_class": "AudioEffectInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "MAGNITUDE_AVERAGE": 0, - "MAGNITUDE_MAX": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_magnitude_for_frequency_range", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_hz", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_hz", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": true, - "default_value": "1" - } - ] - } - ], - "enums": [ - { - "name": "MagnitudeMode", - "values": { - "MAGNITUDE_AVERAGE": 0, - "MAGNITUDE_MAX": 1 - } - } - ] - }, - { - "name": "AudioEffectStereoEnhance", - "base_class": "AudioEffect", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "pan_pullout", - "type": "float", - "getter": "get_pan_pullout", - "setter": "set_pan_pullout", - "index": -1 - }, - { - "name": "surround", - "type": "float", - "getter": "get_surround", - "setter": "set_surround", - "index": -1 - }, - { - "name": "time_pullout_ms", - "type": "float", - "getter": "get_time_pullout", - "setter": "set_time_pullout", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_pan_pullout", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_surround", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_pullout", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_pan_pullout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_surround", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_time_pullout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "AudioServer", - "instanciable": false, - "is_reference": false, - "constants": { - "SPEAKER_MODE_STEREO": 0, - "SPEAKER_SURROUND_31": 1, - "SPEAKER_SURROUND_51": 2, - "SPEAKER_SURROUND_71": 3 - }, - "properties": [ - { - "name": "bus_count", - "type": "int", - "getter": "get_bus_count", - "setter": "set_bus_count", - "index": -1 - }, - { - "name": "device", - "type": "String", - "getter": "get_device", - "setter": "set_device", - "index": -1 - }, - { - "name": "global_rate_scale", - "type": "float", - "getter": "get_global_rate_scale", - "setter": "set_global_rate_scale", - "index": -1 - } - ], - "signals": [ - { - "name": "bus_layout_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "add_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "add_bus_effect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect", - "type": "AudioEffect", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "capture_get_device", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "capture_get_device_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "capture_set_device", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generate_bus_layout", - "return_type": "AudioBusLayout", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bus_channels", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bus_effect", - "return_type": "AudioEffect", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_effect_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_effect_instance", - "return_type": "AudioEffectInstance", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "channel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_bus_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_peak_volume_left_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_peak_volume_right_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_send", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus_volume_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_device", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_device_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_rate_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mix_rate", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_output_latency", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speaker_mode", - "return_type": "enum.AudioServer::SpeakerMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_since_last_mix", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_to_next_mix", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_bus_bypassing_effects", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_bus_effect_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_bus_mute", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_bus_solo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "move_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_bus_effect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_bypass_effects", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_effect_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_layout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_layout", - "type": "AudioBusLayout", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_mute", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_send", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "send", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_solo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus_volume_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "volume_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_device", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_rate_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "swap_bus_effects", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "by_effect_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unlock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "SpeakerMode", - "values": { - "SPEAKER_MODE_STEREO": 0, - "SPEAKER_SURROUND_31": 1, - "SPEAKER_SURROUND_51": 2, - "SPEAKER_SURROUND_71": 3 - } - } - ] - }, - { - "name": "AudioStream", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamGenerator", - "base_class": "AudioStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "buffer_length", - "type": "float", - "getter": "get_buffer_length", - "setter": "set_buffer_length", - "index": -1 - }, - { - "name": "mix_rate", - "type": "float", - "getter": "get_mix_rate", - "setter": "set_mix_rate", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_buffer_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mix_rate", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_buffer_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mix_rate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hz", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamGeneratorPlayback", - "base_class": "AudioStreamPlaybackResampled", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "can_push_buffer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_buffer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frames_available", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skips", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_buffer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_frame", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamMP3", - "base_class": "AudioStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data", - "type": "PoolByteArray", - "getter": "get_data", - "setter": "set_data", - "index": -1 - }, - { - "name": "loop", - "type": "bool", - "getter": "has_loop", - "setter": "set_loop", - "index": -1 - }, - { - "name": "loop_offset", - "type": "float", - "getter": "get_loop_offset", - "setter": "set_loop_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_data", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_loop_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamMicrophone", - "base_class": "AudioStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioStreamOGGVorbis", - "base_class": "AudioStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data", - "type": "PoolByteArray", - "getter": "get_data", - "setter": "set_data", - "index": -1 - }, - { - "name": "loop", - "type": "bool", - "getter": "has_loop", - "setter": "set_loop", - "index": -1 - }, - { - "name": "loop_offset", - "type": "float", - "getter": "get_loop_offset", - "setter": "set_loop_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_data", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_loop_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamPlayback", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioStreamPlaybackResampled", - "base_class": "AudioStreamPlayback", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "AudioStreamPlayer", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MIX_TARGET_CENTER": 2, - "MIX_TARGET_STEREO": 0, - "MIX_TARGET_SURROUND": 1 - }, - "properties": [ - { - "name": "autoplay", - "type": "bool", - "getter": "is_autoplay_enabled", - "setter": "set_autoplay", - "index": -1 - }, - { - "name": "bus", - "type": "String", - "getter": "get_bus", - "setter": "set_bus", - "index": -1 - }, - { - "name": "mix_target", - "type": "int", - "getter": "get_mix_target", - "setter": "set_mix_target", - "index": -1 - }, - { - "name": "pitch_scale", - "type": "float", - "getter": "get_pitch_scale", - "setter": "set_pitch_scale", - "index": -1 - }, - { - "name": "playing", - "type": "bool", - "getter": "is_playing", - "setter": "_set_playing", - "index": -1 - }, - { - "name": "stream", - "type": "AudioStream", - "getter": "get_stream", - "setter": "set_stream", - "index": -1 - }, - { - "name": "stream_paused", - "type": "bool", - "getter": "get_stream_paused", - "setter": "set_stream_paused", - "index": -1 - }, - { - "name": "volume_db", - "type": "float", - "getter": "get_volume_db", - "setter": "set_volume_db", - "index": -1 - } - ], - "signals": [ - { - "name": "finished", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_bus_layout_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_playing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bus", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mix_target", - "return_type": "enum.AudioStreamPlayer::MixTarget", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pitch_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_playback_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream", - "return_type": "AudioStream", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_paused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_playback", - "return_type": "AudioStreamPlayback", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_volume_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_autoplay_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_position", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autoplay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mix_target", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mix_target", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pitch_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pitch_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "AudioStream", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream_paused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pause", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_volume_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "volume_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "MixTarget", - "values": { - "MIX_TARGET_STEREO": 0, - "MIX_TARGET_SURROUND": 1, - "MIX_TARGET_CENTER": 2 - } - } - ] - }, - { - "name": "AudioStreamPlayer2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "area_mask", - "type": "int", - "getter": "get_area_mask", - "setter": "set_area_mask", - "index": -1 - }, - { - "name": "attenuation", - "type": "float", - "getter": "get_attenuation", - "setter": "set_attenuation", - "index": -1 - }, - { - "name": "autoplay", - "type": "bool", - "getter": "is_autoplay_enabled", - "setter": "set_autoplay", - "index": -1 - }, - { - "name": "bus", - "type": "String", - "getter": "get_bus", - "setter": "set_bus", - "index": -1 - }, - { - "name": "max_distance", - "type": "float", - "getter": "get_max_distance", - "setter": "set_max_distance", - "index": -1 - }, - { - "name": "pitch_scale", - "type": "float", - "getter": "get_pitch_scale", - "setter": "set_pitch_scale", - "index": -1 - }, - { - "name": "playing", - "type": "bool", - "getter": "is_playing", - "setter": "_set_playing", - "index": -1 - }, - { - "name": "stream", - "type": "AudioStream", - "getter": "get_stream", - "setter": "set_stream", - "index": -1 - }, - { - "name": "stream_paused", - "type": "bool", - "getter": "get_stream_paused", - "setter": "set_stream_paused", - "index": -1 - }, - { - "name": "volume_db", - "type": "float", - "getter": "get_volume_db", - "setter": "set_volume_db", - "index": -1 - } - ], - "signals": [ - { - "name": "finished", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_bus_layout_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_playing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_area_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_attenuation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bus", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pitch_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_playback_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream", - "return_type": "AudioStream", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_paused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_playback", - "return_type": "AudioStreamPlayback", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_volume_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_autoplay_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_position", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_area_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_attenuation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autoplay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pixels", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pitch_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pitch_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "AudioStream", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream_paused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pause", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_volume_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "volume_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamPlayer3D", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ATTENUATION_DISABLED": 3, - "ATTENUATION_INVERSE_DISTANCE": 0, - "ATTENUATION_INVERSE_SQUARE_DISTANCE": 1, - "ATTENUATION_LOGARITHMIC": 2, - "DOPPLER_TRACKING_DISABLED": 0, - "DOPPLER_TRACKING_IDLE_STEP": 1, - "DOPPLER_TRACKING_PHYSICS_STEP": 2, - "OUT_OF_RANGE_MIX": 0, - "OUT_OF_RANGE_PAUSE": 1 - }, - "properties": [ - { - "name": "area_mask", - "type": "int", - "getter": "get_area_mask", - "setter": "set_area_mask", - "index": -1 - }, - { - "name": "attenuation_filter_cutoff_hz", - "type": "float", - "getter": "get_attenuation_filter_cutoff_hz", - "setter": "set_attenuation_filter_cutoff_hz", - "index": -1 - }, - { - "name": "attenuation_filter_db", - "type": "float", - "getter": "get_attenuation_filter_db", - "setter": "set_attenuation_filter_db", - "index": -1 - }, - { - "name": "attenuation_model", - "type": "int", - "getter": "get_attenuation_model", - "setter": "set_attenuation_model", - "index": -1 - }, - { - "name": "autoplay", - "type": "bool", - "getter": "is_autoplay_enabled", - "setter": "set_autoplay", - "index": -1 - }, - { - "name": "bus", - "type": "String", - "getter": "get_bus", - "setter": "set_bus", - "index": -1 - }, - { - "name": "doppler_tracking", - "type": "int", - "getter": "get_doppler_tracking", - "setter": "set_doppler_tracking", - "index": -1 - }, - { - "name": "emission_angle_degrees", - "type": "float", - "getter": "get_emission_angle", - "setter": "set_emission_angle", - "index": -1 - }, - { - "name": "emission_angle_enabled", - "type": "bool", - "getter": "is_emission_angle_enabled", - "setter": "set_emission_angle_enabled", - "index": -1 - }, - { - "name": "emission_angle_filter_attenuation_db", - "type": "float", - "getter": "get_emission_angle_filter_attenuation_db", - "setter": "set_emission_angle_filter_attenuation_db", - "index": -1 - }, - { - "name": "max_db", - "type": "float", - "getter": "get_max_db", - "setter": "set_max_db", - "index": -1 - }, - { - "name": "max_distance", - "type": "float", - "getter": "get_max_distance", - "setter": "set_max_distance", - "index": -1 - }, - { - "name": "out_of_range_mode", - "type": "int", - "getter": "get_out_of_range_mode", - "setter": "set_out_of_range_mode", - "index": -1 - }, - { - "name": "pitch_scale", - "type": "float", - "getter": "get_pitch_scale", - "setter": "set_pitch_scale", - "index": -1 - }, - { - "name": "playing", - "type": "bool", - "getter": "is_playing", - "setter": "_set_playing", - "index": -1 - }, - { - "name": "stream", - "type": "AudioStream", - "getter": "get_stream", - "setter": "set_stream", - "index": -1 - }, - { - "name": "stream_paused", - "type": "bool", - "getter": "get_stream_paused", - "setter": "set_stream_paused", - "index": -1 - }, - { - "name": "unit_db", - "type": "float", - "getter": "get_unit_db", - "setter": "set_unit_db", - "index": -1 - }, - { - "name": "unit_size", - "type": "float", - "getter": "get_unit_size", - "setter": "set_unit_size", - "index": -1 - } - ], - "signals": [ - { - "name": "finished", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_bus_layout_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_playing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_area_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_attenuation_filter_cutoff_hz", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_attenuation_filter_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_attenuation_model", - "return_type": "enum.AudioStreamPlayer3D::AttenuationModel", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bus", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_doppler_tracking", - "return_type": "enum.AudioStreamPlayer3D::DopplerTracking", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_angle_filter_attenuation_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_out_of_range_mode", - "return_type": "enum.AudioStreamPlayer3D::OutOfRangeMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pitch_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_playback_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream", - "return_type": "AudioStream", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_paused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_playback", - "return_type": "AudioStreamPlayback", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unit_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unit_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_autoplay_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_emission_angle_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_position", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_area_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_attenuation_filter_cutoff_hz", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_attenuation_filter_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_attenuation_model", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "model", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autoplay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_doppler_tracking", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_angle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_angle_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_angle_filter_attenuation_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "metres", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_out_of_range_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pitch_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pitch_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "AudioStream", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream_paused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pause", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unit_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unit_db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unit_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unit_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "AttenuationModel", - "values": { - "ATTENUATION_INVERSE_DISTANCE": 0, - "ATTENUATION_INVERSE_SQUARE_DISTANCE": 1, - "ATTENUATION_LOGARITHMIC": 2, - "ATTENUATION_DISABLED": 3 - } - }, - { - "name": "OutOfRangeMode", - "values": { - "OUT_OF_RANGE_MIX": 0, - "OUT_OF_RANGE_PAUSE": 1 - } - }, - { - "name": "DopplerTracking", - "values": { - "DOPPLER_TRACKING_DISABLED": 0, - "DOPPLER_TRACKING_IDLE_STEP": 1, - "DOPPLER_TRACKING_PHYSICS_STEP": 2 - } - } - ] - }, - { - "name": "AudioStreamRandomPitch", - "base_class": "AudioStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "audio_stream", - "type": "AudioStream", - "getter": "get_audio_stream", - "setter": "set_audio_stream", - "index": -1 - }, - { - "name": "random_pitch", - "type": "float", - "getter": "get_random_pitch", - "setter": "set_random_pitch", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_audio_stream", - "return_type": "AudioStream", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_random_pitch", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_audio_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "AudioStream", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_random_pitch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "AudioStreamSample", - "base_class": "AudioStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FORMAT_16_BITS": 1, - "FORMAT_8_BITS": 0, - "FORMAT_IMA_ADPCM": 2, - "LOOP_BACKWARD": 3, - "LOOP_DISABLED": 0, - "LOOP_FORWARD": 1, - "LOOP_PING_PONG": 2 - }, - "properties": [ - { - "name": "data", - "type": "PoolByteArray", - "getter": "get_data", - "setter": "set_data", - "index": -1 - }, - { - "name": "format", - "type": "int", - "getter": "get_format", - "setter": "set_format", - "index": -1 - }, - { - "name": "loop_begin", - "type": "int", - "getter": "get_loop_begin", - "setter": "set_loop_begin", - "index": -1 - }, - { - "name": "loop_end", - "type": "int", - "getter": "get_loop_end", - "setter": "set_loop_end", - "index": -1 - }, - { - "name": "loop_mode", - "type": "int", - "getter": "get_loop_mode", - "setter": "set_loop_mode", - "index": -1 - }, - { - "name": "mix_rate", - "type": "int", - "getter": "get_mix_rate", - "setter": "set_mix_rate", - "index": -1 - }, - { - "name": "stereo", - "type": "bool", - "getter": "is_stereo", - "setter": "set_stereo", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_data", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_format", - "return_type": "enum.AudioStreamSample::Format", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_loop_begin", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_loop_end", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_loop_mode", - "return_type": "enum.AudioStreamSample::LoopMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mix_rate", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_stereo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "save_to_wav", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_format", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop_begin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop_end", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mix_rate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mix_rate", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stereo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stereo", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "LoopMode", - "values": { - "LOOP_DISABLED": 0, - "LOOP_FORWARD": 1, - "LOOP_PING_PONG": 2, - "LOOP_BACKWARD": 3 - } - }, - { - "name": "Format", - "values": { - "FORMAT_8_BITS": 0, - "FORMAT_16_BITS": 1, - "FORMAT_IMA_ADPCM": 2 - } - } - ] - }, - { - "name": "BackBufferCopy", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "COPY_MODE_DISABLED": 0, - "COPY_MODE_RECT": 1, - "COPY_MODE_VIEWPORT": 2 - }, - "properties": [ - { - "name": "copy_mode", - "type": "int", - "getter": "get_copy_mode", - "setter": "set_copy_mode", - "index": -1 - }, - { - "name": "rect", - "type": "Rect2", - "getter": "get_rect", - "setter": "set_rect", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_copy_mode", - "return_type": "enum.BackBufferCopy::CopyMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_copy_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "copy_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "CopyMode", - "values": { - "COPY_MODE_DISABLED": 0, - "COPY_MODE_RECT": 1, - "COPY_MODE_VIEWPORT": 2 - } - } - ] - }, - { - "name": "BakedLightmap", - "base_class": "VisualInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "BAKE_ERROR_CANT_CREATE_IMAGE": 3, - "BAKE_ERROR_INVALID_MESH": 5, - "BAKE_ERROR_LIGHTMAP_SIZE": 4, - "BAKE_ERROR_NO_LIGHTMAPPER": 7, - "BAKE_ERROR_NO_MESHES": 2, - "BAKE_ERROR_NO_ROOT": 8, - "BAKE_ERROR_NO_SAVE_PATH": 1, - "BAKE_ERROR_OK": 0, - "BAKE_ERROR_USER_ABORTED": 6, - "BAKE_QUALITY_HIGH": 2, - "BAKE_QUALITY_LOW": 0, - "BAKE_QUALITY_MEDIUM": 1, - "BAKE_QUALITY_ULTRA": 3, - "ENVIRONMENT_MODE_CUSTOM_COLOR": 3, - "ENVIRONMENT_MODE_CUSTOM_SKY": 2, - "ENVIRONMENT_MODE_DISABLED": 0, - "ENVIRONMENT_MODE_SCENE": 1 - }, - "properties": [ - { - "name": "atlas_generate", - "type": "bool", - "getter": "is_generate_atlas_enabled", - "setter": "set_generate_atlas", - "index": -1 - }, - { - "name": "atlas_max_size", - "type": "int", - "getter": "get_max_atlas_size", - "setter": "set_max_atlas_size", - "index": -1 - }, - { - "name": "bias", - "type": "float", - "getter": "get_bias", - "setter": "set_bias", - "index": -1 - }, - { - "name": "bounce_indirect_energy", - "type": "float", - "getter": "get_bounce_indirect_energy", - "setter": "set_bounce_indirect_energy", - "index": -1 - }, - { - "name": "bounces", - "type": "int", - "getter": "get_bounces", - "setter": "set_bounces", - "index": -1 - }, - { - "name": "capture_cell_size", - "type": "float", - "getter": "get_capture_cell_size", - "setter": "set_capture_cell_size", - "index": -1 - }, - { - "name": "capture_enabled", - "type": "bool", - "getter": "get_capture_enabled", - "setter": "set_capture_enabled", - "index": -1 - }, - { - "name": "capture_propagation", - "type": "float", - "getter": "get_capture_propagation", - "setter": "set_capture_propagation", - "index": -1 - }, - { - "name": "capture_quality", - "type": "int", - "getter": "get_capture_quality", - "setter": "set_capture_quality", - "index": -1 - }, - { - "name": "default_texels_per_unit", - "type": "float", - "getter": "get_default_texels_per_unit", - "setter": "set_default_texels_per_unit", - "index": -1 - }, - { - "name": "environment_custom_color", - "type": "Color", - "getter": "get_environment_custom_color", - "setter": "set_environment_custom_color", - "index": -1 - }, - { - "name": "environment_custom_energy", - "type": "float", - "getter": "get_environment_custom_energy", - "setter": "set_environment_custom_energy", - "index": -1 - }, - { - "name": "environment_custom_sky", - "type": "Sky", - "getter": "get_environment_custom_sky", - "setter": "set_environment_custom_sky", - "index": -1 - }, - { - "name": "environment_custom_sky_rotation_degrees", - "type": "Vector3", - "getter": "get_environment_custom_sky_rotation_degrees", - "setter": "set_environment_custom_sky_rotation_degrees", - "index": -1 - }, - { - "name": "environment_min_light", - "type": "Color", - "getter": "get_environment_min_light", - "setter": "set_environment_min_light", - "index": -1 - }, - { - "name": "environment_mode", - "type": "int", - "getter": "get_environment_mode", - "setter": "set_environment_mode", - "index": -1 - }, - { - "name": "extents", - "type": "Vector3", - "getter": "get_extents", - "setter": "set_extents", - "index": -1 - }, - { - "name": "image_path", - "type": "String", - "getter": "get_image_path", - "setter": "set_image_path", - "index": -1 - }, - { - "name": "light_data", - "type": "BakedLightmapData", - "getter": "get_light_data", - "setter": "set_light_data", - "index": -1 - }, - { - "name": "quality", - "type": "int", - "getter": "get_bake_quality", - "setter": "set_bake_quality", - "index": -1 - }, - { - "name": "use_color", - "type": "bool", - "getter": "is_using_color", - "setter": "set_use_color", - "index": -1 - }, - { - "name": "use_denoiser", - "type": "bool", - "getter": "is_using_denoiser", - "setter": "set_use_denoiser", - "index": -1 - }, - { - "name": "use_hdr", - "type": "bool", - "getter": "is_using_hdr", - "setter": "set_use_hdr", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "bake", - "return_type": "enum.BakedLightmap::BakeError", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_node", - "type": "Node", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "data_save_path", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_bake_quality", - "return_type": "enum.BakedLightmap::BakeQuality", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounce_indirect_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounces", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_capture_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_capture_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_capture_propagation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_capture_quality", - "return_type": "enum.BakedLightmap::BakeQuality", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_texels_per_unit", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment_custom_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment_custom_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment_custom_sky", - "return_type": "Sky", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment_custom_sky_rotation_degrees", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment_min_light", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment_mode", - "return_type": "enum.BakedLightmap::EnvironmentMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_extents", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_image_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_light_data", - "return_type": "BakedLightmapData", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_atlas_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_generate_atlas_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_color", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_denoiser", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_hdr", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bake_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "quality", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounce_indirect_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce_indirect_energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounces", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_capture_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture_cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_capture_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_capture_propagation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "propagation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_capture_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture_quality", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_texels_per_unit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texels", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment_custom_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment_custom_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment_custom_sky", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sky", - "type": "Sky", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment_custom_sky_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rotation", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment_min_light", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "min_light", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_generate_atlas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_image_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_light_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "BakedLightmapData", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_atlas_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_atlas_size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_denoiser", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_denoiser", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_denoiser", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_hdr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_denoiser", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BakeQuality", - "values": { - "BAKE_QUALITY_LOW": 0, - "BAKE_QUALITY_MEDIUM": 1, - "BAKE_QUALITY_HIGH": 2, - "BAKE_QUALITY_ULTRA": 3 - } - }, - { - "name": "BakeError", - "values": { - "BAKE_ERROR_OK": 0, - "BAKE_ERROR_NO_SAVE_PATH": 1, - "BAKE_ERROR_NO_MESHES": 2, - "BAKE_ERROR_CANT_CREATE_IMAGE": 3, - "BAKE_ERROR_LIGHTMAP_SIZE": 4, - "BAKE_ERROR_INVALID_MESH": 5, - "BAKE_ERROR_USER_ABORTED": 6, - "BAKE_ERROR_NO_LIGHTMAPPER": 7, - "BAKE_ERROR_NO_ROOT": 8 - } - }, - { - "name": "EnvironmentMode", - "values": { - "ENVIRONMENT_MODE_DISABLED": 0, - "ENVIRONMENT_MODE_SCENE": 1, - "ENVIRONMENT_MODE_CUSTOM_SKY": 2, - "ENVIRONMENT_MODE_CUSTOM_COLOR": 3 - } - } - ] - }, - { - "name": "BakedLightmapData", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "bounds", - "type": "AABB", - "getter": "get_bounds", - "setter": "set_bounds", - "index": -1 - }, - { - "name": "cell_space_transform", - "type": "Transform", - "getter": "get_cell_space_transform", - "setter": "set_cell_space_transform", - "index": -1 - }, - { - "name": "cell_subdiv", - "type": "int", - "getter": "get_cell_subdiv", - "setter": "set_cell_subdiv", - "index": -1 - }, - { - "name": "energy", - "type": "float", - "getter": "get_energy", - "setter": "set_energy", - "index": -1 - }, - { - "name": "interior", - "type": "bool", - "getter": "is_interior", - "setter": "set_interior", - "index": -1 - }, - { - "name": "octree", - "type": "PoolByteArray", - "getter": "get_octree", - "setter": "set_octree", - "index": -1 - }, - { - "name": "user_data", - "type": "Array", - "getter": "_get_user_data", - "setter": "_set_user_data", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_user_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_user_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_user", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lightmap", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lightmap_slice", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lightmap_uv_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_users", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounds", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_space_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_subdiv", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_octree", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_user_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_user_lightmap", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "user_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_user_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "user_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_interior", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bounds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounds", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_space_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_subdiv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cell_subdiv", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interior", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_octree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "octree", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "BaseButton", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "ACTION_MODE_BUTTON_PRESS": 0, - "ACTION_MODE_BUTTON_RELEASE": 1, - "DRAW_DISABLED": 3, - "DRAW_HOVER": 2, - "DRAW_HOVER_PRESSED": 4, - "DRAW_NORMAL": 0, - "DRAW_PRESSED": 1 - }, - "properties": [ - { - "name": "action_mode", - "type": "int", - "getter": "get_action_mode", - "setter": "set_action_mode", - "index": -1 - }, - { - "name": "button_mask", - "type": "int", - "getter": "get_button_mask", - "setter": "set_button_mask", - "index": -1 - }, - { - "name": "disabled", - "type": "bool", - "getter": "is_disabled", - "setter": "set_disabled", - "index": -1 - }, - { - "name": "enabled_focus_mode", - "type": "int", - "getter": "get_enabled_focus_mode", - "setter": "set_enabled_focus_mode", - "index": -1 - }, - { - "name": "group", - "type": "ButtonGroup", - "getter": "get_button_group", - "setter": "set_button_group", - "index": -1 - }, - { - "name": "keep_pressed_outside", - "type": "bool", - "getter": "is_keep_pressed_outside", - "setter": "set_keep_pressed_outside", - "index": -1 - }, - { - "name": "pressed", - "type": "bool", - "getter": "is_pressed", - "setter": "set_pressed", - "index": -1 - }, - { - "name": "shortcut", - "type": "ShortCut", - "getter": "get_shortcut", - "setter": "set_shortcut", - "index": -1 - }, - { - "name": "shortcut_in_tooltip", - "type": "bool", - "getter": "is_shortcut_in_tooltip_enabled", - "setter": "set_shortcut_in_tooltip", - "index": -1 - }, - { - "name": "toggle_mode", - "type": "bool", - "getter": "is_toggle_mode", - "setter": "set_toggle_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "button_down", - "arguments": [ - ] - }, - { - "name": "button_up", - "arguments": [ - ] - }, - { - "name": "pressed", - "arguments": [ - ] - }, - { - "name": "toggled", - "arguments": [ - { - "name": "button_pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_toggled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button_pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_action_mode", - "return_type": "enum.BaseButton::ActionMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_button_group", - "return_type": "ButtonGroup", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_button_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_mode", - "return_type": "enum.BaseButton::DrawMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_enabled_focus_mode", - "return_type": "enum.Control::FocusMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shortcut", - "return_type": "ShortCut", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_hovered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_keep_pressed_outside", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shortcut_in_tooltip_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_toggle_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_action_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_button_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button_group", - "type": "ButtonGroup", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_button_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabled_focus_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_keep_pressed_outside", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed_no_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shortcut_in_tooltip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_toggle_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ActionMode", - "values": { - "ACTION_MODE_BUTTON_PRESS": 0, - "ACTION_MODE_BUTTON_RELEASE": 1 - } - }, - { - "name": "DrawMode", - "values": { - "DRAW_NORMAL": 0, - "DRAW_PRESSED": 1, - "DRAW_HOVER": 2, - "DRAW_DISABLED": 3, - "DRAW_HOVER_PRESSED": 4 - } - } - ] - }, - { - "name": "BitMap", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data", - "type": "Dictionary", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_from_image_alpha", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "threshold", - "type": "float", - "has_default_value": true, - "default_value": "0.1" - } - ] - }, - { - "name": "get_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_true_bit_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "grow_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pixels", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "opaque_to_polygons", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "epsilon", - "type": "float", - "has_default_value": true, - "default_value": "2" - } - ] - }, - { - "name": "set_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bit", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bit_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bit", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "BitmapFont", - "base_class": "Font", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "ascent", - "type": "float", - "getter": "get_ascent", - "setter": "set_ascent", - "index": -1 - }, - { - "name": "chars", - "type": "PoolIntArray", - "getter": "_get_chars", - "setter": "_set_chars", - "index": -1 - }, - { - "name": "distance_field", - "type": "bool", - "getter": "is_distance_field_hint", - "setter": "set_distance_field_hint", - "index": -1 - }, - { - "name": "fallback", - "type": "BitmapFont", - "getter": "get_fallback", - "setter": "set_fallback", - "index": -1 - }, - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "kernings", - "type": "PoolIntArray", - "getter": "_get_kernings", - "setter": "_set_kernings", - "index": -1 - }, - { - "name": "textures", - "type": "Array", - "getter": "_get_textures", - "setter": "_set_textures", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_chars", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_kernings", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_textures", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_chars", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_kernings", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_textures", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_char", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "character", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "align", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "advance", - "type": "float", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "add_kerning_pair", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "char_a", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "char_b", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "kerning", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_from_fnt", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_fallback", - "return_type": "BitmapFont", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_kerning_pair", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "char_a", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "char_b", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_texture_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_ascent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "px", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_distance_field_hint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fallback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fallback", - "type": "BitmapFont", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "px", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Bone2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "default_length", - "type": "float", - "getter": "get_default_length", - "setter": "set_default_length", - "index": -1 - }, - { - "name": "rest", - "type": "Transform2D", - "getter": "get_rest", - "setter": "set_rest", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "apply_rest", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_index_in_skeleton", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rest", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton_rest", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "default_length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rest", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rest", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "BoneAttachment", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "bone_name", - "type": "String", - "getter": "get_bone_name", - "setter": "set_bone_name", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_bone_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bone_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "BoxContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "ALIGN_BEGIN": 0, - "ALIGN_CENTER": 1, - "ALIGN_END": 2 - }, - "properties": [ - { - "name": "alignment", - "type": "int", - "getter": "get_alignment", - "setter": "set_alignment", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_spacer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "begin", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_alignment", - "return_type": "enum.BoxContainer::AlignMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_alignment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "alignment", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AlignMode", - "values": { - "ALIGN_BEGIN": 0, - "ALIGN_CENTER": 1, - "ALIGN_END": 2 - } - } - ] - }, - { - "name": "BoxShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "extents", - "type": "Vector3", - "getter": "get_extents", - "setter": "set_extents", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_extents", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "BulletPhysicsServer", - "base_class": "PhysicsServer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Button", - "base_class": "BaseButton", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_LEFT": 0, - "ALIGN_RIGHT": 2 - }, - "properties": [ - { - "name": "align", - "type": "int", - "getter": "get_text_align", - "setter": "set_text_align", - "index": -1 - }, - { - "name": "clip_text", - "type": "bool", - "getter": "get_clip_text", - "setter": "set_clip_text", - "index": -1 - }, - { - "name": "expand_icon", - "type": "bool", - "getter": "is_expand_icon", - "setter": "set_expand_icon", - "index": -1 - }, - { - "name": "flat", - "type": "bool", - "getter": "is_flat", - "setter": "set_flat", - "index": -1 - }, - { - "name": "icon", - "type": "Texture", - "getter": "get_button_icon", - "setter": "set_button_icon", - "index": -1 - }, - { - "name": "text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_button_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_clip_text", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text_align", - "return_type": "enum.Button::TextAlign", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_expand_icon", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flat", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_button_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flat", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TextAlign", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2 - } - } - ] - }, - { - "name": "ButtonGroup", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "pressed", - "arguments": [ - { - "name": "button", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_buttons", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pressed_button", - "return_type": "BaseButton", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "CPUParticles", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1, - "DRAW_ORDER_VIEW_DEPTH": 2, - "EMISSION_SHAPE_BOX": 2, - "EMISSION_SHAPE_DIRECTED_POINTS": 4, - "EMISSION_SHAPE_MAX": 6, - "EMISSION_SHAPE_POINT": 0, - "EMISSION_SHAPE_POINTS": 3, - "EMISSION_SHAPE_RING": 5, - "EMISSION_SHAPE_SPHERE": 1, - "FLAG_ALIGN_Y_TO_VELOCITY": 0, - "FLAG_DISABLE_Z": 2, - "FLAG_MAX": 3, - "FLAG_ROTATE_Y": 1, - "PARAM_ANGLE": 7, - "PARAM_ANGULAR_VELOCITY": 1, - "PARAM_ANIM_OFFSET": 11, - "PARAM_ANIM_SPEED": 10, - "PARAM_DAMPING": 6, - "PARAM_HUE_VARIATION": 9, - "PARAM_INITIAL_LINEAR_VELOCITY": 0, - "PARAM_LINEAR_ACCEL": 3, - "PARAM_MAX": 12, - "PARAM_ORBIT_VELOCITY": 2, - "PARAM_RADIAL_ACCEL": 4, - "PARAM_SCALE": 8, - "PARAM_TANGENTIAL_ACCEL": 5 - }, - "properties": [ - { - "name": "amount", - "type": "int", - "getter": "get_amount", - "setter": "set_amount", - "index": -1 - }, - { - "name": "angle", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 7 - }, - { - "name": "angle_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 7 - }, - { - "name": "angle_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 7 - }, - { - "name": "angular_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 1 - }, - { - "name": "angular_velocity_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 1 - }, - { - "name": "angular_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 1 - }, - { - "name": "anim_offset", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 11 - }, - { - "name": "anim_offset_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 11 - }, - { - "name": "anim_offset_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 11 - }, - { - "name": "anim_speed", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 10 - }, - { - "name": "anim_speed_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 10 - }, - { - "name": "anim_speed_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 10 - }, - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "color_initial_ramp", - "type": "Gradient", - "getter": "get_color_initial_ramp", - "setter": "set_color_initial_ramp", - "index": -1 - }, - { - "name": "color_ramp", - "type": "Gradient", - "getter": "get_color_ramp", - "setter": "set_color_ramp", - "index": -1 - }, - { - "name": "damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 6 - }, - { - "name": "damping_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 6 - }, - { - "name": "damping_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 6 - }, - { - "name": "direction", - "type": "Vector3", - "getter": "get_direction", - "setter": "set_direction", - "index": -1 - }, - { - "name": "draw_order", - "type": "int", - "getter": "get_draw_order", - "setter": "set_draw_order", - "index": -1 - }, - { - "name": "emission_box_extents", - "type": "Vector3", - "getter": "get_emission_box_extents", - "setter": "set_emission_box_extents", - "index": -1 - }, - { - "name": "emission_colors", - "type": "PoolColorArray", - "getter": "get_emission_colors", - "setter": "set_emission_colors", - "index": -1 - }, - { - "name": "emission_normals", - "type": "PoolVector3Array", - "getter": "get_emission_normals", - "setter": "set_emission_normals", - "index": -1 - }, - { - "name": "emission_points", - "type": "PoolVector3Array", - "getter": "get_emission_points", - "setter": "set_emission_points", - "index": -1 - }, - { - "name": "emission_ring_axis", - "type": "Vector3", - "getter": "get_emission_ring_axis", - "setter": "set_emission_ring_axis", - "index": -1 - }, - { - "name": "emission_ring_height", - "type": "float", - "getter": "get_emission_ring_height", - "setter": "set_emission_ring_height", - "index": -1 - }, - { - "name": "emission_ring_inner_radius", - "type": "float", - "getter": "get_emission_ring_inner_radius", - "setter": "set_emission_ring_inner_radius", - "index": -1 - }, - { - "name": "emission_ring_radius", - "type": "float", - "getter": "get_emission_ring_radius", - "setter": "set_emission_ring_radius", - "index": -1 - }, - { - "name": "emission_shape", - "type": "int", - "getter": "get_emission_shape", - "setter": "set_emission_shape", - "index": -1 - }, - { - "name": "emission_sphere_radius", - "type": "float", - "getter": "get_emission_sphere_radius", - "setter": "set_emission_sphere_radius", - "index": -1 - }, - { - "name": "emitting", - "type": "bool", - "getter": "is_emitting", - "setter": "set_emitting", - "index": -1 - }, - { - "name": "explosiveness", - "type": "float", - "getter": "get_explosiveness_ratio", - "setter": "set_explosiveness_ratio", - "index": -1 - }, - { - "name": "fixed_fps", - "type": "int", - "getter": "get_fixed_fps", - "setter": "set_fixed_fps", - "index": -1 - }, - { - "name": "flag_align_y", - "type": "bool", - "getter": "get_particle_flag", - "setter": "set_particle_flag", - "index": 0 - }, - { - "name": "flag_disable_z", - "type": "bool", - "getter": "get_particle_flag", - "setter": "set_particle_flag", - "index": 2 - }, - { - "name": "flag_rotate_y", - "type": "bool", - "getter": "get_particle_flag", - "setter": "set_particle_flag", - "index": 1 - }, - { - "name": "flatness", - "type": "float", - "getter": "get_flatness", - "setter": "set_flatness", - "index": -1 - }, - { - "name": "fract_delta", - "type": "bool", - "getter": "get_fractional_delta", - "setter": "set_fractional_delta", - "index": -1 - }, - { - "name": "gravity", - "type": "Vector3", - "getter": "get_gravity", - "setter": "set_gravity", - "index": -1 - }, - { - "name": "hue_variation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 9 - }, - { - "name": "hue_variation_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 9 - }, - { - "name": "hue_variation_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 9 - }, - { - "name": "initial_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - }, - { - "name": "initial_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 0 - }, - { - "name": "lifetime", - "type": "float", - "getter": "get_lifetime", - "setter": "set_lifetime", - "index": -1 - }, - { - "name": "lifetime_randomness", - "type": "float", - "getter": "get_lifetime_randomness", - "setter": "set_lifetime_randomness", - "index": -1 - }, - { - "name": "linear_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "linear_accel_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 3 - }, - { - "name": "linear_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 3 - }, - { - "name": "local_coords", - "type": "bool", - "getter": "get_use_local_coordinates", - "setter": "set_use_local_coordinates", - "index": -1 - }, - { - "name": "mesh", - "type": "Mesh", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - }, - { - "name": "one_shot", - "type": "bool", - "getter": "get_one_shot", - "setter": "set_one_shot", - "index": -1 - }, - { - "name": "orbit_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - }, - { - "name": "orbit_velocity_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 2 - }, - { - "name": "orbit_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 2 - }, - { - "name": "preprocess", - "type": "float", - "getter": "get_pre_process_time", - "setter": "set_pre_process_time", - "index": -1 - }, - { - "name": "radial_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "radial_accel_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 4 - }, - { - "name": "radial_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 4 - }, - { - "name": "randomness", - "type": "float", - "getter": "get_randomness_ratio", - "setter": "set_randomness_ratio", - "index": -1 - }, - { - "name": "scale_amount", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 8 - }, - { - "name": "scale_amount_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 8 - }, - { - "name": "scale_amount_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 8 - }, - { - "name": "speed_scale", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - }, - { - "name": "spread", - "type": "float", - "getter": "get_spread", - "setter": "set_spread", - "index": -1 - }, - { - "name": "tangential_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "tangential_accel_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 5 - }, - { - "name": "tangential_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 5 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_update_render_thread", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "convert_from_particles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_amount", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_initial_ramp", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_ramp", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_direction", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_order", - "return_type": "enum.CPUParticles::DrawOrder", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_box_extents", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_colors", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_normals", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_points", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_axis", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_inner_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_shape", - "return_type": "enum.CPUParticles::EmissionShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_sphere_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_explosiveness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fixed_fps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_flatness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fractional_delta", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime_randomness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_one_shot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_curve", - "return_type": "Curve", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_randomness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_particle_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pre_process_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_randomness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spread", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_local_coordinates", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_emitting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "restart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_initial_ramp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ramp", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_ramp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ramp", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_direction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "direction", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_order", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "order", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_box_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_normals", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_axis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_inner_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_sphere_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emitting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "emitting", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fixed_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flatness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fractional_delta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "accel_vec", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime_randomness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "random", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_shot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "curve", - "type": "Curve", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_randomness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "randomness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particle_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pre_process_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_randomness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spread", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_local_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_ALIGN_Y_TO_VELOCITY": 0, - "FLAG_ROTATE_Y": 1, - "FLAG_DISABLE_Z": 2, - "FLAG_MAX": 3 - } - }, - { - "name": "EmissionShape", - "values": { - "EMISSION_SHAPE_POINT": 0, - "EMISSION_SHAPE_SPHERE": 1, - "EMISSION_SHAPE_BOX": 2, - "EMISSION_SHAPE_POINTS": 3, - "EMISSION_SHAPE_DIRECTED_POINTS": 4, - "EMISSION_SHAPE_RING": 5, - "EMISSION_SHAPE_MAX": 6 - } - }, - { - "name": "Parameter", - "values": { - "PARAM_INITIAL_LINEAR_VELOCITY": 0, - "PARAM_ANGULAR_VELOCITY": 1, - "PARAM_ORBIT_VELOCITY": 2, - "PARAM_LINEAR_ACCEL": 3, - "PARAM_RADIAL_ACCEL": 4, - "PARAM_TANGENTIAL_ACCEL": 5, - "PARAM_DAMPING": 6, - "PARAM_ANGLE": 7, - "PARAM_SCALE": 8, - "PARAM_HUE_VARIATION": 9, - "PARAM_ANIM_SPEED": 10, - "PARAM_ANIM_OFFSET": 11, - "PARAM_MAX": 12 - } - }, - { - "name": "DrawOrder", - "values": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1, - "DRAW_ORDER_VIEW_DEPTH": 2 - } - } - ] - }, - { - "name": "CPUParticles2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1, - "EMISSION_SHAPE_DIRECTED_POINTS": 4, - "EMISSION_SHAPE_MAX": 5, - "EMISSION_SHAPE_POINT": 0, - "EMISSION_SHAPE_POINTS": 3, - "EMISSION_SHAPE_RECTANGLE": 2, - "EMISSION_SHAPE_SPHERE": 1, - "FLAG_ALIGN_Y_TO_VELOCITY": 0, - "FLAG_DISABLE_Z": 2, - "FLAG_MAX": 3, - "FLAG_ROTATE_Y": 1, - "PARAM_ANGLE": 7, - "PARAM_ANGULAR_VELOCITY": 1, - "PARAM_ANIM_OFFSET": 11, - "PARAM_ANIM_SPEED": 10, - "PARAM_DAMPING": 6, - "PARAM_HUE_VARIATION": 9, - "PARAM_INITIAL_LINEAR_VELOCITY": 0, - "PARAM_LINEAR_ACCEL": 3, - "PARAM_MAX": 12, - "PARAM_ORBIT_VELOCITY": 2, - "PARAM_RADIAL_ACCEL": 4, - "PARAM_SCALE": 8, - "PARAM_TANGENTIAL_ACCEL": 5 - }, - "properties": [ - { - "name": "amount", - "type": "int", - "getter": "get_amount", - "setter": "set_amount", - "index": -1 - }, - { - "name": "angle", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 7 - }, - { - "name": "angle_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 7 - }, - { - "name": "angle_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 7 - }, - { - "name": "angular_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 1 - }, - { - "name": "angular_velocity_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 1 - }, - { - "name": "angular_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 1 - }, - { - "name": "anim_offset", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 11 - }, - { - "name": "anim_offset_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 11 - }, - { - "name": "anim_offset_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 11 - }, - { - "name": "anim_speed", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 10 - }, - { - "name": "anim_speed_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 10 - }, - { - "name": "anim_speed_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 10 - }, - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "color_initial_ramp", - "type": "Gradient", - "getter": "get_color_initial_ramp", - "setter": "set_color_initial_ramp", - "index": -1 - }, - { - "name": "color_ramp", - "type": "Gradient", - "getter": "get_color_ramp", - "setter": "set_color_ramp", - "index": -1 - }, - { - "name": "damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 6 - }, - { - "name": "damping_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 6 - }, - { - "name": "damping_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 6 - }, - { - "name": "direction", - "type": "Vector2", - "getter": "get_direction", - "setter": "set_direction", - "index": -1 - }, - { - "name": "draw_order", - "type": "int", - "getter": "get_draw_order", - "setter": "set_draw_order", - "index": -1 - }, - { - "name": "emission_colors", - "type": "PoolColorArray", - "getter": "get_emission_colors", - "setter": "set_emission_colors", - "index": -1 - }, - { - "name": "emission_normals", - "type": "PoolVector2Array", - "getter": "get_emission_normals", - "setter": "set_emission_normals", - "index": -1 - }, - { - "name": "emission_points", - "type": "PoolVector2Array", - "getter": "get_emission_points", - "setter": "set_emission_points", - "index": -1 - }, - { - "name": "emission_rect_extents", - "type": "Vector2", - "getter": "get_emission_rect_extents", - "setter": "set_emission_rect_extents", - "index": -1 - }, - { - "name": "emission_shape", - "type": "int", - "getter": "get_emission_shape", - "setter": "set_emission_shape", - "index": -1 - }, - { - "name": "emission_sphere_radius", - "type": "float", - "getter": "get_emission_sphere_radius", - "setter": "set_emission_sphere_radius", - "index": -1 - }, - { - "name": "emitting", - "type": "bool", - "getter": "is_emitting", - "setter": "set_emitting", - "index": -1 - }, - { - "name": "explosiveness", - "type": "float", - "getter": "get_explosiveness_ratio", - "setter": "set_explosiveness_ratio", - "index": -1 - }, - { - "name": "fixed_fps", - "type": "int", - "getter": "get_fixed_fps", - "setter": "set_fixed_fps", - "index": -1 - }, - { - "name": "flag_align_y", - "type": "bool", - "getter": "get_particle_flag", - "setter": "set_particle_flag", - "index": 0 - }, - { - "name": "fract_delta", - "type": "bool", - "getter": "get_fractional_delta", - "setter": "set_fractional_delta", - "index": -1 - }, - { - "name": "gravity", - "type": "Vector2", - "getter": "get_gravity", - "setter": "set_gravity", - "index": -1 - }, - { - "name": "hue_variation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 9 - }, - { - "name": "hue_variation_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 9 - }, - { - "name": "hue_variation_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 9 - }, - { - "name": "initial_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - }, - { - "name": "initial_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 0 - }, - { - "name": "lifetime", - "type": "float", - "getter": "get_lifetime", - "setter": "set_lifetime", - "index": -1 - }, - { - "name": "lifetime_randomness", - "type": "float", - "getter": "get_lifetime_randomness", - "setter": "set_lifetime_randomness", - "index": -1 - }, - { - "name": "linear_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "linear_accel_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 3 - }, - { - "name": "linear_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 3 - }, - { - "name": "local_coords", - "type": "bool", - "getter": "get_use_local_coordinates", - "setter": "set_use_local_coordinates", - "index": -1 - }, - { - "name": "normalmap", - "type": "Texture", - "getter": "get_normalmap", - "setter": "set_normalmap", - "index": -1 - }, - { - "name": "one_shot", - "type": "bool", - "getter": "get_one_shot", - "setter": "set_one_shot", - "index": -1 - }, - { - "name": "orbit_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - }, - { - "name": "orbit_velocity_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 2 - }, - { - "name": "orbit_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 2 - }, - { - "name": "preprocess", - "type": "float", - "getter": "get_pre_process_time", - "setter": "set_pre_process_time", - "index": -1 - }, - { - "name": "radial_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "radial_accel_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 4 - }, - { - "name": "radial_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 4 - }, - { - "name": "randomness", - "type": "float", - "getter": "get_randomness_ratio", - "setter": "set_randomness_ratio", - "index": -1 - }, - { - "name": "scale_amount", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 8 - }, - { - "name": "scale_amount_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 8 - }, - { - "name": "scale_amount_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 8 - }, - { - "name": "speed_scale", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - }, - { - "name": "spread", - "type": "float", - "getter": "get_spread", - "setter": "set_spread", - "index": -1 - }, - { - "name": "tangential_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "tangential_accel_curve", - "type": "Curve", - "getter": "get_param_curve", - "setter": "set_param_curve", - "index": 5 - }, - { - "name": "tangential_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 5 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_texture_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_render_thread", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "convert_from_particles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_amount", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_initial_ramp", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_ramp", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_direction", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_order", - "return_type": "enum.CPUParticles2D::DrawOrder", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_colors", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_normals", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_points", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_rect_extents", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_shape", - "return_type": "enum.CPUParticles2D::EmissionShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_sphere_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_explosiveness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fixed_fps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fractional_delta", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime_randomness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normalmap", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_one_shot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_curve", - "return_type": "Curve", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_randomness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_particle_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pre_process_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_randomness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spread", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_local_coordinates", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_emitting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "restart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_initial_ramp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ramp", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_ramp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ramp", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_direction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "direction", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_order", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "order", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_normals", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_rect_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_sphere_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emitting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "emitting", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fixed_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fractional_delta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "accel_vec", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime_randomness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "random", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normalmap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normalmap", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_shot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "curve", - "type": "Curve", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_randomness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "randomness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particle_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pre_process_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_randomness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spread", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_local_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_ALIGN_Y_TO_VELOCITY": 0, - "FLAG_ROTATE_Y": 1, - "FLAG_DISABLE_Z": 2, - "FLAG_MAX": 3 - } - }, - { - "name": "EmissionShape", - "values": { - "EMISSION_SHAPE_POINT": 0, - "EMISSION_SHAPE_SPHERE": 1, - "EMISSION_SHAPE_RECTANGLE": 2, - "EMISSION_SHAPE_POINTS": 3, - "EMISSION_SHAPE_DIRECTED_POINTS": 4, - "EMISSION_SHAPE_MAX": 5 - } - }, - { - "name": "Parameter", - "values": { - "PARAM_INITIAL_LINEAR_VELOCITY": 0, - "PARAM_ANGULAR_VELOCITY": 1, - "PARAM_ORBIT_VELOCITY": 2, - "PARAM_LINEAR_ACCEL": 3, - "PARAM_RADIAL_ACCEL": 4, - "PARAM_TANGENTIAL_ACCEL": 5, - "PARAM_DAMPING": 6, - "PARAM_ANGLE": 7, - "PARAM_SCALE": 8, - "PARAM_HUE_VARIATION": 9, - "PARAM_ANIM_SPEED": 10, - "PARAM_ANIM_OFFSET": 11, - "PARAM_MAX": 12 - } - }, - { - "name": "DrawOrder", - "values": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1 - } - } - ] - }, - { - "name": "CSGBox", - "base_class": "CSGPrimitive", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "depth", - "type": "float", - "getter": "get_depth", - "setter": "set_depth", - "index": -1 - }, - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "width", - "type": "float", - "getter": "get_width", - "setter": "set_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_depth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_width", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CSGCombiner", - "base_class": "CSGShape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "CSGCylinder", - "base_class": "CSGPrimitive", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "cone", - "type": "bool", - "getter": "is_cone", - "setter": "set_cone", - "index": -1 - }, - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "sides", - "type": "int", - "getter": "get_sides", - "setter": "set_sides", - "index": -1 - }, - { - "name": "smooth_faces", - "type": "bool", - "getter": "get_smooth_faces", - "setter": "set_smooth_faces", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sides", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_smooth_faces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_cone", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cone", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sides", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sides", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_smooth_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CSGMesh", - "base_class": "CSGPrimitive", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "mesh", - "type": "Mesh", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_mesh_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CSGPolygon", - "base_class": "CSGPrimitive", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MODE_DEPTH": 0, - "MODE_PATH": 2, - "MODE_SPIN": 1, - "PATH_INTERVAL_DISTANCE": 0, - "PATH_INTERVAL_SUBDIVIDE": 1, - "PATH_ROTATION_PATH": 1, - "PATH_ROTATION_PATH_FOLLOW": 2, - "PATH_ROTATION_POLYGON": 0 - }, - "properties": [ - { - "name": "depth", - "type": "float", - "getter": "get_depth", - "setter": "set_depth", - "index": -1 - }, - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "path_continuous_u", - "type": "bool", - "getter": "is_path_continuous_u", - "setter": "set_path_continuous_u", - "index": -1 - }, - { - "name": "path_interval", - "type": "float", - "getter": "get_path_interval", - "setter": "set_path_interval", - "index": -1 - }, - { - "name": "path_interval_type", - "type": "int", - "getter": "get_path_interval_type", - "setter": "set_path_interval_type", - "index": -1 - }, - { - "name": "path_joined", - "type": "bool", - "getter": "is_path_joined", - "setter": "set_path_joined", - "index": -1 - }, - { - "name": "path_local", - "type": "bool", - "getter": "is_path_local", - "setter": "set_path_local", - "index": -1 - }, - { - "name": "path_node", - "type": "NodePath", - "getter": "get_path_node", - "setter": "set_path_node", - "index": -1 - }, - { - "name": "path_rotation", - "type": "int", - "getter": "get_path_rotation", - "setter": "set_path_rotation", - "index": -1 - }, - { - "name": "path_simplify_angle", - "type": "float", - "getter": "get_path_simplify_angle", - "setter": "set_path_simplify_angle", - "index": -1 - }, - { - "name": "path_u_distance", - "type": "float", - "getter": "get_path_u_distance", - "setter": "set_path_u_distance", - "index": -1 - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "getter": "get_polygon", - "setter": "set_polygon", - "index": -1 - }, - { - "name": "smooth_faces", - "type": "bool", - "getter": "get_smooth_faces", - "setter": "set_smooth_faces", - "index": -1 - }, - { - "name": "spin_degrees", - "type": "float", - "getter": "get_spin_degrees", - "setter": "set_spin_degrees", - "index": -1 - }, - { - "name": "spin_sides", - "type": "int", - "getter": "get_spin_sides", - "setter": "set_spin_sides", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_has_editable_3d_polygon_no_depth", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_is_editable_3d_polygon", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_path_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_path_exited", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.CSGPolygon::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_interval", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_interval_type", - "return_type": "enum.CSGPolygon::PathIntervalType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_node", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_rotation", - "return_type": "enum.CSGPolygon::PathRotation", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_simplify_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_u_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_smooth_faces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spin_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spin_sides", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_path_continuous_u", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_path_joined", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_path_local", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_continuous_u", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_interval", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path_interval", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_interval_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interval_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_joined", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_local", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path_rotation", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_simplify_angle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_u_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_smooth_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spin_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spin_sides", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "spin_sides", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "PathIntervalType", - "values": { - "PATH_INTERVAL_DISTANCE": 0, - "PATH_INTERVAL_SUBDIVIDE": 1 - } - }, - { - "name": "PathRotation", - "values": { - "PATH_ROTATION_POLYGON": 0, - "PATH_ROTATION_PATH": 1, - "PATH_ROTATION_PATH_FOLLOW": 2 - } - }, - { - "name": "Mode", - "values": { - "MODE_DEPTH": 0, - "MODE_SPIN": 1, - "MODE_PATH": 2 - } - } - ] - }, - { - "name": "CSGPrimitive", - "base_class": "CSGShape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "invert_faces", - "type": "bool", - "getter": "is_inverting_faces", - "setter": "set_invert_faces", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_inverting_faces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_invert_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "invert_faces", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CSGShape", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "OPERATION_INTERSECTION": 1, - "OPERATION_SUBTRACTION": 2, - "OPERATION_UNION": 0 - }, - "properties": [ - { - "name": "calculate_tangents", - "type": "bool", - "getter": "is_calculating_tangents", - "setter": "set_calculate_tangents", - "index": -1 - }, - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "operation", - "type": "int", - "getter": "get_operation", - "setter": "set_operation", - "index": -1 - }, - { - "name": "snap", - "type": "float", - "getter": "get_snap", - "setter": "set_snap", - "index": -1 - }, - { - "name": "use_collision", - "type": "bool", - "getter": "is_using_collision", - "setter": "set_use_collision", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_update_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_meshes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_operation", - "return_type": "enum.CSGShape::Operation", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_snap", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_calculating_tangents", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_root_shape", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_collision", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_calculate_tangents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_operation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "operation", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_snap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "snap", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "operation", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Operation", - "values": { - "OPERATION_UNION": 0, - "OPERATION_INTERSECTION": 1, - "OPERATION_SUBTRACTION": 2 - } - } - ] - }, - { - "name": "CSGSphere", - "base_class": "CSGPrimitive", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "radial_segments", - "type": "int", - "getter": "get_radial_segments", - "setter": "set_radial_segments", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "rings", - "type": "int", - "getter": "get_rings", - "setter": "set_rings", - "index": -1 - }, - { - "name": "smooth_faces", - "type": "bool", - "getter": "get_smooth_faces", - "setter": "set_smooth_faces", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radial_segments", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rings", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_smooth_faces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radial_segments", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radial_segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rings", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rings", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_smooth_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CSGTorus", - "base_class": "CSGPrimitive", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "inner_radius", - "type": "float", - "getter": "get_inner_radius", - "setter": "set_inner_radius", - "index": -1 - }, - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "outer_radius", - "type": "float", - "getter": "get_outer_radius", - "setter": "set_outer_radius", - "index": -1 - }, - { - "name": "ring_sides", - "type": "int", - "getter": "get_ring_sides", - "setter": "set_ring_sides", - "index": -1 - }, - { - "name": "sides", - "type": "int", - "getter": "get_sides", - "setter": "set_sides", - "index": -1 - }, - { - "name": "smooth_faces", - "type": "bool", - "getter": "get_smooth_faces", - "setter": "set_smooth_faces", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_inner_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_outer_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ring_sides", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sides", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_smooth_faces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_inner_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_outer_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ring_sides", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sides", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sides", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sides", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_smooth_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "smooth_faces", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Camera", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DOPPLER_TRACKING_DISABLED": 0, - "DOPPLER_TRACKING_IDLE_STEP": 1, - "DOPPLER_TRACKING_PHYSICS_STEP": 2, - "KEEP_HEIGHT": 1, - "KEEP_WIDTH": 0, - "PROJECTION_FRUSTUM": 2, - "PROJECTION_ORTHOGONAL": 1, - "PROJECTION_PERSPECTIVE": 0 - }, - "properties": [ - { - "name": "cull_mask", - "type": "int", - "getter": "get_cull_mask", - "setter": "set_cull_mask", - "index": -1 - }, - { - "name": "current", - "type": "bool", - "getter": "is_current", - "setter": "set_current", - "index": -1 - }, - { - "name": "doppler_tracking", - "type": "int", - "getter": "get_doppler_tracking", - "setter": "set_doppler_tracking", - "index": -1 - }, - { - "name": "environment", - "type": "Environment", - "getter": "get_environment", - "setter": "set_environment", - "index": -1 - }, - { - "name": "far", - "type": "float", - "getter": "get_zfar", - "setter": "set_zfar", - "index": -1 - }, - { - "name": "fov", - "type": "float", - "getter": "get_fov", - "setter": "set_fov", - "index": -1 - }, - { - "name": "frustum_offset", - "type": "Vector2", - "getter": "get_frustum_offset", - "setter": "set_frustum_offset", - "index": -1 - }, - { - "name": "h_offset", - "type": "float", - "getter": "get_h_offset", - "setter": "set_h_offset", - "index": -1 - }, - { - "name": "keep_aspect", - "type": "int", - "getter": "get_keep_aspect_mode", - "setter": "set_keep_aspect_mode", - "index": -1 - }, - { - "name": "near", - "type": "float", - "getter": "get_znear", - "setter": "set_znear", - "index": -1 - }, - { - "name": "projection", - "type": "int", - "getter": "get_projection", - "setter": "set_projection", - "index": -1 - }, - { - "name": "size", - "type": "float", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "v_offset", - "type": "float", - "getter": "get_v_offset", - "setter": "set_v_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "clear_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable_next", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_camera_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cull_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cull_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_doppler_tracking", - "return_type": "enum.Camera::DopplerTracking", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment", - "return_type": "Environment", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fov", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frustum", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frustum_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_keep_aspect_mode", - "return_type": "enum.Camera::KeepAspect", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_projection", - "return_type": "enum.Camera::Projection", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zfar", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_znear", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_current", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_position_behind", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "world_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "project_local_ray_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "project_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_depth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "project_ray_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "project_ray_origin", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cull_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_doppler_tracking", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "Environment", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fov", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frustum", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_near", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_far", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frustum_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_keep_aspect_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_orthogonal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_near", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_far", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_perspective", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fov", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_near", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_far", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_projection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zfar", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_znear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unproject_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "world_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "KeepAspect", - "values": { - "KEEP_WIDTH": 0, - "KEEP_HEIGHT": 1 - } - }, - { - "name": "Projection", - "values": { - "PROJECTION_PERSPECTIVE": 0, - "PROJECTION_ORTHOGONAL": 1, - "PROJECTION_FRUSTUM": 2 - } - }, - { - "name": "DopplerTracking", - "values": { - "DOPPLER_TRACKING_DISABLED": 0, - "DOPPLER_TRACKING_IDLE_STEP": 1, - "DOPPLER_TRACKING_PHYSICS_STEP": 2 - } - } - ] - }, - { - "name": "Camera2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ANCHOR_MODE_DRAG_CENTER": 1, - "ANCHOR_MODE_FIXED_TOP_LEFT": 0, - "CAMERA2D_PROCESS_IDLE": 1, - "CAMERA2D_PROCESS_PHYSICS": 0 - }, - "properties": [ - { - "name": "anchor_mode", - "type": "int", - "getter": "get_anchor_mode", - "setter": "set_anchor_mode", - "index": -1 - }, - { - "name": "current", - "type": "bool", - "getter": "is_current", - "setter": "_set_current", - "index": -1 - }, - { - "name": "custom_viewport", - "type": "Viewport", - "getter": "get_custom_viewport", - "setter": "set_custom_viewport", - "index": -1 - }, - { - "name": "drag_margin_bottom", - "type": "float", - "getter": "get_drag_margin", - "setter": "set_drag_margin", - "index": 3 - }, - { - "name": "drag_margin_h_enabled", - "type": "bool", - "getter": "is_h_drag_enabled", - "setter": "set_h_drag_enabled", - "index": -1 - }, - { - "name": "drag_margin_left", - "type": "float", - "getter": "get_drag_margin", - "setter": "set_drag_margin", - "index": 0 - }, - { - "name": "drag_margin_right", - "type": "float", - "getter": "get_drag_margin", - "setter": "set_drag_margin", - "index": 2 - }, - { - "name": "drag_margin_top", - "type": "float", - "getter": "get_drag_margin", - "setter": "set_drag_margin", - "index": 1 - }, - { - "name": "drag_margin_v_enabled", - "type": "bool", - "getter": "is_v_drag_enabled", - "setter": "set_v_drag_enabled", - "index": -1 - }, - { - "name": "editor_draw_drag_margin", - "type": "bool", - "getter": "is_margin_drawing_enabled", - "setter": "set_margin_drawing_enabled", - "index": -1 - }, - { - "name": "editor_draw_limits", - "type": "bool", - "getter": "is_limit_drawing_enabled", - "setter": "set_limit_drawing_enabled", - "index": -1 - }, - { - "name": "editor_draw_screen", - "type": "bool", - "getter": "is_screen_drawing_enabled", - "setter": "set_screen_drawing_enabled", - "index": -1 - }, - { - "name": "limit_bottom", - "type": "int", - "getter": "get_limit", - "setter": "set_limit", - "index": 3 - }, - { - "name": "limit_left", - "type": "int", - "getter": "get_limit", - "setter": "set_limit", - "index": 0 - }, - { - "name": "limit_right", - "type": "int", - "getter": "get_limit", - "setter": "set_limit", - "index": 2 - }, - { - "name": "limit_smoothed", - "type": "bool", - "getter": "is_limit_smoothing_enabled", - "setter": "set_limit_smoothing_enabled", - "index": -1 - }, - { - "name": "limit_top", - "type": "int", - "getter": "get_limit", - "setter": "set_limit", - "index": 1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "offset_h", - "type": "float", - "getter": "get_h_offset", - "setter": "set_h_offset", - "index": -1 - }, - { - "name": "offset_v", - "type": "float", - "getter": "get_v_offset", - "setter": "set_v_offset", - "index": -1 - }, - { - "name": "process_mode", - "type": "int", - "getter": "get_process_mode", - "setter": "set_process_mode", - "index": -1 - }, - { - "name": "rotating", - "type": "bool", - "getter": "is_rotating", - "setter": "set_rotating", - "index": -1 - }, - { - "name": "smoothing_enabled", - "type": "bool", - "getter": "is_follow_smoothing_enabled", - "setter": "set_enable_follow_smoothing", - "index": -1 - }, - { - "name": "smoothing_speed", - "type": "float", - "getter": "get_follow_smoothing", - "setter": "set_follow_smoothing", - "index": -1 - }, - { - "name": "zoom", - "type": "Vector2", - "getter": "get_zoom", - "setter": "set_zoom", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_make_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "current", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "force_update_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_anchor_mode", - "return_type": "enum.Camera2D::AnchorMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera_screen_center", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_viewport", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_follow_smoothing", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_limit", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_mode", - "return_type": "enum.Camera2D::Camera2DProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zoom", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_current", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_follow_smoothing_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_h_drag_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_limit_drawing_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_limit_smoothing_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_margin_drawing_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_rotating", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_screen_drawing_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_v_drag_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reset_smoothing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_anchor_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anchor_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drag_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "drag_margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enable_follow_smoothing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "follow_smoothing", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_follow_smoothing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "follow_smoothing", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_drag_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_limit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "limit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_limit_drawing_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "limit_drawing_enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_limit_smoothing_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "limit_smoothing_enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin_drawing_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin_drawing_enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotating", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rotating", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_screen_drawing_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen_drawing_enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_drag_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zoom", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "zoom", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Camera2DProcessMode", - "values": { - "CAMERA2D_PROCESS_PHYSICS": 0, - "CAMERA2D_PROCESS_IDLE": 1 - } - }, - { - "name": "AnchorMode", - "values": { - "ANCHOR_MODE_FIXED_TOP_LEFT": 0, - "ANCHOR_MODE_DRAG_CENTER": 1 - } - } - ] - }, - { - "name": "CameraFeed", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FEED_BACK": 2, - "FEED_FRONT": 1, - "FEED_NOIMAGE": 0, - "FEED_RGB": 1, - "FEED_UNSPECIFIED": 0, - "FEED_YCBCR": 2, - "FEED_YCBCR_SEP": 3 - }, - "properties": [ - { - "name": "feed_is_active", - "type": "bool", - "getter": "is_active", - "setter": "set_active", - "index": -1 - }, - { - "name": "feed_transform", - "type": "Transform2D", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_allocate_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_RGB_img", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rgb_img", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_YCbCr_img", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ycbcr_img", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_YCbCr_imgs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "y_img", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cbcr_img", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "enum.CameraFeed::FeedPosition", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FeedDataType", - "values": { - "FEED_NOIMAGE": 0, - "FEED_RGB": 1, - "FEED_YCBCR": 2, - "FEED_YCBCR_SEP": 3 - } - }, - { - "name": "FeedPosition", - "values": { - "FEED_UNSPECIFIED": 0, - "FEED_FRONT": 1, - "FEED_BACK": 2 - } - } - ] - }, - { - "name": "CameraServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "CameraServer", - "instanciable": false, - "is_reference": false, - "constants": { - "FEED_CBCR_IMAGE": 1, - "FEED_RGBA_IMAGE": 0, - "FEED_YCBCR_IMAGE": 0, - "FEED_Y_IMAGE": 0 - }, - "properties": [ - ], - "signals": [ - { - "name": "camera_feed_added", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_feed_removed", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "add_feed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feed", - "type": "CameraFeed", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "feeds", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_feed", - "return_type": "CameraFeed", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_feed_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_feed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feed", - "type": "CameraFeed", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FeedImage", - "values": { - "FEED_RGBA_IMAGE": 0, - "FEED_YCBCR_IMAGE": 0, - "FEED_Y_IMAGE": 0, - "FEED_CBCR_IMAGE": 1 - } - } - ] - }, - { - "name": "CameraTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "camera_feed_id", - "type": "int", - "getter": "get_camera_feed_id", - "setter": "set_camera_feed_id", - "index": -1 - }, - { - "name": "camera_is_active", - "type": "bool", - "getter": "get_camera_active", - "setter": "set_camera_active", - "index": -1 - }, - { - "name": "which_feed", - "type": "int", - "getter": "get_which_feed", - "setter": "set_which_feed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_camera_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera_feed_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_which_feed", - "return_type": "enum.CameraServer::FeedImage", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_camera_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_camera_feed_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feed_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_which_feed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "which_feed", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CanvasItem", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "BLEND_MODE_ADD": 1, - "BLEND_MODE_DISABLED": 5, - "BLEND_MODE_MIX": 0, - "BLEND_MODE_MUL": 3, - "BLEND_MODE_PREMULT_ALPHA": 4, - "BLEND_MODE_SUB": 2, - "NOTIFICATION_DRAW": 30, - "NOTIFICATION_ENTER_CANVAS": 32, - "NOTIFICATION_EXIT_CANVAS": 33, - "NOTIFICATION_TRANSFORM_CHANGED": 2000, - "NOTIFICATION_VISIBILITY_CHANGED": 31 - }, - "properties": [ - { - "name": "light_mask", - "type": "int", - "getter": "get_light_mask", - "setter": "set_light_mask", - "index": -1 - }, - { - "name": "material", - "type": "ShaderMaterial,CanvasItemMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - }, - { - "name": "modulate", - "type": "Color", - "getter": "get_modulate", - "setter": "set_modulate", - "index": -1 - }, - { - "name": "self_modulate", - "type": "Color", - "getter": "get_self_modulate", - "setter": "set_self_modulate", - "index": -1 - }, - { - "name": "show_behind_parent", - "type": "bool", - "getter": "is_draw_behind_parent_enabled", - "setter": "set_draw_behind_parent", - "index": -1 - }, - { - "name": "show_on_top", - "type": "bool", - "getter": "_is_on_top", - "setter": "_set_on_top", - "index": -1 - }, - { - "name": "use_parent_material", - "type": "bool", - "getter": "get_use_parent_material", - "setter": "set_use_parent_material", - "index": -1 - }, - { - "name": "visible", - "type": "bool", - "getter": "is_visible", - "setter": "set_visible", - "index": -1 - } - ], - "signals": [ - { - "name": "draw", - "arguments": [ - ] - }, - { - "name": "hide", - "arguments": [ - ] - }, - { - "name": "item_rect_changed", - "arguments": [ - ] - }, - { - "name": "visibility_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_pivot", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_rotation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_state", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_set_pivot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pivot", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_set_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_set_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_set_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "state", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_use_pivot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_use_rect", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_edit_use_rotation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_is_on_top", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_on_top", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "on_top", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_toplevel_raise_self", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "draw_arc", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "center", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "start_angle", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "end_angle", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "point_count", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_char", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "font", - "type": "Font", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "char", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "next", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - } - ] - }, - { - "name": "draw_circle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "draw_colored_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "[Object:null]" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": true, - "default_value": "((1, 0), (0, 1), (0, 0))" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - } - ] - }, - { - "name": "draw_multiline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_multiline_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_multimesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "MultiMesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "draw_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_polyline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_polyline_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_primitive", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "draw_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "filled", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "draw_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rotation", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "draw_set_transform_matrix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "draw_string", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "font", - "type": "Font", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "clip_w", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "draw_style_box", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "style_box", - "type": "StyleBox", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "draw_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "draw_texture_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "draw_texture_rect_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "clip_uv", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "force_update_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_canvas", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_canvas_item", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_canvas_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_mouse_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_transform_with_canvas", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_light_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_local_mouse_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_self_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_parent_material", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_viewport_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_viewport_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_world_2d", - "return_type": "World2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "hide", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_draw_behind_parent_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_local_transform_notification_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_set_as_toplevel", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_transform_notification_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_visible_in_tree", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_canvas_position_local", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_input_local", - "return_type": "InputEvent", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_as_toplevel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_behind_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_light_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "modulate", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_notify_local_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_notify_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_self_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "self_modulate", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_parent_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "show", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "BlendMode", - "values": { - "BLEND_MODE_MIX": 0, - "BLEND_MODE_ADD": 1, - "BLEND_MODE_SUB": 2, - "BLEND_MODE_MUL": 3, - "BLEND_MODE_PREMULT_ALPHA": 4, - "BLEND_MODE_DISABLED": 5 - } - } - ] - }, - { - "name": "CanvasItemMaterial", - "base_class": "Material", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "BLEND_MODE_ADD": 1, - "BLEND_MODE_MIX": 0, - "BLEND_MODE_MUL": 3, - "BLEND_MODE_PREMULT_ALPHA": 4, - "BLEND_MODE_SUB": 2, - "LIGHT_MODE_LIGHT_ONLY": 2, - "LIGHT_MODE_NORMAL": 0, - "LIGHT_MODE_UNSHADED": 1 - }, - "properties": [ - { - "name": "blend_mode", - "type": "int", - "getter": "get_blend_mode", - "setter": "set_blend_mode", - "index": -1 - }, - { - "name": "light_mode", - "type": "int", - "getter": "get_light_mode", - "setter": "set_light_mode", - "index": -1 - }, - { - "name": "particles_anim_h_frames", - "type": "int", - "getter": "get_particles_anim_h_frames", - "setter": "set_particles_anim_h_frames", - "index": -1 - }, - { - "name": "particles_anim_loop", - "type": "bool", - "getter": "get_particles_anim_loop", - "setter": "set_particles_anim_loop", - "index": -1 - }, - { - "name": "particles_anim_v_frames", - "type": "int", - "getter": "get_particles_anim_v_frames", - "setter": "set_particles_anim_v_frames", - "index": -1 - }, - { - "name": "particles_animation", - "type": "bool", - "getter": "get_particles_animation", - "setter": "set_particles_animation", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_blend_mode", - "return_type": "enum.CanvasItemMaterial::BlendMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_light_mode", - "return_type": "enum.CanvasItemMaterial::LightMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_anim_h_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_anim_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_anim_v_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_animation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_blend_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "blend_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_light_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_anim_h_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_anim_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_anim_v_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles_anim", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "LightMode", - "values": { - "LIGHT_MODE_NORMAL": 0, - "LIGHT_MODE_UNSHADED": 1, - "LIGHT_MODE_LIGHT_ONLY": 2 - } - }, - { - "name": "BlendMode", - "values": { - "BLEND_MODE_MIX": 0, - "BLEND_MODE_ADD": 1, - "BLEND_MODE_SUB": 2, - "BLEND_MODE_MUL": 3, - "BLEND_MODE_PREMULT_ALPHA": 4 - } - } - ] - }, - { - "name": "CanvasLayer", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "custom_viewport", - "type": "Viewport", - "getter": "get_custom_viewport", - "setter": "set_custom_viewport", - "index": -1 - }, - { - "name": "follow_viewport_enable", - "type": "bool", - "getter": "is_following_viewport", - "setter": "set_follow_viewport", - "index": -1 - }, - { - "name": "follow_viewport_scale", - "type": "float", - "getter": "get_follow_viewport_scale", - "setter": "set_follow_viewport_scale", - "index": -1 - }, - { - "name": "layer", - "type": "int", - "getter": "get_layer", - "setter": "set_layer", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "rotation", - "type": "float", - "getter": "get_rotation", - "setter": "set_rotation", - "index": -1 - }, - { - "name": "rotation_degrees", - "type": "float", - "getter": "get_rotation_degrees", - "setter": "set_rotation_degrees", - "index": -1 - }, - { - "name": "scale", - "type": "Vector2", - "getter": "get_scale", - "setter": "set_scale", - "index": -1 - }, - { - "name": "transform", - "type": "Transform2D", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_canvas", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_viewport", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_follow_viewport_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_following_viewport", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_custom_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_follow_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_follow_viewport_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radians", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CanvasModulate", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CapsuleMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "mid_height", - "type": "float", - "getter": "get_mid_height", - "setter": "set_mid_height", - "index": -1 - }, - { - "name": "radial_segments", - "type": "int", - "getter": "get_radial_segments", - "setter": "set_radial_segments", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "rings", - "type": "int", - "getter": "get_rings", - "setter": "set_rings", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_mid_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radial_segments", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rings", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_mid_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mid_height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radial_segments", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rings", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rings", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CapsuleShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CapsuleShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CenterContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "use_top_left", - "type": "bool", - "getter": "is_using_top_left", - "setter": "set_use_top_left", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_using_top_left", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_use_top_left", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CharFXTransform", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "absolute_index", - "type": "int", - "getter": "get_absolute_index", - "setter": "set_absolute_index", - "index": -1 - }, - { - "name": "character", - "type": "int", - "getter": "get_character", - "setter": "set_character", - "index": -1 - }, - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "elapsed_time", - "type": "float", - "getter": "get_elapsed_time", - "setter": "set_elapsed_time", - "index": -1 - }, - { - "name": "env", - "type": "Dictionary", - "getter": "get_environment", - "setter": "set_environment", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "relative_index", - "type": "int", - "getter": "get_relative_index", - "setter": "set_relative_index", - "index": -1 - }, - { - "name": "visible", - "type": "bool", - "getter": "is_visible", - "setter": "set_visibility", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_absolute_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_character", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_elapsed_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_relative_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_absolute_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_character", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "character", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_elapsed_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "environment", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_relative_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visibility", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visibility", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CheckBox", - "base_class": "Button", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "CheckButton", - "base_class": "Button", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "CircleShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ClippedCamera", - "base_class": "Camera", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "CLIP_PROCESS_IDLE": 1, - "CLIP_PROCESS_PHYSICS": 0 - }, - "properties": [ - { - "name": "clip_to_areas", - "type": "bool", - "getter": "is_clip_to_areas_enabled", - "setter": "set_clip_to_areas", - "index": -1 - }, - { - "name": "clip_to_bodies", - "type": "bool", - "getter": "is_clip_to_bodies_enabled", - "setter": "set_clip_to_bodies", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "margin", - "type": "float", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - }, - { - "name": "process_mode", - "type": "int", - "getter": "get_process_mode", - "setter": "set_process_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_exception_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_exceptions", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_clip_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_mode", - "return_type": "enum.ClippedCamera::ProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_clip_to_areas_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_clip_to_bodies_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_exception_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip_to_areas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip_to_bodies", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "process_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ProcessMode", - "values": { - "CLIP_PROCESS_PHYSICS": 0, - "CLIP_PROCESS_IDLE": 1 - } - } - ] - }, - { - "name": "CollisionObject", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "input_capture_on_drag", - "type": "bool", - "getter": "get_capture_input_on_drag", - "setter": "set_capture_input_on_drag", - "index": -1 - }, - { - "name": "input_ray_pickable", - "type": "bool", - "getter": "is_ray_pickable", - "setter": "set_ray_pickable", - "index": -1 - } - ], - "signals": [ - { - "name": "input_event", - "arguments": [ - { - "name": "camera", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mouse_entered", - "arguments": [ - ] - }, - { - "name": "mouse_exited", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_input_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_shape_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Shape", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_debug_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_shape_owner", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_capture_input_on_drag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape_owners", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ray_pickable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shape_owner_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_shape_owner", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_capture_input_on_drag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ray_pickable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ray_pickable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_find_owner", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "Shape", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_clear_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_owner", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_shape", - "return_type": "Shape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_shape_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_remove_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CollisionObject2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "input_pickable", - "type": "bool", - "getter": "is_pickable", - "setter": "set_pickable", - "index": -1 - } - ], - "signals": [ - { - "name": "input_event", - "arguments": [ - { - "name": "viewport", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mouse_entered", - "arguments": [ - ] - }, - { - "name": "mouse_exited", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_input_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_shape_owner", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape_owner_one_way_collision_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_shape_owners", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_pickable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shape_owner_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_shape_owner_one_way_collision_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_shape_owner", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pickable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_find_owner", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_clear_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_owner", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_shape", - "return_type": "Shape2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_shape_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_remove_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_set_one_way_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_set_one_way_collision_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_owner_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CollisionPolygon", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "depth", - "type": "float", - "getter": "get_depth", - "setter": "set_depth", - "index": -1 - }, - { - "name": "disabled", - "type": "bool", - "getter": "is_disabled", - "setter": "set_disabled", - "index": -1 - }, - { - "name": "margin", - "type": "float", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "getter": "get_polygon", - "setter": "set_polygon", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_is_editable_3d_polygon", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CollisionPolygon2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "BUILD_SEGMENTS": 1, - "BUILD_SOLIDS": 0 - }, - "properties": [ - { - "name": "build_mode", - "type": "int", - "getter": "get_build_mode", - "setter": "set_build_mode", - "index": -1 - }, - { - "name": "disabled", - "type": "bool", - "getter": "is_disabled", - "setter": "set_disabled", - "index": -1 - }, - { - "name": "one_way_collision", - "type": "bool", - "getter": "is_one_way_collision_enabled", - "setter": "set_one_way_collision", - "index": -1 - }, - { - "name": "one_way_collision_margin", - "type": "float", - "getter": "get_one_way_collision_margin", - "setter": "set_one_way_collision_margin", - "index": -1 - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "getter": "get_polygon", - "setter": "set_polygon", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_build_mode", - "return_type": "enum.CollisionPolygon2D::BuildMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_one_way_collision_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_one_way_collision_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_build_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "build_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_way_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_way_collision_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BuildMode", - "values": { - "BUILD_SOLIDS": 0, - "BUILD_SEGMENTS": 1 - } - } - ] - }, - { - "name": "CollisionShape", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "disabled", - "type": "bool", - "getter": "is_disabled", - "setter": "set_disabled", - "index": -1 - }, - { - "name": "shape", - "type": "Shape", - "getter": "get_shape", - "setter": "set_shape", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_shape", - "return_type": "Shape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_convex_from_brothers", - "return_type": "void", - "is_editor": true, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "resource_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Shape", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CollisionShape2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "disabled", - "type": "bool", - "getter": "is_disabled", - "setter": "set_disabled", - "index": -1 - }, - { - "name": "one_way_collision", - "type": "bool", - "getter": "is_one_way_collision_enabled", - "setter": "set_one_way_collision", - "index": -1 - }, - { - "name": "one_way_collision_margin", - "type": "float", - "getter": "get_one_way_collision_margin", - "setter": "set_one_way_collision_margin", - "index": -1 - }, - { - "name": "shape", - "type": "Shape2D", - "getter": "get_shape", - "setter": "set_shape", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_shape_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_one_way_collision_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape", - "return_type": "Shape2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_one_way_collision_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_way_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_way_collision_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ColorPicker", - "base_class": "BoxContainer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_pick_color", - "setter": "set_pick_color", - "index": -1 - }, - { - "name": "deferred_mode", - "type": "bool", - "getter": "is_deferred_mode", - "setter": "set_deferred_mode", - "index": -1 - }, - { - "name": "edit_alpha", - "type": "bool", - "getter": "is_editing_alpha", - "setter": "set_edit_alpha", - "index": -1 - }, - { - "name": "hsv_mode", - "type": "bool", - "getter": "is_hsv_mode", - "setter": "set_hsv_mode", - "index": -1 - }, - { - "name": "presets_enabled", - "type": "bool", - "getter": "are_presets_enabled", - "setter": "set_presets_enabled", - "index": -1 - }, - { - "name": "presets_visible", - "type": "bool", - "getter": "are_presets_visible", - "setter": "set_presets_visible", - "index": -1 - }, - { - "name": "raw_mode", - "type": "bool", - "getter": "is_raw_mode", - "setter": "set_raw_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "color_changed", - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "preset_added", - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "preset_removed", - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_add_preset_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_focus_enter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_focus_exit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_hsv_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_html_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_html_focus_exit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_preset_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_sample_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_sample_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_screen_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_screen_pick_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_text_type_toggled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_presets", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_uv_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_value_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_w_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_preset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "are_presets_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "are_presets_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "erase_preset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pick_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_presets", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_deferred_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editing_alpha", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_hsv_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_raw_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_deferred_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edit_alpha", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "show", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hsv_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pick_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_presets_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_presets_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_raw_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ColorPickerButton", - "base_class": "Button", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_pick_color", - "setter": "set_pick_color", - "index": -1 - }, - { - "name": "edit_alpha", - "type": "bool", - "getter": "is_editing_alpha", - "setter": "set_edit_alpha", - "index": -1 - } - ], - "signals": [ - { - "name": "color_changed", - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "picker_created", - "arguments": [ - ] - }, - { - "name": "popup_closed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_about_to_show", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_color_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_modal_closed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pick_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_picker", - "return_type": "ColorPicker", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_popup", - "return_type": "PopupPanel", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editing_alpha", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_edit_alpha", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "show", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pick_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ColorRect", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_frame_color", - "setter": "set_frame_color", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_frame_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_frame_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ConcavePolygonShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data", - "type": "PoolVector3Array", - "getter": "get_faces", - "setter": "set_faces", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_faces", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "faces", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ConcavePolygonShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "segments", - "type": "PoolVector2Array", - "getter": "get_segments", - "setter": "set_segments", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_segments", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_segments", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ConeTwistJoint", - "base_class": "Joint", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "PARAM_BIAS": 2, - "PARAM_MAX": 5, - "PARAM_RELAXATION": 4, - "PARAM_SOFTNESS": 3, - "PARAM_SWING_SPAN": 0, - "PARAM_TWIST_SPAN": 1 - }, - "properties": [ - { - "name": "bias", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - }, - { - "name": "relaxation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "swing_span", - "type": "float", - "getter": "_get_swing_span", - "setter": "_set_swing_span", - "index": -1 - }, - { - "name": "twist_span", - "type": "float", - "getter": "_get_twist_span", - "setter": "_set_twist_span", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_swing_span", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_twist_span", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_swing_span", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "swing_span", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_twist_span", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "twist_span", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Param", - "values": { - "PARAM_SWING_SPAN": 0, - "PARAM_TWIST_SPAN": 1, - "PARAM_BIAS": 2, - "PARAM_SOFTNESS": 3, - "PARAM_RELAXATION": 4, - "PARAM_MAX": 5 - } - } - ] - }, - { - "name": "ConfigFile", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "erase_section", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "erase_section_key", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_section_keys", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_sections", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "default", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "has_section", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_section_key", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_encrypted", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_encrypted_pass", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "password", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "parse", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save_encrypted", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save_encrypted_pass", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "password", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ConfirmationDialog", - "base_class": "AcceptDialog", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cancel", - "return_type": "Button", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Container", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "NOTIFICATION_SORT_CHILDREN": 50 - }, - "properties": [ - ], - "signals": [ - { - "name": "sort_children", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_child_minsize_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_sort_children", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "fit_child_in_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "child", - "type": "Control", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "queue_sort", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Control", - "base_class": "CanvasItem", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ANCHOR_BEGIN": 0, - "ANCHOR_END": 1, - "CURSOR_ARROW": 0, - "CURSOR_BDIAGSIZE": 11, - "CURSOR_BUSY": 5, - "CURSOR_CAN_DROP": 7, - "CURSOR_CROSS": 3, - "CURSOR_DRAG": 6, - "CURSOR_FDIAGSIZE": 12, - "CURSOR_FORBIDDEN": 8, - "CURSOR_HELP": 16, - "CURSOR_HSIZE": 10, - "CURSOR_HSPLIT": 15, - "CURSOR_IBEAM": 1, - "CURSOR_MOVE": 13, - "CURSOR_POINTING_HAND": 2, - "CURSOR_VSIZE": 9, - "CURSOR_VSPLIT": 14, - "CURSOR_WAIT": 4, - "FOCUS_ALL": 2, - "FOCUS_CLICK": 1, - "FOCUS_NONE": 0, - "GROW_DIRECTION_BEGIN": 0, - "GROW_DIRECTION_BOTH": 2, - "GROW_DIRECTION_END": 1, - "MOUSE_FILTER_IGNORE": 2, - "MOUSE_FILTER_PASS": 1, - "MOUSE_FILTER_STOP": 0, - "NOTIFICATION_FOCUS_ENTER": 43, - "NOTIFICATION_FOCUS_EXIT": 44, - "NOTIFICATION_MODAL_CLOSE": 46, - "NOTIFICATION_MOUSE_ENTER": 41, - "NOTIFICATION_MOUSE_EXIT": 42, - "NOTIFICATION_RESIZED": 40, - "NOTIFICATION_SCROLL_BEGIN": 47, - "NOTIFICATION_SCROLL_END": 48, - "NOTIFICATION_THEME_CHANGED": 45, - "PRESET_BOTTOM_LEFT": 2, - "PRESET_BOTTOM_RIGHT": 3, - "PRESET_BOTTOM_WIDE": 12, - "PRESET_CENTER": 8, - "PRESET_CENTER_BOTTOM": 7, - "PRESET_CENTER_LEFT": 4, - "PRESET_CENTER_RIGHT": 6, - "PRESET_CENTER_TOP": 5, - "PRESET_HCENTER_WIDE": 14, - "PRESET_LEFT_WIDE": 9, - "PRESET_MODE_KEEP_HEIGHT": 2, - "PRESET_MODE_KEEP_SIZE": 3, - "PRESET_MODE_KEEP_WIDTH": 1, - "PRESET_MODE_MINSIZE": 0, - "PRESET_RIGHT_WIDE": 11, - "PRESET_TOP_LEFT": 0, - "PRESET_TOP_RIGHT": 1, - "PRESET_TOP_WIDE": 10, - "PRESET_VCENTER_WIDE": 13, - "PRESET_WIDE": 15, - "SIZE_EXPAND": 2, - "SIZE_EXPAND_FILL": 3, - "SIZE_FILL": 1, - "SIZE_SHRINK_CENTER": 4, - "SIZE_SHRINK_END": 8 - }, - "properties": [ - { - "name": "anchor_bottom", - "type": "float", - "getter": "get_anchor", - "setter": "_set_anchor", - "index": 3 - }, - { - "name": "anchor_left", - "type": "float", - "getter": "get_anchor", - "setter": "_set_anchor", - "index": 0 - }, - { - "name": "anchor_right", - "type": "float", - "getter": "get_anchor", - "setter": "_set_anchor", - "index": 2 - }, - { - "name": "anchor_top", - "type": "float", - "getter": "get_anchor", - "setter": "_set_anchor", - "index": 1 - }, - { - "name": "focus_mode", - "type": "int", - "getter": "get_focus_mode", - "setter": "set_focus_mode", - "index": -1 - }, - { - "name": "focus_neighbour_bottom", - "type": "NodePath", - "getter": "get_focus_neighbour", - "setter": "set_focus_neighbour", - "index": 3 - }, - { - "name": "focus_neighbour_left", - "type": "NodePath", - "getter": "get_focus_neighbour", - "setter": "set_focus_neighbour", - "index": 0 - }, - { - "name": "focus_neighbour_right", - "type": "NodePath", - "getter": "get_focus_neighbour", - "setter": "set_focus_neighbour", - "index": 2 - }, - { - "name": "focus_neighbour_top", - "type": "NodePath", - "getter": "get_focus_neighbour", - "setter": "set_focus_neighbour", - "index": 1 - }, - { - "name": "focus_next", - "type": "NodePath", - "getter": "get_focus_next", - "setter": "set_focus_next", - "index": -1 - }, - { - "name": "focus_previous", - "type": "NodePath", - "getter": "get_focus_previous", - "setter": "set_focus_previous", - "index": -1 - }, - { - "name": "grow_horizontal", - "type": "int", - "getter": "get_h_grow_direction", - "setter": "set_h_grow_direction", - "index": -1 - }, - { - "name": "grow_vertical", - "type": "int", - "getter": "get_v_grow_direction", - "setter": "set_v_grow_direction", - "index": -1 - }, - { - "name": "hint_tooltip", - "type": "String", - "getter": "_get_tooltip", - "setter": "set_tooltip", - "index": -1 - }, - { - "name": "input_pass_on_modal_close_click", - "type": "bool", - "getter": "get_pass_on_modal_close_click", - "setter": "set_pass_on_modal_close_click", - "index": -1 - }, - { - "name": "margin_bottom", - "type": "int", - "getter": "get_margin", - "setter": "set_margin", - "index": 3 - }, - { - "name": "margin_left", - "type": "int", - "getter": "get_margin", - "setter": "set_margin", - "index": 0 - }, - { - "name": "margin_right", - "type": "int", - "getter": "get_margin", - "setter": "set_margin", - "index": 2 - }, - { - "name": "margin_top", - "type": "int", - "getter": "get_margin", - "setter": "set_margin", - "index": 1 - }, - { - "name": "mouse_default_cursor_shape", - "type": "int", - "getter": "get_default_cursor_shape", - "setter": "set_default_cursor_shape", - "index": -1 - }, - { - "name": "mouse_filter", - "type": "int", - "getter": "get_mouse_filter", - "setter": "set_mouse_filter", - "index": -1 - }, - { - "name": "rect_clip_content", - "type": "bool", - "getter": "is_clipping_contents", - "setter": "set_clip_contents", - "index": -1 - }, - { - "name": "rect_global_position", - "type": "Vector2", - "getter": "get_global_position", - "setter": "_set_global_position", - "index": -1 - }, - { - "name": "rect_min_size", - "type": "Vector2", - "getter": "get_custom_minimum_size", - "setter": "set_custom_minimum_size", - "index": -1 - }, - { - "name": "rect_pivot_offset", - "type": "Vector2", - "getter": "get_pivot_offset", - "setter": "set_pivot_offset", - "index": -1 - }, - { - "name": "rect_position", - "type": "Vector2", - "getter": "get_position", - "setter": "_set_position", - "index": -1 - }, - { - "name": "rect_rotation", - "type": "float", - "getter": "get_rotation_degrees", - "setter": "set_rotation_degrees", - "index": -1 - }, - { - "name": "rect_scale", - "type": "Vector2", - "getter": "get_scale", - "setter": "set_scale", - "index": -1 - }, - { - "name": "rect_size", - "type": "Vector2", - "getter": "get_size", - "setter": "_set_size", - "index": -1 - }, - { - "name": "size_flags_horizontal", - "type": "int", - "getter": "get_h_size_flags", - "setter": "set_h_size_flags", - "index": -1 - }, - { - "name": "size_flags_stretch_ratio", - "type": "float", - "getter": "get_stretch_ratio", - "setter": "set_stretch_ratio", - "index": -1 - }, - { - "name": "size_flags_vertical", - "type": "int", - "getter": "get_v_size_flags", - "setter": "set_v_size_flags", - "index": -1 - }, - { - "name": "theme", - "type": "Theme", - "getter": "get_theme", - "setter": "set_theme", - "index": -1 - } - ], - "signals": [ - { - "name": "focus_entered", - "arguments": [ - ] - }, - { - "name": "focus_exited", - "arguments": [ - ] - }, - { - "name": "gui_input", - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "minimum_size_changed", - "arguments": [ - ] - }, - { - "name": "modal_closed", - "arguments": [ - ] - }, - { - "name": "mouse_entered", - "arguments": [ - ] - }, - { - "name": "mouse_exited", - "arguments": [ - ] - }, - { - "name": "resized", - "arguments": [ - ] - }, - { - "name": "size_flags_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_clips_input", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_minimum_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_make_custom_tooltip", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "for_text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_override_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_anchor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anchor", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_global_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_size_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_theme_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_minimum_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "accept_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_color_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_constant_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "constant", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_font_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "font", - "type": "Font", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_icon_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_shader_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shader", - "type": "Shader", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_stylebox_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "stylebox", - "type": "StyleBox", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_drop_data", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "drop_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_next_valid_focus", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "find_prev_valid_focus", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "force_drag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "preview", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_anchor", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_begin", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_combined_minimum_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_cursor_shape", - "return_type": "enum.Control::CursorShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "get_custom_minimum_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_cursor_shape", - "return_type": "enum.Control::CursorShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_data", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_end", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_focus_mode", - "return_type": "enum.Control::FocusMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_focus_neighbour", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_focus_next", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_focus_owner", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_focus_previous", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_font", - "return_type": "Font", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_global_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_grow_direction", - "return_type": "enum.Control::GrowDirection", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_size_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_minimum_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mouse_filter", - "return_type": "enum.Control::MouseFilter", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent_area_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent_control", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pass_on_modal_close_click", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pivot_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stretch_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stylebox", - "return_type": "StyleBox", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_theme", - "return_type": "Theme", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_theme_default_font", - "return_type": "Font", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "at_position", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "get_v_grow_direction", - "return_type": "enum.Control::GrowDirection", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_size_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "grab_click_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "grab_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_color", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "has_color_override", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_constant", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "has_constant_override", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_focus", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_font", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "has_font_override", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_icon", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "has_icon_override", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_point", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_shader_override", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_stylebox", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "theme_type", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "has_stylebox_override", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_clipping_contents", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "minimum_size_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "release_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_color_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_constant_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_font_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_icon_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_shader_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_stylebox_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_anchor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anchor", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_margin", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "push_opposite_anchor", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_anchor_and_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anchor", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "push_opposite_anchor", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_anchors_and_margins_preset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "preset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "resize_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "margin", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_anchors_preset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "preset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_margins", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip_contents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_minimum_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_cursor_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drag_forwarding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drag_preview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_focus_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_focus_neighbour", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "neighbour", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_focus_next", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "next", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_focus_previous", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "previous", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_margins", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_h_grow_direction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "direction", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_size_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margins_preset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "preset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "resize_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "margin", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_mouse_filter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pass_on_modal_close_click", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pivot_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pivot_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_margins", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radians", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_margins", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_stretch_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_theme", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "theme", - "type": "Theme", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tooltip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tooltip", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_grow_direction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "direction", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_size_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "show_modal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exclusive", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "warp_mouse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Anchor", - "values": { - "ANCHOR_BEGIN": 0, - "ANCHOR_END": 1 - } - }, - { - "name": "FocusMode", - "values": { - "FOCUS_NONE": 0, - "FOCUS_CLICK": 1, - "FOCUS_ALL": 2 - } - }, - { - "name": "LayoutPresetMode", - "values": { - "PRESET_MODE_MINSIZE": 0, - "PRESET_MODE_KEEP_WIDTH": 1, - "PRESET_MODE_KEEP_HEIGHT": 2, - "PRESET_MODE_KEEP_SIZE": 3 - } - }, - { - "name": "MouseFilter", - "values": { - "MOUSE_FILTER_STOP": 0, - "MOUSE_FILTER_PASS": 1, - "MOUSE_FILTER_IGNORE": 2 - } - }, - { - "name": "CursorShape", - "values": { - "CURSOR_ARROW": 0, - "CURSOR_IBEAM": 1, - "CURSOR_POINTING_HAND": 2, - "CURSOR_CROSS": 3, - "CURSOR_WAIT": 4, - "CURSOR_BUSY": 5, - "CURSOR_DRAG": 6, - "CURSOR_CAN_DROP": 7, - "CURSOR_FORBIDDEN": 8, - "CURSOR_VSIZE": 9, - "CURSOR_HSIZE": 10, - "CURSOR_BDIAGSIZE": 11, - "CURSOR_FDIAGSIZE": 12, - "CURSOR_MOVE": 13, - "CURSOR_VSPLIT": 14, - "CURSOR_HSPLIT": 15, - "CURSOR_HELP": 16 - } - }, - { - "name": "GrowDirection", - "values": { - "GROW_DIRECTION_BEGIN": 0, - "GROW_DIRECTION_END": 1, - "GROW_DIRECTION_BOTH": 2 - } - }, - { - "name": "SizeFlags", - "values": { - "SIZE_FILL": 1, - "SIZE_EXPAND": 2, - "SIZE_EXPAND_FILL": 3, - "SIZE_SHRINK_CENTER": 4, - "SIZE_SHRINK_END": 8 - } - }, - { - "name": "LayoutPreset", - "values": { - "PRESET_TOP_LEFT": 0, - "PRESET_TOP_RIGHT": 1, - "PRESET_BOTTOM_LEFT": 2, - "PRESET_BOTTOM_RIGHT": 3, - "PRESET_CENTER_LEFT": 4, - "PRESET_CENTER_TOP": 5, - "PRESET_CENTER_RIGHT": 6, - "PRESET_CENTER_BOTTOM": 7, - "PRESET_CENTER": 8, - "PRESET_LEFT_WIDE": 9, - "PRESET_TOP_WIDE": 10, - "PRESET_RIGHT_WIDE": 11, - "PRESET_BOTTOM_WIDE": 12, - "PRESET_VCENTER_WIDE": 13, - "PRESET_HCENTER_WIDE": 14, - "PRESET_WIDE": 15 - } - } - ] - }, - { - "name": "ConvexPolygonShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "points", - "type": "Array", - "getter": "get_points", - "setter": "set_points", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_points", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ConvexPolygonShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "points", - "type": "PoolVector2Array", - "getter": "get_points", - "setter": "set_points", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_points", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_point_cloud", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point_cloud", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Crypto", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "constant_time_compare", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "trusted", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "received", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "decrypt", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ciphertext", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "encrypt", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - }, - { - "name": "plaintext", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generate_random_bytes", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generate_rsa", - "return_type": "CryptoKey", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generate_self_signed_certificate", - "return_type": "X509Certificate", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - }, - { - "name": "issuer_name", - "type": "String", - "has_default_value": true, - "default_value": "CN=myserver,O=myorganisation,C=IT" - }, - { - "name": "not_before", - "type": "String", - "has_default_value": true, - "default_value": "20140101000000" - }, - { - "name": "not_after", - "type": "String", - "has_default_value": true, - "default_value": "20340101000000" - } - ] - }, - { - "name": "hmac_digest", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hash_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "msg", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sign", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hash_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hash", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "verify", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hash_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hash", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "signature", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CryptoKey", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "is_public_only", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "load", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "public_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "load_from_string", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "string_key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "public_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "save", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "public_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "save_to_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "public_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CubeMap", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FLAGS_DEFAULT": 7, - "FLAG_FILTER": 4, - "FLAG_MIPMAPS": 1, - "FLAG_REPEAT": 2, - "SIDE_BACK": 5, - "SIDE_BOTTOM": 2, - "SIDE_FRONT": 4, - "SIDE_LEFT": 0, - "SIDE_RIGHT": 1, - "SIDE_TOP": 3, - "STORAGE_COMPRESS_LOSSLESS": 2, - "STORAGE_COMPRESS_LOSSY": 1, - "STORAGE_RAW": 0 - }, - "properties": [ - { - "name": "flags", - "type": "int", - "getter": "get_flags", - "setter": "set_flags", - "index": -1 - }, - { - "name": "lossy_storage_quality", - "type": "float", - "getter": "get_lossy_storage_quality", - "setter": "set_lossy_storage_quality", - "index": -1 - }, - { - "name": "storage_mode", - "type": "int", - "getter": "get_storage", - "setter": "set_storage", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lossy_storage_quality", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_side", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "side", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_storage", - "return_type": "enum.CubeMap::Storage", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lossy_storage_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "quality", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_side", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "side", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_storage", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_MIPMAPS": 1, - "FLAG_REPEAT": 2, - "FLAG_FILTER": 4, - "FLAGS_DEFAULT": 7 - } - }, - { - "name": "Side", - "values": { - "SIDE_LEFT": 0, - "SIDE_RIGHT": 1, - "SIDE_BOTTOM": 2, - "SIDE_TOP": 3, - "SIDE_FRONT": 4, - "SIDE_BACK": 5 - } - }, - { - "name": "Storage", - "values": { - "STORAGE_RAW": 0, - "STORAGE_COMPRESS_LOSSY": 1, - "STORAGE_COMPRESS_LOSSLESS": 2 - } - } - ] - }, - { - "name": "CubeMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "size", - "type": "Vector3", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "subdivide_depth", - "type": "int", - "getter": "get_subdivide_depth", - "setter": "set_subdivide_depth", - "index": -1 - }, - { - "name": "subdivide_height", - "type": "int", - "getter": "get_subdivide_height", - "setter": "set_subdivide_height", - "index": -1 - }, - { - "name": "subdivide_width", - "type": "int", - "getter": "get_subdivide_width", - "setter": "set_subdivide_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_size", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_depth", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "divisions", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "divisions", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subdivide", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CullInstance", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "PORTAL_MODE_DYNAMIC": 1, - "PORTAL_MODE_GLOBAL": 3, - "PORTAL_MODE_IGNORE": 4, - "PORTAL_MODE_ROAMING": 2, - "PORTAL_MODE_STATIC": 0 - }, - "properties": [ - { - "name": "autoplace_priority", - "type": "int", - "getter": "get_portal_autoplace_priority", - "setter": "set_portal_autoplace_priority", - "index": -1 - }, - { - "name": "include_in_bound", - "type": "bool", - "getter": "get_include_in_bound", - "setter": "set_include_in_bound", - "index": -1 - }, - { - "name": "portal_mode", - "type": "int", - "getter": "get_portal_mode", - "setter": "set_portal_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_include_in_bound", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_portal_autoplace_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_portal_mode", - "return_type": "enum.CullInstance::PortalMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_include_in_bound", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_portal_autoplace_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_portal_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "PortalMode", - "values": { - "PORTAL_MODE_STATIC": 0, - "PORTAL_MODE_DYNAMIC": 1, - "PORTAL_MODE_ROAMING": 2, - "PORTAL_MODE_GLOBAL": 3, - "PORTAL_MODE_IGNORE": 4 - } - } - ] - }, - { - "name": "Curve", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "TANGENT_FREE": 0, - "TANGENT_LINEAR": 1, - "TANGENT_MODE_COUNT": 2 - }, - "properties": [ - { - "name": "_data", - "type": "int", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - }, - { - "name": "bake_resolution", - "type": "int", - "getter": "get_bake_resolution", - "setter": "set_bake_resolution", - "index": -1 - }, - { - "name": "max_value", - "type": "float", - "getter": "get_max_value", - "setter": "set_max_value", - "index": -1 - }, - { - "name": "min_value", - "type": "float", - "getter": "get_min_value", - "setter": "set_min_value", - "index": -1 - } - ], - "signals": [ - { - "name": "range_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_point", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "left_tangent", - "type": "float", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "right_tangent", - "type": "float", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "left_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "right_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "bake", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clean_dupes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bake_resolution", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_value", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min_value", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_left_mode", - "return_type": "enum.Curve::TangentMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_left_tangent", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_right_mode", - "return_type": "enum.Curve::TangentMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_right_tangent", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interpolate", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interpolate_baked", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bake_resolution", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resolution", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "min", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_left_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_left_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tangent", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_right_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_right_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tangent", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TangentMode", - "values": { - "TANGENT_FREE": 0, - "TANGENT_LINEAR": 1, - "TANGENT_MODE_COUNT": 2 - } - } - ] - }, - { - "name": "Curve2D", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "_data", - "type": "int", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - }, - { - "name": "bake_interval", - "type": "float", - "getter": "get_bake_interval", - "setter": "set_bake_interval", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "in", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "out", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "clear_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bake_interval", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_baked_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_baked_points", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_in", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_out", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interpolate", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "t", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interpolate_baked", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cubic", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "interpolatef", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fofs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bake_interval", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_in", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_out", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tessellate", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_stages", - "type": "int", - "has_default_value": true, - "default_value": "5" - }, - { - "name": "tolerance_degrees", - "type": "float", - "has_default_value": true, - "default_value": "4" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Curve3D", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "_data", - "type": "int", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - }, - { - "name": "bake_interval", - "type": "float", - "getter": "get_bake_interval", - "setter": "set_bake_interval", - "index": -1 - }, - { - "name": "up_vector_enabled", - "type": "bool", - "getter": "is_up_vector_enabled", - "setter": "set_up_vector_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "in", - "type": "Vector3", - "has_default_value": true, - "default_value": "(0, 0, 0)" - }, - { - "name": "out", - "type": "Vector3", - "has_default_value": true, - "default_value": "(0, 0, 0)" - }, - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "clear_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bake_interval", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_baked_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_baked_points", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_baked_tilts", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_baked_up_vectors", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_in", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_out", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_tilt", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interpolate", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "t", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "interpolate_baked", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cubic", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "interpolate_baked_up_vector", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "apply_tilt", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "interpolatef", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fofs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_up_vector_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bake_interval", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_in", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_out", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_tilt", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tilt", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_up_vector_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tessellate", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_stages", - "type": "int", - "has_default_value": true, - "default_value": "5" - }, - { - "name": "tolerance_degrees", - "type": "float", - "has_default_value": true, - "default_value": "4" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CurveTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "curve", - "type": "Curve", - "getter": "get_curve", - "setter": "set_curve", - "index": -1 - }, - { - "name": "width", - "type": "int", - "getter": "get_width", - "setter": "set_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_curve", - "return_type": "Curve", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "Curve", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CylinderMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "bottom_radius", - "type": "float", - "getter": "get_bottom_radius", - "setter": "set_bottom_radius", - "index": -1 - }, - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "radial_segments", - "type": "int", - "getter": "get_radial_segments", - "setter": "set_radial_segments", - "index": -1 - }, - { - "name": "rings", - "type": "int", - "getter": "get_rings", - "setter": "set_rings", - "index": -1 - }, - { - "name": "top_radius", - "type": "float", - "getter": "get_top_radius", - "setter": "set_top_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_bottom_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radial_segments", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rings", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_top_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bottom_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radial_segments", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rings", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rings", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_top_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "CylinderShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "DTLSServer", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "setup", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - }, - { - "name": "certificate", - "type": "X509Certificate", - "has_default_value": false, - "default_value": "" - }, - { - "name": "chain", - "type": "X509Certificate", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "take_connection", - "return_type": "PacketPeerDTLS", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "udp_peer", - "type": "PacketPeerUDP", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "DampedSpringJoint2D", - "base_class": "Joint2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "damping", - "type": "float", - "getter": "get_damping", - "setter": "set_damping", - "index": -1 - }, - { - "name": "length", - "type": "float", - "getter": "get_length", - "setter": "set_length", - "index": -1 - }, - { - "name": "rest_length", - "type": "float", - "getter": "get_rest_length", - "setter": "set_rest_length", - "index": -1 - }, - { - "name": "stiffness", - "type": "float", - "getter": "get_stiffness", - "setter": "set_stiffness", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_damping", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rest_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stiffness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_damping", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "damping", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rest_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rest_length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stiffness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stiffness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "DirectionalLight", - "base_class": "Light", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "SHADOW_DEPTH_RANGE_OPTIMIZED": 1, - "SHADOW_DEPTH_RANGE_STABLE": 0, - "SHADOW_ORTHOGONAL": 0, - "SHADOW_PARALLEL_2_SPLITS": 1, - "SHADOW_PARALLEL_4_SPLITS": 2 - }, - "properties": [ - { - "name": "directional_shadow_bias_split_scale", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 15 - }, - { - "name": "directional_shadow_blend_splits", - "type": "bool", - "getter": "is_blend_splits_enabled", - "setter": "set_blend_splits", - "index": -1 - }, - { - "name": "directional_shadow_depth_range", - "type": "int", - "getter": "get_shadow_depth_range", - "setter": "set_shadow_depth_range", - "index": -1 - }, - { - "name": "directional_shadow_max_distance", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 9 - }, - { - "name": "directional_shadow_mode", - "type": "int", - "getter": "get_shadow_mode", - "setter": "set_shadow_mode", - "index": -1 - }, - { - "name": "directional_shadow_normal_bias", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 13 - }, - { - "name": "directional_shadow_split_1", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 10 - }, - { - "name": "directional_shadow_split_2", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 11 - }, - { - "name": "directional_shadow_split_3", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 12 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_shadow_depth_range", - "return_type": "enum.DirectionalLight::ShadowDepthRange", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_mode", - "return_type": "enum.DirectionalLight::ShadowMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_blend_splits_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_blend_splits", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_depth_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ShadowMode", - "values": { - "SHADOW_ORTHOGONAL": 0, - "SHADOW_PARALLEL_2_SPLITS": 1, - "SHADOW_PARALLEL_4_SPLITS": 2 - } - }, - { - "name": "ShadowDepthRange", - "values": { - "SHADOW_DEPTH_RANGE_STABLE": 0, - "SHADOW_DEPTH_RANGE_OPTIMIZED": 1 - } - } - ] - }, - { - "name": "DynamicFont", - "base_class": "Font", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "SPACING_BOTTOM": 1, - "SPACING_CHAR": 2, - "SPACING_SPACE": 3, - "SPACING_TOP": 0 - }, - "properties": [ - { - "name": "extra_spacing_bottom", - "type": "int", - "getter": "get_spacing", - "setter": "set_spacing", - "index": 1 - }, - { - "name": "extra_spacing_char", - "type": "int", - "getter": "get_spacing", - "setter": "set_spacing", - "index": 2 - }, - { - "name": "extra_spacing_space", - "type": "int", - "getter": "get_spacing", - "setter": "set_spacing", - "index": 3 - }, - { - "name": "extra_spacing_top", - "type": "int", - "getter": "get_spacing", - "setter": "set_spacing", - "index": 0 - }, - { - "name": "font_data", - "type": "DynamicFontData", - "getter": "get_font_data", - "setter": "set_font_data", - "index": -1 - }, - { - "name": "outline_color", - "type": "Color", - "getter": "get_outline_color", - "setter": "set_outline_color", - "index": -1 - }, - { - "name": "outline_size", - "type": "int", - "getter": "get_outline_size", - "setter": "set_outline_size", - "index": -1 - }, - { - "name": "size", - "type": "int", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "use_filter", - "type": "bool", - "getter": "get_use_filter", - "setter": "set_use_filter", - "index": -1 - }, - { - "name": "use_mipmaps", - "type": "bool", - "getter": "get_use_mipmaps", - "setter": "set_use_mipmaps", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_fallback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "DynamicFontData", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_available_chars", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fallback", - "return_type": "DynamicFontData", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_fallback_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_font_data", - "return_type": "DynamicFontData", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_outline_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_outline_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spacing", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_use_filter", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_mipmaps", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_fallback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fallback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "DynamicFontData", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_font_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "DynamicFontData", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_outline_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_outline_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spacing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_filter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_mipmaps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "SpacingType", - "values": { - "SPACING_TOP": 0, - "SPACING_BOTTOM": 1, - "SPACING_CHAR": 2, - "SPACING_SPACE": 3 - } - } - ] - }, - { - "name": "DynamicFontData", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "HINTING_LIGHT": 1, - "HINTING_NONE": 0, - "HINTING_NORMAL": 2 - }, - "properties": [ - { - "name": "antialiased", - "type": "bool", - "getter": "is_antialiased", - "setter": "set_antialiased", - "index": -1 - }, - { - "name": "font_path", - "type": "String", - "getter": "get_font_path", - "setter": "set_font_path", - "index": -1 - }, - { - "name": "hinting", - "type": "int", - "getter": "get_hinting", - "setter": "set_hinting", - "index": -1 - }, - { - "name": "override_oversampling", - "type": "float", - "getter": "get_override_oversampling", - "setter": "set_override_oversampling", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_font_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hinting", - "return_type": "enum.DynamicFontData::Hinting", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_override_oversampling", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_antialiased", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_antialiased", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "antialiased", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_font_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hinting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_override_oversampling", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "oversampling", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Hinting", - "values": { - "HINTING_NONE": 0, - "HINTING_LIGHT": 1, - "HINTING_NORMAL": 2 - } - } - ] - }, - { - "name": "EditorExportPlugin", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_export_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "features", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "is_debug", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_export_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_export_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "features", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "file", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "remap", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_bundle_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_cpp_code", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_embedded_framework", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_framework", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_linker_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_plist_content", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plist_content", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_ios_project_static_lib", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_osx_plugin_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_shared_object", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tags", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorFeatureProfile", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "FEATURE_3D": 0, - "FEATURE_ASSET_LIB": 2, - "FEATURE_FILESYSTEM_DOCK": 5, - "FEATURE_IMPORT_DOCK": 6, - "FEATURE_MAX": 7, - "FEATURE_NODE_DOCK": 4, - "FEATURE_SCENE_TREE": 3, - "FEATURE_SCRIPT": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_feature_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_class_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_class_editor_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_class_property_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_feature_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_from_file", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save_to_file", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_class", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_class_editor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_class_property", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_feature", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Feature", - "values": { - "FEATURE_3D": 0, - "FEATURE_SCRIPT": 1, - "FEATURE_ASSET_LIB": 2, - "FEATURE_SCENE_TREE": 3, - "FEATURE_NODE_DOCK": 4, - "FEATURE_FILESYSTEM_DOCK": 5, - "FEATURE_IMPORT_DOCK": 6, - "FEATURE_MAX": 7 - } - } - ] - }, - { - "name": "EditorFileDialog", - "base_class": "ConfirmationDialog", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "ACCESS_FILESYSTEM": 2, - "ACCESS_RESOURCES": 0, - "ACCESS_USERDATA": 1, - "DISPLAY_LIST": 1, - "DISPLAY_THUMBNAILS": 0, - "MODE_OPEN_ANY": 3, - "MODE_OPEN_DIR": 2, - "MODE_OPEN_FILE": 0, - "MODE_OPEN_FILES": 1, - "MODE_SAVE_FILE": 4 - }, - "properties": [ - { - "name": "access", - "type": "int", - "getter": "get_access", - "setter": "set_access", - "index": -1 - }, - { - "name": "current_dir", - "type": "String", - "getter": "get_current_dir", - "setter": "set_current_dir", - "index": -1 - }, - { - "name": "current_file", - "type": "String", - "getter": "get_current_file", - "setter": "set_current_file", - "index": -1 - }, - { - "name": "current_path", - "type": "String", - "getter": "get_current_path", - "setter": "set_current_path", - "index": -1 - }, - { - "name": "disable_overwrite_warning", - "type": "bool", - "getter": "is_overwrite_warning_disabled", - "setter": "set_disable_overwrite_warning", - "index": -1 - }, - { - "name": "display_mode", - "type": "int", - "getter": "get_display_mode", - "setter": "set_display_mode", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "show_hidden_files", - "type": "bool", - "getter": "is_showing_hidden_files", - "setter": "set_show_hidden_files", - "index": -1 - } - ], - "signals": [ - { - "name": "dir_selected", - "arguments": [ - { - "name": "dir", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "file_selected", - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "files_selected", - "arguments": [ - { - "name": "paths", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_action_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_cancel_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_dir_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_favorite_move_down", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_favorite_move_up", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_favorite_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_favorite_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_filter_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_go_back", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_go_forward", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_go_up", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_item_db_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_item_list_item_rmb_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_item_list_rmb_clicked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_item_menu_id_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_item_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_items_clear_selection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_make_dir", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_make_dir_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_multi_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_recent_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_save_confirm_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_select_drive", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_thumbnail_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_thumbnail_result", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_dir", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_file_list", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_file_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_filter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_filters", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_access", - "return_type": "enum.EditorFileDialog::Access", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_display_mode", - "return_type": "enum.EditorFileDialog::DisplayMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.EditorFileDialog::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vbox", - "return_type": "VBoxContainer", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "invalidate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_overwrite_warning_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_showing_hidden_files", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_access", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "access", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_dir", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dir", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_overwrite_warning", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_display_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_hidden_files", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "show", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DisplayMode", - "values": { - "DISPLAY_THUMBNAILS": 0, - "DISPLAY_LIST": 1 - } - }, - { - "name": "Mode", - "values": { - "MODE_OPEN_FILE": 0, - "MODE_OPEN_FILES": 1, - "MODE_OPEN_DIR": 2, - "MODE_OPEN_ANY": 3, - "MODE_SAVE_FILE": 4 - } - }, - { - "name": "Access", - "values": { - "ACCESS_RESOURCES": 0, - "ACCESS_USERDATA": 1, - "ACCESS_FILESYSTEM": 2 - } - } - ] - }, - { - "name": "EditorFileSystem", - "base_class": "Node", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "filesystem_changed", - "arguments": [ - ] - }, - { - "name": "resources_reimported", - "arguments": [ - { - "name": "resources", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resources_reload", - "arguments": [ - { - "name": "resources", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sources_changed", - "arguments": [ - { - "name": "exist", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_file_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_filesystem", - "return_type": "EditorFileSystemDirectory", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_filesystem_path", - "return_type": "EditorFileSystemDirectory", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_scanning_progress", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_scanning", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "scan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "scan_sources", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "update_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_script_classes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorFileSystemDirectory", - "base_class": "Object", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "find_dir_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_file_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_file_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_file_import_is_valid", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_file_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_file_script_class_extends", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_file_script_class_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_file_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent", - "return_type": "EditorFileSystemDirectory", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdir", - "return_type": "EditorFileSystemDirectory", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_subdir_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorImportPlugin", - "base_class": "ResourceImporter", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_import_options", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "preset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_import_order", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_importer_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_option_visibility", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "option", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "options", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_preset_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_preset_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "preset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_priority", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_recognized_extensions", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resource_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_save_extension", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "import", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "source_file", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "save_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "options", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - }, - { - "name": "platform_variants", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "gen_files", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorInspector", - "base_class": "ScrollContainer", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "object_id_selected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_edited", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_keyed", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_selected", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_toggled", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "checked", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resource_selected", - "arguments": [ - { - "name": "res", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "prop", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "restart_requested", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_edit_request_change", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_feature_profile_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_filter_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_multiple_properties_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_node_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_object_id_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_property_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "arg3", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "_property_changed_update_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_property_checked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_property_keyed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_property_keyed_with_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_property_pinned", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pinned", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_property_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_resource_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_vscroll_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "refresh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorInspectorPlugin", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_custom_control", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_property_editor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "editor", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_property_editor_for_multiple_properties", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "properties", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "editor", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_handle", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "parse_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "parse_category", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "category", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "parse_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "parse_property", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hint", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hint_text", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "usage", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorInterface", - "base_class": "Node", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "distraction_free_mode", - "type": "bool", - "getter": "is_distraction_free_mode_enabled", - "setter": "set_distraction_free_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "edit_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "edit_resource", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "edit_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "script", - "type": "Script", - "has_default_value": false, - "default_value": "" - }, - { - "name": "line", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "column", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "grab_focus", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_base_control", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edited_scene_root", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_editor_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_editor_settings", - "return_type": "EditorSettings", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_editor_viewport", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_file_system_dock", - "return_type": "FileSystemDock", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inspector", - "return_type": "EditorInspector", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_open_scenes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_playing_scene", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resource_filesystem", - "return_type": "EditorFileSystem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resource_previewer", - "return_type": "EditorResourcePreview", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script_editor", - "return_type": "ScriptEditor", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selection", - "return_type": "EditorSelection", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "inspect_object", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "for_property", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "inspector_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_distraction_free_mode_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing_scene", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_plugin_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_mesh_previews", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "meshes", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "preview_size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "open_scene_from_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene_filepath", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "play_current_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play_custom_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene_filepath", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "play_main_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reload_scene_from_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene_filepath", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save_scene", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "save_scene_as", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "with_preview", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "select_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_distraction_free_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enter", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_main_screen_editor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_plugin_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop_playing_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorPlugin", - "base_class": "Node", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "CONTAINER_CANVAS_EDITOR_BOTTOM": 8, - "CONTAINER_CANVAS_EDITOR_MENU": 5, - "CONTAINER_CANVAS_EDITOR_SIDE_LEFT": 6, - "CONTAINER_CANVAS_EDITOR_SIDE_RIGHT": 7, - "CONTAINER_PROJECT_SETTING_TAB_LEFT": 10, - "CONTAINER_PROJECT_SETTING_TAB_RIGHT": 11, - "CONTAINER_PROPERTY_EDITOR_BOTTOM": 9, - "CONTAINER_SPATIAL_EDITOR_BOTTOM": 4, - "CONTAINER_SPATIAL_EDITOR_MENU": 1, - "CONTAINER_SPATIAL_EDITOR_SIDE_LEFT": 2, - "CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT": 3, - "CONTAINER_TOOLBAR": 0, - "DOCK_SLOT_LEFT_BL": 1, - "DOCK_SLOT_LEFT_BR": 3, - "DOCK_SLOT_LEFT_UL": 0, - "DOCK_SLOT_LEFT_UR": 2, - "DOCK_SLOT_MAX": 8, - "DOCK_SLOT_RIGHT_BL": 5, - "DOCK_SLOT_RIGHT_BR": 7, - "DOCK_SLOT_RIGHT_UL": 4, - "DOCK_SLOT_RIGHT_UR": 6 - }, - "properties": [ - ], - "signals": [ - { - "name": "main_screen_changed", - "arguments": [ - { - "name": "screen_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resource_saved", - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scene_changed", - "arguments": [ - { - "name": "scene_root", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scene_closed", - "arguments": [ - { - "name": "filepath", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "add_autoload_singleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_control_to_bottom_panel", - "return_type": "ToolButton", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - }, - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_control_to_container", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "container", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_control_to_dock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "slot", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_custom_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "base", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "script", - "type": "Script", - "has_default_value": false, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_export_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "EditorExportPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_import_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "importer", - "type": "EditorImportPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_inspector_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "EditorInspectorPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_scene_import_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene_importer", - "type": "EditorSceneImporter", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_spatial_gizmo_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "EditorSpatialGizmoPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_tool_menu_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "handler", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "callback", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ud", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "add_tool_submenu_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "submenu", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_changes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "build", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "disable_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "edit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "enable_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "forward_canvas_draw_over_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "overlay", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "forward_canvas_force_draw_over_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "overlay", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "forward_canvas_gui_input", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "forward_spatial_draw_over_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "overlay", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "forward_spatial_force_draw_over_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "overlay", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "forward_spatial_gui_input", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "Camera", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_breakpoints", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_editor_interface", - "return_type": "EditorInterface", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_plugin_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_plugin_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script_create_dialog", - "return_type": "ScriptCreateDialog", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_state", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_undo_redo", - "return_type": "UndoRedo", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_window_layout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layout", - "type": "ConfigFile", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "handles", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_main_screen", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "hide_bottom_panel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_bottom_panel_item_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "queue_save_layout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_autoload_singleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_control_from_bottom_panel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_control_from_container", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "container", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_control_from_docks", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_custom_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_export_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "EditorExportPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_import_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "importer", - "type": "EditorImportPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_inspector_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "EditorInspectorPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_scene_import_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene_importer", - "type": "EditorSceneImporter", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_spatial_gizmo_plugin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plugin", - "type": "EditorSpatialGizmoPlugin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_tool_menu_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save_external_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_force_draw_over_forwarding_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_input_event_forwarding_always_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "state", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_layout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layout", - "type": "ConfigFile", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_overlays", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "DockSlot", - "values": { - "DOCK_SLOT_LEFT_UL": 0, - "DOCK_SLOT_LEFT_BL": 1, - "DOCK_SLOT_LEFT_UR": 2, - "DOCK_SLOT_LEFT_BR": 3, - "DOCK_SLOT_RIGHT_UL": 4, - "DOCK_SLOT_RIGHT_BL": 5, - "DOCK_SLOT_RIGHT_UR": 6, - "DOCK_SLOT_RIGHT_BR": 7, - "DOCK_SLOT_MAX": 8 - } - }, - { - "name": "CustomControlContainer", - "values": { - "CONTAINER_TOOLBAR": 0, - "CONTAINER_SPATIAL_EDITOR_MENU": 1, - "CONTAINER_SPATIAL_EDITOR_SIDE_LEFT": 2, - "CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT": 3, - "CONTAINER_SPATIAL_EDITOR_BOTTOM": 4, - "CONTAINER_CANVAS_EDITOR_MENU": 5, - "CONTAINER_CANVAS_EDITOR_SIDE_LEFT": 6, - "CONTAINER_CANVAS_EDITOR_SIDE_RIGHT": 7, - "CONTAINER_CANVAS_EDITOR_BOTTOM": 8, - "CONTAINER_PROPERTY_EDITOR_BOTTOM": 9, - "CONTAINER_PROJECT_SETTING_TAB_LEFT": 10, - "CONTAINER_PROJECT_SETTING_TAB_RIGHT": 11 - } - } - ] - }, - { - "name": "EditorProperty", - "base_class": "Container", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "checkable", - "type": "bool", - "getter": "is_checkable", - "setter": "set_checkable", - "index": -1 - }, - { - "name": "checked", - "type": "bool", - "getter": "is_checked", - "setter": "set_checked", - "index": -1 - }, - { - "name": "draw_red", - "type": "bool", - "getter": "is_draw_red", - "setter": "set_draw_red", - "index": -1 - }, - { - "name": "keying", - "type": "bool", - "getter": "is_keying", - "setter": "set_keying", - "index": -1 - }, - { - "name": "label", - "type": "String", - "getter": "get_label", - "setter": "set_label", - "index": -1 - }, - { - "name": "read_only", - "type": "bool", - "getter": "is_read_only", - "setter": "set_read_only", - "index": -1 - } - ], - "signals": [ - { - "name": "multiple_properties_changed", - "arguments": [ - { - "name": "properties", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "object_id_selected", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_changed", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_checked", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "checked", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_keyed", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_keyed_with_value", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_pinned", - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pinned", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resource_selected", - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "selected", - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "focusable_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_focusable_focused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_menu_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "option", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_key_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_revert_and_pin_status", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_focusable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "emit_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "field", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "changing", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_edited_object", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edited_property", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_label", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tooltip_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_checkable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_checked", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_draw_red", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_keying", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_read_only", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bottom_editor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "editor", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_checkable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "checkable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_checked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "checked", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_red", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "draw_red", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_keying", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keying", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_label", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_read_only", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "read_only", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_property", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorResourceConversionPlugin", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_convert", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_converts_to", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorResourcePicker", - "base_class": "HBoxContainer", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - }, - { - "name": "editable", - "type": "bool", - "getter": "is_editable", - "setter": "set_editable", - "index": -1 - }, - { - "name": "edited_resource", - "type": "Resource", - "getter": "get_edited_resource", - "setter": "set_edited_resource", - "index": -1 - }, - { - "name": "toggle_mode", - "type": "bool", - "getter": "is_toggle_mode", - "setter": "set_toggle_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "resource_changed", - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resource_selected", - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "edit", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_button_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_button_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_edit_menu_cbk", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_quick_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_file_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_resource_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_menu", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_resource_preview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_drop_data_fw", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "drop_data_fw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_allowed_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_data_fw", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_edited_resource", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "handle_menu_selected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_editable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_toggle_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_create_options", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "menu_node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edited_resource", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_toggle_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_toggle_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorResourcePreview", - "base_class": "Node", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "preview_invalidated", - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_preview_ready", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg4", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg5", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_preview_generator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "generator", - "type": "EditorResourcePreviewGenerator", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "check_for_invalidation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "queue_edited_resource_preview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver_func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "queue_resource_preview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver_func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_preview_generator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "generator", - "type": "EditorResourcePreviewGenerator", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorResourcePreviewGenerator", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "can_generate_small_preview", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "generate", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generate_from_path", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generate_small_preview_automatically", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "handles", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSceneImporter", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "IMPORT_ANIMATION": 2, - "IMPORT_ANIMATION_DETECT_LOOP": 4, - "IMPORT_ANIMATION_FORCE_ALL_TRACKS_IN_ALL_CLIPS": 16, - "IMPORT_ANIMATION_KEEP_VALUE_TRACKS": 32, - "IMPORT_ANIMATION_OPTIMIZE": 8, - "IMPORT_FAIL_ON_MISSING_DEPENDENCIES": 512, - "IMPORT_GENERATE_TANGENT_ARRAYS": 256, - "IMPORT_MATERIALS_IN_INSTANCES": 1024, - "IMPORT_SCENE": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_extensions", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_import_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_import_animation", - "return_type": "Animation", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bake_fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_import_scene", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bake_fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "import_animation_from_other_importer", - "return_type": "Animation", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bake_fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "import_scene_from_other_importer", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bake_fps", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "compress_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSceneImporterFBX", - "base_class": "EditorSceneImporter", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "EditorSceneImporterGLTF", - "base_class": "EditorSceneImporter", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "EditorScenePostImport", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_source_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_source_folder", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "post_import", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorScript", - "base_class": "Reference", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_run", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_root_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_editor_interface", - "return_type": "EditorInterface", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scene", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorScriptPicker", - "base_class": "EditorResourcePicker", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "script_owner", - "type": "Node", - "getter": "get_script_owner", - "setter": "set_script_owner", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_script_owner", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_script_owner", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner_node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSelection", - "base_class": "Object", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "selection_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_emit_change", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_node_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected_nodes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transformable_selected_nodes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSettings", - "base_class": "Resource", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "NOTIFICATION_EDITOR_SETTINGS_CHANGED": 10000 - }, - "properties": [ - ], - "signals": [ - { - "name": "settings_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "add_property_info", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "info", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "erase", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_favorites", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_project_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "default", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "get_project_settings_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_recent_dirs", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_setting", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_settings_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_setting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_can_revert", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_get_revert", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_favorites", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dirs", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_initial_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "update_current", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_project_metadata", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "section", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_recent_dirs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dirs", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_setting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSpatialGizmo", - "base_class": "SpatialGizmo", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_collision_segments", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_collision_triangles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "triangles", - "type": "TriangleMesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_handles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "handles", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - }, - { - "name": "billboard", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "secondary", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_lines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lines", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - }, - { - "name": "billboard", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - } - ] - }, - { - "name": "add_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "billboard", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "skeleton", - "type": "SkinReference", - "has_default_value": true, - "default_value": "[Object:null]" - }, - { - "name": "material", - "type": "Material", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "add_unscaled_billboard", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - }, - { - "name": "default_scale", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "commit_handle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "restore", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cancel", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_handle_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_handle_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_plugin", - "return_type": "EditorSpatialGizmoPlugin", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spatial_node", - "return_type": "Spatial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_handle_highlighted", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "redraw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_handle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "camera", - "type": "Camera", - "has_default_value": false, - "default_value": "" - }, - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hidden", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hidden", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spatial_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSpatialGizmoPlugin", - "base_class": "Resource", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "SpatialMaterial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_be_hidden", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "commit_handle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "restore", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cancel", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_gizmo", - "return_type": "EditorSpatialGizmo", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "spatial", - "type": "Spatial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_handle_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "billboard", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "create_icon_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "on_top", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "color", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - } - ] - }, - { - "name": "create_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "billboard", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "on_top", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "use_vertex_color", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_handle_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_handle_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_material", - "return_type": "SpatialMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_gizmo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "spatial", - "type": "Spatial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_handle_highlighted", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_selectable_when_hidden", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "redraw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_handle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "EditorSpatialGizmo", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "camera", - "type": "Camera", - "has_default_value": false, - "default_value": "" - }, - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorSpinSlider", - "base_class": "Range", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "flat", - "type": "bool", - "getter": "is_flat", - "setter": "set_flat", - "index": -1 - }, - { - "name": "label", - "type": "String", - "getter": "get_label", - "setter": "set_label", - "index": -1 - }, - { - "name": "read_only", - "type": "bool", - "getter": "is_read_only", - "setter": "set_read_only", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_grabber_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_grabber_mouse_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_grabber_mouse_exited", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_value_focus_exited", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_value_input_closed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_value_input_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_value_input_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_label", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flat", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_read_only", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_flat", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flat", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_label", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_read_only", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "read_only", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "EditorVCSInterface", - "base_class": "Object", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "CHANGE_TYPE_DELETED": 3, - "CHANGE_TYPE_MODIFIED": 1, - "CHANGE_TYPE_NEW": 0, - "CHANGE_TYPE_RENAMED": 2, - "CHANGE_TYPE_TYPECHANGE": 4, - "CHANGE_TYPE_UNMERGED": 5, - "TREE_AREA_COMMIT": 0, - "TREE_AREA_STAGED": 1, - "TREE_AREA_UNSTAGED": 2 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_checkout_branch", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "branch_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_commit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msg", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_create_branch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "branch_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_create_remote", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "remote_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "remote_url", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_discard_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_fetch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "remote", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_branch_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_current_branch_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_diff", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "identifier", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_line_diff", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_modified_files_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_previous_commits", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_commits", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_remotes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_vcs_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_initialize", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "project_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_pull", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "remote", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_push", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "remote", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_remove_branch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "branch_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_remove_remote", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "remote_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_credentials", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "username", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "password", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ssh_public_key_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ssh_private_key_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ssh_passphrase", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_shut_down", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_stage_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unstage_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_diff_hunks_into_diff_file", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "diff_file", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - }, - { - "name": "diff_hunks", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_line_diffs_into_diff_hunk", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "diff_hunk", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - }, - { - "name": "line_diffs", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_commit", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msg", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "author", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "unix_timestamp", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset_minutes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_diff_file", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "new_file", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "old_file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_diff_hunk", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_start", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_start", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "old_lines", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_lines", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_diff_line", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "new_line_no", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "old_line_no", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "content", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "status", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_status_file", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "change_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "area", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "popup_error", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msg", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ChangeType", - "values": { - "CHANGE_TYPE_NEW": 0, - "CHANGE_TYPE_MODIFIED": 1, - "CHANGE_TYPE_RENAMED": 2, - "CHANGE_TYPE_DELETED": 3, - "CHANGE_TYPE_TYPECHANGE": 4, - "CHANGE_TYPE_UNMERGED": 5 - } - }, - { - "name": "TreeArea", - "values": { - "TREE_AREA_COMMIT": 0, - "TREE_AREA_STAGED": 1, - "TREE_AREA_UNSTAGED": 2 - } - } - ] - }, - { - "name": "EncodedObjectAsID", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "object_id", - "type": "int", - "getter": "get_object_id", - "setter": "set_object_id", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_object_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_object_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Environment", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "BG_CAMERA_FEED": 6, - "BG_CANVAS": 4, - "BG_CLEAR_COLOR": 0, - "BG_COLOR": 1, - "BG_COLOR_SKY": 3, - "BG_KEEP": 5, - "BG_MAX": 7, - "BG_SKY": 2, - "DOF_BLUR_QUALITY_HIGH": 2, - "DOF_BLUR_QUALITY_LOW": 0, - "DOF_BLUR_QUALITY_MEDIUM": 1, - "GLOW_BLEND_MODE_ADDITIVE": 0, - "GLOW_BLEND_MODE_REPLACE": 3, - "GLOW_BLEND_MODE_SCREEN": 1, - "GLOW_BLEND_MODE_SOFTLIGHT": 2, - "SSAO_BLUR_1x1": 1, - "SSAO_BLUR_2x2": 2, - "SSAO_BLUR_3x3": 3, - "SSAO_BLUR_DISABLED": 0, - "SSAO_QUALITY_HIGH": 2, - "SSAO_QUALITY_LOW": 0, - "SSAO_QUALITY_MEDIUM": 1, - "TONE_MAPPER_ACES": 3, - "TONE_MAPPER_ACES_FITTED": 4, - "TONE_MAPPER_FILMIC": 2, - "TONE_MAPPER_LINEAR": 0, - "TONE_MAPPER_REINHARDT": 1 - }, - "properties": [ - { - "name": "adjustment_brightness", - "type": "float", - "getter": "get_adjustment_brightness", - "setter": "set_adjustment_brightness", - "index": -1 - }, - { - "name": "adjustment_color_correction", - "type": "Texture", - "getter": "get_adjustment_color_correction", - "setter": "set_adjustment_color_correction", - "index": -1 - }, - { - "name": "adjustment_contrast", - "type": "float", - "getter": "get_adjustment_contrast", - "setter": "set_adjustment_contrast", - "index": -1 - }, - { - "name": "adjustment_enabled", - "type": "bool", - "getter": "is_adjustment_enabled", - "setter": "set_adjustment_enable", - "index": -1 - }, - { - "name": "adjustment_saturation", - "type": "float", - "getter": "get_adjustment_saturation", - "setter": "set_adjustment_saturation", - "index": -1 - }, - { - "name": "ambient_light_color", - "type": "Color", - "getter": "get_ambient_light_color", - "setter": "set_ambient_light_color", - "index": -1 - }, - { - "name": "ambient_light_energy", - "type": "float", - "getter": "get_ambient_light_energy", - "setter": "set_ambient_light_energy", - "index": -1 - }, - { - "name": "ambient_light_sky_contribution", - "type": "float", - "getter": "get_ambient_light_sky_contribution", - "setter": "set_ambient_light_sky_contribution", - "index": -1 - }, - { - "name": "auto_exposure_enabled", - "type": "bool", - "getter": "get_tonemap_auto_exposure", - "setter": "set_tonemap_auto_exposure", - "index": -1 - }, - { - "name": "auto_exposure_max_luma", - "type": "float", - "getter": "get_tonemap_auto_exposure_max", - "setter": "set_tonemap_auto_exposure_max", - "index": -1 - }, - { - "name": "auto_exposure_min_luma", - "type": "float", - "getter": "get_tonemap_auto_exposure_min", - "setter": "set_tonemap_auto_exposure_min", - "index": -1 - }, - { - "name": "auto_exposure_scale", - "type": "float", - "getter": "get_tonemap_auto_exposure_grey", - "setter": "set_tonemap_auto_exposure_grey", - "index": -1 - }, - { - "name": "auto_exposure_speed", - "type": "float", - "getter": "get_tonemap_auto_exposure_speed", - "setter": "set_tonemap_auto_exposure_speed", - "index": -1 - }, - { - "name": "background_camera_feed_id", - "type": "int", - "getter": "get_camera_feed_id", - "setter": "set_camera_feed_id", - "index": -1 - }, - { - "name": "background_canvas_max_layer", - "type": "int", - "getter": "get_canvas_max_layer", - "setter": "set_canvas_max_layer", - "index": -1 - }, - { - "name": "background_color", - "type": "Color", - "getter": "get_bg_color", - "setter": "set_bg_color", - "index": -1 - }, - { - "name": "background_energy", - "type": "float", - "getter": "get_bg_energy", - "setter": "set_bg_energy", - "index": -1 - }, - { - "name": "background_mode", - "type": "int", - "getter": "get_background", - "setter": "set_background", - "index": -1 - }, - { - "name": "background_sky", - "type": "Sky", - "getter": "get_sky", - "setter": "set_sky", - "index": -1 - }, - { - "name": "background_sky_custom_fov", - "type": "float", - "getter": "get_sky_custom_fov", - "setter": "set_sky_custom_fov", - "index": -1 - }, - { - "name": "background_sky_orientation", - "type": "Basis", - "getter": "get_sky_orientation", - "setter": "set_sky_orientation", - "index": -1 - }, - { - "name": "background_sky_rotation", - "type": "Vector3", - "getter": "get_sky_rotation", - "setter": "set_sky_rotation", - "index": -1 - }, - { - "name": "background_sky_rotation_degrees", - "type": "Vector3", - "getter": "get_sky_rotation_degrees", - "setter": "set_sky_rotation_degrees", - "index": -1 - }, - { - "name": "dof_blur_far_amount", - "type": "float", - "getter": "get_dof_blur_far_amount", - "setter": "set_dof_blur_far_amount", - "index": -1 - }, - { - "name": "dof_blur_far_distance", - "type": "float", - "getter": "get_dof_blur_far_distance", - "setter": "set_dof_blur_far_distance", - "index": -1 - }, - { - "name": "dof_blur_far_enabled", - "type": "bool", - "getter": "is_dof_blur_far_enabled", - "setter": "set_dof_blur_far_enabled", - "index": -1 - }, - { - "name": "dof_blur_far_quality", - "type": "int", - "getter": "get_dof_blur_far_quality", - "setter": "set_dof_blur_far_quality", - "index": -1 - }, - { - "name": "dof_blur_far_transition", - "type": "float", - "getter": "get_dof_blur_far_transition", - "setter": "set_dof_blur_far_transition", - "index": -1 - }, - { - "name": "dof_blur_near_amount", - "type": "float", - "getter": "get_dof_blur_near_amount", - "setter": "set_dof_blur_near_amount", - "index": -1 - }, - { - "name": "dof_blur_near_distance", - "type": "float", - "getter": "get_dof_blur_near_distance", - "setter": "set_dof_blur_near_distance", - "index": -1 - }, - { - "name": "dof_blur_near_enabled", - "type": "bool", - "getter": "is_dof_blur_near_enabled", - "setter": "set_dof_blur_near_enabled", - "index": -1 - }, - { - "name": "dof_blur_near_quality", - "type": "int", - "getter": "get_dof_blur_near_quality", - "setter": "set_dof_blur_near_quality", - "index": -1 - }, - { - "name": "dof_blur_near_transition", - "type": "float", - "getter": "get_dof_blur_near_transition", - "setter": "set_dof_blur_near_transition", - "index": -1 - }, - { - "name": "fog_color", - "type": "Color", - "getter": "get_fog_color", - "setter": "set_fog_color", - "index": -1 - }, - { - "name": "fog_depth_begin", - "type": "float", - "getter": "get_fog_depth_begin", - "setter": "set_fog_depth_begin", - "index": -1 - }, - { - "name": "fog_depth_curve", - "type": "float", - "getter": "get_fog_depth_curve", - "setter": "set_fog_depth_curve", - "index": -1 - }, - { - "name": "fog_depth_enabled", - "type": "bool", - "getter": "is_fog_depth_enabled", - "setter": "set_fog_depth_enabled", - "index": -1 - }, - { - "name": "fog_depth_end", - "type": "float", - "getter": "get_fog_depth_end", - "setter": "set_fog_depth_end", - "index": -1 - }, - { - "name": "fog_enabled", - "type": "bool", - "getter": "is_fog_enabled", - "setter": "set_fog_enabled", - "index": -1 - }, - { - "name": "fog_height_curve", - "type": "float", - "getter": "get_fog_height_curve", - "setter": "set_fog_height_curve", - "index": -1 - }, - { - "name": "fog_height_enabled", - "type": "bool", - "getter": "is_fog_height_enabled", - "setter": "set_fog_height_enabled", - "index": -1 - }, - { - "name": "fog_height_max", - "type": "float", - "getter": "get_fog_height_max", - "setter": "set_fog_height_max", - "index": -1 - }, - { - "name": "fog_height_min", - "type": "float", - "getter": "get_fog_height_min", - "setter": "set_fog_height_min", - "index": -1 - }, - { - "name": "fog_sun_amount", - "type": "float", - "getter": "get_fog_sun_amount", - "setter": "set_fog_sun_amount", - "index": -1 - }, - { - "name": "fog_sun_color", - "type": "Color", - "getter": "get_fog_sun_color", - "setter": "set_fog_sun_color", - "index": -1 - }, - { - "name": "fog_transmit_curve", - "type": "float", - "getter": "get_fog_transmit_curve", - "setter": "set_fog_transmit_curve", - "index": -1 - }, - { - "name": "fog_transmit_enabled", - "type": "bool", - "getter": "is_fog_transmit_enabled", - "setter": "set_fog_transmit_enabled", - "index": -1 - }, - { - "name": "glow_bicubic_upscale", - "type": "bool", - "getter": "is_glow_bicubic_upscale_enabled", - "setter": "set_glow_bicubic_upscale", - "index": -1 - }, - { - "name": "glow_blend_mode", - "type": "int", - "getter": "get_glow_blend_mode", - "setter": "set_glow_blend_mode", - "index": -1 - }, - { - "name": "glow_bloom", - "type": "float", - "getter": "get_glow_bloom", - "setter": "set_glow_bloom", - "index": -1 - }, - { - "name": "glow_enabled", - "type": "bool", - "getter": "is_glow_enabled", - "setter": "set_glow_enabled", - "index": -1 - }, - { - "name": "glow_hdr_luminance_cap", - "type": "float", - "getter": "get_glow_hdr_luminance_cap", - "setter": "set_glow_hdr_luminance_cap", - "index": -1 - }, - { - "name": "glow_hdr_scale", - "type": "float", - "getter": "get_glow_hdr_bleed_scale", - "setter": "set_glow_hdr_bleed_scale", - "index": -1 - }, - { - "name": "glow_hdr_threshold", - "type": "float", - "getter": "get_glow_hdr_bleed_threshold", - "setter": "set_glow_hdr_bleed_threshold", - "index": -1 - }, - { - "name": "glow_high_quality", - "type": "bool", - "getter": "is_glow_high_quality_enabled", - "setter": "set_glow_high_quality", - "index": -1 - }, - { - "name": "glow_intensity", - "type": "float", - "getter": "get_glow_intensity", - "setter": "set_glow_intensity", - "index": -1 - }, - { - "name": "glow_levels/1", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 0 - }, - { - "name": "glow_levels/2", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 1 - }, - { - "name": "glow_levels/3", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 2 - }, - { - "name": "glow_levels/4", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 3 - }, - { - "name": "glow_levels/5", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 4 - }, - { - "name": "glow_levels/6", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 5 - }, - { - "name": "glow_levels/7", - "type": "bool", - "getter": "is_glow_level_enabled", - "setter": "set_glow_level", - "index": 6 - }, - { - "name": "glow_strength", - "type": "float", - "getter": "get_glow_strength", - "setter": "set_glow_strength", - "index": -1 - }, - { - "name": "ss_reflections_depth_tolerance", - "type": "float", - "getter": "get_ssr_depth_tolerance", - "setter": "set_ssr_depth_tolerance", - "index": -1 - }, - { - "name": "ss_reflections_enabled", - "type": "bool", - "getter": "is_ssr_enabled", - "setter": "set_ssr_enabled", - "index": -1 - }, - { - "name": "ss_reflections_fade_in", - "type": "float", - "getter": "get_ssr_fade_in", - "setter": "set_ssr_fade_in", - "index": -1 - }, - { - "name": "ss_reflections_fade_out", - "type": "float", - "getter": "get_ssr_fade_out", - "setter": "set_ssr_fade_out", - "index": -1 - }, - { - "name": "ss_reflections_max_steps", - "type": "int", - "getter": "get_ssr_max_steps", - "setter": "set_ssr_max_steps", - "index": -1 - }, - { - "name": "ss_reflections_roughness", - "type": "bool", - "getter": "is_ssr_rough", - "setter": "set_ssr_rough", - "index": -1 - }, - { - "name": "ssao_ao_channel_affect", - "type": "float", - "getter": "get_ssao_ao_channel_affect", - "setter": "set_ssao_ao_channel_affect", - "index": -1 - }, - { - "name": "ssao_bias", - "type": "float", - "getter": "get_ssao_bias", - "setter": "set_ssao_bias", - "index": -1 - }, - { - "name": "ssao_blur", - "type": "int", - "getter": "get_ssao_blur", - "setter": "set_ssao_blur", - "index": -1 - }, - { - "name": "ssao_color", - "type": "Color", - "getter": "get_ssao_color", - "setter": "set_ssao_color", - "index": -1 - }, - { - "name": "ssao_edge_sharpness", - "type": "float", - "getter": "get_ssao_edge_sharpness", - "setter": "set_ssao_edge_sharpness", - "index": -1 - }, - { - "name": "ssao_enabled", - "type": "bool", - "getter": "is_ssao_enabled", - "setter": "set_ssao_enabled", - "index": -1 - }, - { - "name": "ssao_intensity", - "type": "float", - "getter": "get_ssao_intensity", - "setter": "set_ssao_intensity", - "index": -1 - }, - { - "name": "ssao_intensity2", - "type": "float", - "getter": "get_ssao_intensity2", - "setter": "set_ssao_intensity2", - "index": -1 - }, - { - "name": "ssao_light_affect", - "type": "float", - "getter": "get_ssao_direct_light_affect", - "setter": "set_ssao_direct_light_affect", - "index": -1 - }, - { - "name": "ssao_quality", - "type": "int", - "getter": "get_ssao_quality", - "setter": "set_ssao_quality", - "index": -1 - }, - { - "name": "ssao_radius", - "type": "float", - "getter": "get_ssao_radius", - "setter": "set_ssao_radius", - "index": -1 - }, - { - "name": "ssao_radius2", - "type": "float", - "getter": "get_ssao_radius2", - "setter": "set_ssao_radius2", - "index": -1 - }, - { - "name": "tonemap_exposure", - "type": "float", - "getter": "get_tonemap_exposure", - "setter": "set_tonemap_exposure", - "index": -1 - }, - { - "name": "tonemap_mode", - "type": "int", - "getter": "get_tonemapper", - "setter": "set_tonemapper", - "index": -1 - }, - { - "name": "tonemap_white", - "type": "float", - "getter": "get_tonemap_white", - "setter": "set_tonemap_white", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_adjustment_brightness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_adjustment_color_correction", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_adjustment_contrast", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_adjustment_saturation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ambient_light_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ambient_light_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ambient_light_sky_contribution", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_background", - "return_type": "enum.Environment::BGMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bg_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bg_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera_feed_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_canvas_max_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_far_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_far_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_far_quality", - "return_type": "enum.Environment::DOFBlurQuality", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_far_transition", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_near_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_near_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_near_quality", - "return_type": "enum.Environment::DOFBlurQuality", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dof_blur_near_transition", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_depth_begin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_depth_curve", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_depth_end", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_height_curve", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_height_max", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_height_min", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_sun_amount", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_sun_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fog_transmit_curve", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_blend_mode", - "return_type": "enum.Environment::GlowBlendMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_bloom", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_hdr_bleed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_hdr_bleed_threshold", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_hdr_luminance_cap", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_intensity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glow_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky", - "return_type": "Sky", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_custom_fov", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_orientation", - "return_type": "Basis", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_rotation", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_rotation_degrees", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_ao_channel_affect", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_blur", - "return_type": "enum.Environment::SSAOBlur", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_direct_light_affect", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_edge_sharpness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_intensity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_intensity2", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_quality", - "return_type": "enum.Environment::SSAOQuality", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssao_radius2", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssr_depth_tolerance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssr_fade_in", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssr_fade_out", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssr_max_steps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_auto_exposure", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_auto_exposure_grey", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_auto_exposure_max", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_auto_exposure_min", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_auto_exposure_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_exposure", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemap_white", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tonemapper", - "return_type": "enum.Environment::ToneMapper", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_adjustment_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_dof_blur_far_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_dof_blur_near_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_fog_depth_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_fog_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_fog_height_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_fog_transmit_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_glow_bicubic_upscale_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_glow_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_glow_high_quality_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_glow_level_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_ssao_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ssr_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ssr_rough", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_adjustment_brightness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "brightness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_adjustment_color_correction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color_correction", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_adjustment_contrast", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contrast", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_adjustment_enable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_adjustment_saturation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "saturation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ambient_light_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ambient_light_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ambient_light_sky_contribution", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_background", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bg_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_camera_feed_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera_feed_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_canvas_max_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_far_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_far_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_far_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_far_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_far_transition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_near_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_near_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_near_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_near_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "level", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dof_blur_near_transition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_depth_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_depth_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_depth_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_depth_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_height_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_height_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_height_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_height_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_sun_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_sun_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_transmit_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fog_transmit_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_bicubic_upscale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_blend_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_bloom", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_hdr_bleed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_hdr_bleed_threshold", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "threshold", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_hdr_luminance_cap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_high_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_level", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glow_strength", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "strength", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sky", - "type": "Sky", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_custom_fov", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_orientation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "orientation", - "type": "Basis", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "euler_radians", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "euler_degrees", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_ao_channel_affect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_blur", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_direct_light_affect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_edge_sharpness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "edge_sharpness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_intensity2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "quality", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssao_radius2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssr_depth_tolerance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth_tolerance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssr_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssr_fade_in", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fade_in", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssr_fade_out", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fade_out", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssr_max_steps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_steps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssr_rough", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rough", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_auto_exposure", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "auto_exposure", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_auto_exposure_grey", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exposure_grey", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_auto_exposure_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exposure_max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_auto_exposure_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exposure_min", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_auto_exposure_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exposure_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_exposure", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exposure", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemap_white", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "white", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tonemapper", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "SSAOBlur", - "values": { - "SSAO_BLUR_DISABLED": 0, - "SSAO_BLUR_1x1": 1, - "SSAO_BLUR_2x2": 2, - "SSAO_BLUR_3x3": 3 - } - }, - { - "name": "ToneMapper", - "values": { - "TONE_MAPPER_LINEAR": 0, - "TONE_MAPPER_REINHARDT": 1, - "TONE_MAPPER_FILMIC": 2, - "TONE_MAPPER_ACES": 3, - "TONE_MAPPER_ACES_FITTED": 4 - } - }, - { - "name": "GlowBlendMode", - "values": { - "GLOW_BLEND_MODE_ADDITIVE": 0, - "GLOW_BLEND_MODE_SCREEN": 1, - "GLOW_BLEND_MODE_SOFTLIGHT": 2, - "GLOW_BLEND_MODE_REPLACE": 3 - } - }, - { - "name": "BGMode", - "values": { - "BG_CLEAR_COLOR": 0, - "BG_COLOR": 1, - "BG_SKY": 2, - "BG_COLOR_SKY": 3, - "BG_CANVAS": 4, - "BG_KEEP": 5, - "BG_CAMERA_FEED": 6, - "BG_MAX": 7 - } - }, - { - "name": "SSAOQuality", - "values": { - "SSAO_QUALITY_LOW": 0, - "SSAO_QUALITY_MEDIUM": 1, - "SSAO_QUALITY_HIGH": 2 - } - }, - { - "name": "DOFBlurQuality", - "values": { - "DOF_BLUR_QUALITY_LOW": 0, - "DOF_BLUR_QUALITY_MEDIUM": 1, - "DOF_BLUR_QUALITY_HIGH": 2 - } - } - ] - }, - { - "name": "Expression", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "execute", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inputs", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "base_instance", - "type": "Object", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "show_error", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_error_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_execute_failed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "parse", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "expression", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_names", - "type": "PoolStringArray", - "has_default_value": true, - "default_value": "[]" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ExternalTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "size", - "type": "Vector2", - "getter": "get_size", - "setter": "set_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_external_texture_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "FileDialog", - "base_class": "ConfirmationDialog", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ACCESS_FILESYSTEM": 2, - "ACCESS_RESOURCES": 0, - "ACCESS_USERDATA": 1, - "MODE_OPEN_ANY": 3, - "MODE_OPEN_DIR": 2, - "MODE_OPEN_FILE": 0, - "MODE_OPEN_FILES": 1, - "MODE_SAVE_FILE": 4 - }, - "properties": [ - { - "name": "access", - "type": "int", - "getter": "get_access", - "setter": "set_access", - "index": -1 - }, - { - "name": "current_dir", - "type": "String", - "getter": "get_current_dir", - "setter": "set_current_dir", - "index": -1 - }, - { - "name": "current_file", - "type": "String", - "getter": "get_current_file", - "setter": "set_current_file", - "index": -1 - }, - { - "name": "current_path", - "type": "String", - "getter": "get_current_path", - "setter": "set_current_path", - "index": -1 - }, - { - "name": "filters", - "type": "PoolStringArray", - "getter": "get_filters", - "setter": "set_filters", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "mode_overrides_title", - "type": "bool", - "getter": "is_mode_overriding_title", - "setter": "set_mode_overrides_title", - "index": -1 - }, - { - "name": "show_hidden_files", - "type": "bool", - "getter": "is_showing_hidden_files", - "setter": "set_show_hidden_files", - "index": -1 - } - ], - "signals": [ - { - "name": "dir_selected", - "arguments": [ - { - "name": "dir", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "file_selected", - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "files_selected", - "arguments": [ - { - "name": "paths", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_action_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_cancel_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_dir_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_filter_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_go_up", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_make_dir", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_make_dir_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_save_confirm_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_select_drive", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_item_activated", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_tree_multi_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_dir", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_file_list", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_file_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_filter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_filters", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "deselect_items", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_access", - "return_type": "enum.FileDialog::Access", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_filters", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_edit", - "return_type": "LineEdit", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.FileDialog::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vbox", - "return_type": "VBoxContainer", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "invalidate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_mode_overriding_title", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_showing_hidden_files", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_access", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "access", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_dir", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dir", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filters", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filters", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode_overrides_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "override", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_hidden_files", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "show", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_OPEN_FILE": 0, - "MODE_OPEN_FILES": 1, - "MODE_OPEN_DIR": 2, - "MODE_OPEN_ANY": 3, - "MODE_SAVE_FILE": 4 - } - }, - { - "name": "Access", - "values": { - "ACCESS_RESOURCES": 0, - "ACCESS_USERDATA": 1, - "ACCESS_FILESYSTEM": 2 - } - } - ] - }, - { - "name": "FileSystemDock", - "base_class": "VBoxContainer", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "display_mode_changed", - "arguments": [ - ] - }, - { - "name": "file_removed", - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "files_moved", - "arguments": [ - { - "name": "old_file", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "folder_moved", - "arguments": [ - { - "name": "old_folder", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "folder_removed", - "arguments": [ - { - "name": "folder", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "inherit", - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance", - "arguments": [ - { - "name": "files", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_bw_history", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_duplicate_operation_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_feature_profile_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_file_list_activate_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_list_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_list_rmb_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "option", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_list_rmb_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_list_rmb_select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_list_thumbnail_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_multi_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_file_sort_popup", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_folder_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_fs_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_fw_history", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_make_dir_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_make_scene_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_move_operation_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "overwrite", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "_move_with_overwrite", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_navigate_to_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "_preview_invalidated", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_rename_operation_confirm", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_rescan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_resource_created", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_search_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_select_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_toggle_file_display", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_toggle_split_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_activate_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_tree_empty_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_tree_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_multi_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_rmb_empty", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_rmb_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "option", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_rmb_select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_thumbnail_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_import_dock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_drop_data_fw", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "drop_data_fw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_drag_data_fw", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "navigate_to_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Font", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "string", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "clip_w", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "outline_modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - } - ] - }, - { - "name": "draw_char", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "char", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "next", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "outline", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_ascent", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_char_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "char", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "next", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_descent", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_string_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "string", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_wordwrap_string_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "string", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_outline", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_distance_field_hint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "update_changes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "FuncRef", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "function", - "type": "String", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "call_func", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "call_funcv", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg_array", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_function", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_valid", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GDNative", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "library", - "type": "GDNativeLibrary", - "getter": "get_library", - "setter": "set_library", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "call_native", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "calling_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "procedure_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arguments", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_library", - "return_type": "GDNativeLibrary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "initialize", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_library", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "library", - "type": "GDNativeLibrary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "terminate", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "GDNativeLibrary", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "config_file", - "type": "ConfigFile", - "getter": "get_config_file", - "setter": "set_config_file", - "index": -1 - }, - { - "name": "load_once", - "type": "bool", - "getter": "should_load_once", - "setter": "set_load_once", - "index": -1 - }, - { - "name": "reloadable", - "type": "bool", - "getter": "is_reloadable", - "setter": "set_reloadable", - "index": -1 - }, - { - "name": "singleton", - "type": "bool", - "getter": "is_singleton", - "setter": "set_singleton", - "index": -1 - }, - { - "name": "symbol_prefix", - "type": "String", - "getter": "get_symbol_prefix", - "setter": "set_symbol_prefix", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_config_file", - "return_type": "ConfigFile", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_dependencies", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_library_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_symbol_prefix", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_reloadable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_singleton", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_config_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "config_file", - "type": "ConfigFile", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_load_once", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "load_once", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_reloadable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "reloadable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_singleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "singleton", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_symbol_prefix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "symbol_prefix", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "should_load_once", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "GDScript", - "base_class": "Script", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_as_byte_code", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "new", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "GDScriptFunctionState", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "completed", - "arguments": [ - { - "name": "result", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_signal_callback", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_valid", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extended_check", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "resume", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GIProbe", - "base_class": "VisualInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "SUBDIV_128": 1, - "SUBDIV_256": 2, - "SUBDIV_512": 3, - "SUBDIV_64": 0, - "SUBDIV_MAX": 4 - }, - "properties": [ - { - "name": "bias", - "type": "float", - "getter": "get_bias", - "setter": "set_bias", - "index": -1 - }, - { - "name": "compress", - "type": "bool", - "getter": "is_compressed", - "setter": "set_compress", - "index": -1 - }, - { - "name": "data", - "type": "GIProbeData", - "getter": "get_probe_data", - "setter": "set_probe_data", - "index": -1 - }, - { - "name": "dynamic_range", - "type": "int", - "getter": "get_dynamic_range", - "setter": "set_dynamic_range", - "index": -1 - }, - { - "name": "energy", - "type": "float", - "getter": "get_energy", - "setter": "set_energy", - "index": -1 - }, - { - "name": "extents", - "type": "Vector3", - "getter": "get_extents", - "setter": "set_extents", - "index": -1 - }, - { - "name": "interior", - "type": "bool", - "getter": "is_interior", - "setter": "set_interior", - "index": -1 - }, - { - "name": "normal_bias", - "type": "float", - "getter": "get_normal_bias", - "setter": "set_normal_bias", - "index": -1 - }, - { - "name": "propagation", - "type": "float", - "getter": "get_propagation", - "setter": "set_propagation", - "index": -1 - }, - { - "name": "subdiv", - "type": "int", - "getter": "get_subdiv", - "setter": "set_subdiv", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "bake", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_node", - "type": "Node", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "create_visual_debug", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "debug_bake", - "return_type": "void", - "is_editor": true, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dynamic_range", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_extents", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_probe_data", - "return_type": "GIProbeData", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_propagation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdiv", - "return_type": "enum.GIProbe::Subdiv", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_compressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_interior", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_compress", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dynamic_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_probe_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "GIProbeData", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_propagation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdiv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subdiv", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Subdiv", - "values": { - "SUBDIV_64": 0, - "SUBDIV_128": 1, - "SUBDIV_256": 2, - "SUBDIV_512": 3, - "SUBDIV_MAX": 4 - } - } - ] - }, - { - "name": "GIProbeData", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "bias", - "type": "float", - "getter": "get_bias", - "setter": "set_bias", - "index": -1 - }, - { - "name": "bounds", - "type": "AABB", - "getter": "get_bounds", - "setter": "set_bounds", - "index": -1 - }, - { - "name": "cell_size", - "type": "float", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "compress", - "type": "bool", - "getter": "is_compressed", - "setter": "set_compress", - "index": -1 - }, - { - "name": "dynamic_data", - "type": "PoolIntArray", - "getter": "get_dynamic_data", - "setter": "set_dynamic_data", - "index": -1 - }, - { - "name": "dynamic_range", - "type": "int", - "getter": "get_dynamic_range", - "setter": "set_dynamic_range", - "index": -1 - }, - { - "name": "energy", - "type": "float", - "getter": "get_energy", - "setter": "set_energy", - "index": -1 - }, - { - "name": "interior", - "type": "bool", - "getter": "is_interior", - "setter": "set_interior", - "index": -1 - }, - { - "name": "normal_bias", - "type": "float", - "getter": "get_normal_bias", - "setter": "set_normal_bias", - "index": -1 - }, - { - "name": "propagation", - "type": "float", - "getter": "get_propagation", - "setter": "set_propagation", - "index": -1 - }, - { - "name": "to_cell_xform", - "type": "Transform", - "getter": "get_to_cell_xform", - "setter": "set_to_cell_xform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounds", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dynamic_data", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dynamic_range", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_propagation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_to_cell_xform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_compressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_interior", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounds", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_compress", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "compress", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dynamic_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dynamic_data", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dynamic_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dynamic_range", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interior", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_propagation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "propagation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_to_cell_xform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_cell_xform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFAccessor", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "buffer_view", - "type": "int", - "getter": "get_buffer_view", - "setter": "set_buffer_view", - "index": -1 - }, - { - "name": "byte_offset", - "type": "int", - "getter": "get_byte_offset", - "setter": "set_byte_offset", - "index": -1 - }, - { - "name": "component_type", - "type": "int", - "getter": "get_component_type", - "setter": "set_component_type", - "index": -1 - }, - { - "name": "count", - "type": "int", - "getter": "get_count", - "setter": "set_count", - "index": -1 - }, - { - "name": "max", - "type": "PoolRealArray", - "getter": "get_max", - "setter": "set_max", - "index": -1 - }, - { - "name": "min", - "type": "PoolRealArray", - "getter": "get_min", - "setter": "set_min", - "index": -1 - }, - { - "name": "normalized", - "type": "bool", - "getter": "get_normalized", - "setter": "set_normalized", - "index": -1 - }, - { - "name": "sparse_count", - "type": "int", - "getter": "get_sparse_count", - "setter": "set_sparse_count", - "index": -1 - }, - { - "name": "sparse_indices_buffer_view", - "type": "int", - "getter": "get_sparse_indices_buffer_view", - "setter": "set_sparse_indices_buffer_view", - "index": -1 - }, - { - "name": "sparse_indices_byte_offset", - "type": "int", - "getter": "get_sparse_indices_byte_offset", - "setter": "set_sparse_indices_byte_offset", - "index": -1 - }, - { - "name": "sparse_indices_component_type", - "type": "int", - "getter": "get_sparse_indices_component_type", - "setter": "set_sparse_indices_component_type", - "index": -1 - }, - { - "name": "sparse_values_buffer_view", - "type": "int", - "getter": "get_sparse_values_buffer_view", - "setter": "set_sparse_values_buffer_view", - "index": -1 - }, - { - "name": "sparse_values_byte_offset", - "type": "int", - "getter": "get_sparse_values_byte_offset", - "setter": "set_sparse_values_byte_offset", - "index": -1 - }, - { - "name": "type", - "type": "int", - "getter": "get_type", - "setter": "set_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_buffer_view", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_byte_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_component_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normalized", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sparse_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sparse_indices_buffer_view", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sparse_indices_byte_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sparse_indices_component_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sparse_values_buffer_view", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sparse_values_byte_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_buffer_view", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer_view", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_byte_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "byte_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_component_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "component_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "min", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normalized", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normalized", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sparse_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sparse_count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sparse_indices_buffer_view", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sparse_indices_buffer_view", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sparse_indices_byte_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sparse_indices_byte_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sparse_indices_component_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sparse_indices_component_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sparse_values_buffer_view", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sparse_values_buffer_view", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sparse_values_byte_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sparse_values_byte_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFAnimation", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "loop", - "type": "bool", - "getter": "get_loop", - "setter": "set_loop", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFBufferView", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "buffer", - "type": "int", - "getter": "get_buffer", - "setter": "set_buffer", - "index": -1 - }, - { - "name": "byte_length", - "type": "int", - "getter": "get_byte_length", - "setter": "set_byte_length", - "index": -1 - }, - { - "name": "byte_offset", - "type": "int", - "getter": "get_byte_offset", - "setter": "set_byte_offset", - "index": -1 - }, - { - "name": "byte_stride", - "type": "int", - "getter": "get_byte_stride", - "setter": "set_byte_stride", - "index": -1 - }, - { - "name": "indices", - "type": "bool", - "getter": "get_indices", - "setter": "set_indices", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_buffer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_byte_length", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_byte_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_byte_stride", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_indices", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_buffer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_byte_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "byte_length", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_byte_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "byte_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_byte_stride", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "byte_stride", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_indices", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "indices", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFCamera", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "fov_size", - "type": "float", - "getter": "get_fov_size", - "setter": "set_fov_size", - "index": -1 - }, - { - "name": "perspective", - "type": "bool", - "getter": "get_perspective", - "setter": "set_perspective", - "index": -1 - }, - { - "name": "zfar", - "type": "float", - "getter": "get_zfar", - "setter": "set_zfar", - "index": -1 - }, - { - "name": "znear", - "type": "float", - "getter": "get_znear", - "setter": "set_znear", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_fov_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_perspective", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zfar", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_znear", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_fov_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fov_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_perspective", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "perspective", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zfar", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "zfar", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_znear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "znear", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFDocument", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "GLTFLight", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "inner_cone_angle", - "type": "float", - "getter": "get_inner_cone_angle", - "setter": "set_inner_cone_angle", - "index": -1 - }, - { - "name": "intensity", - "type": "float", - "getter": "get_intensity", - "setter": "set_intensity", - "index": -1 - }, - { - "name": "outer_cone_angle", - "type": "float", - "getter": "get_outer_cone_angle", - "setter": "set_outer_cone_angle", - "index": -1 - }, - { - "name": "range", - "type": "float", - "getter": "get_range", - "setter": "set_range", - "index": -1 - }, - { - "name": "type", - "type": "String", - "getter": "get_type", - "setter": "set_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inner_cone_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_intensity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_outer_cone_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_range", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_inner_cone_angle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inner_cone_angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_outer_cone_angle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "outer_cone_angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "range", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFMesh", - "base_class": "Resource", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "blend_weights", - "type": "PoolRealArray", - "getter": "get_blend_weights", - "setter": "set_blend_weights", - "index": -1 - }, - { - "name": "instance_materials", - "type": "Array", - "getter": "get_instance_materials", - "setter": "set_instance_materials", - "index": -1 - }, - { - "name": "mesh", - "type": "Object", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_blend_weights", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_instance_materials", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "ArrayMesh", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_blend_weights", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "blend_weights", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_materials", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance_materials", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "ArrayMesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFNode", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "camera", - "type": "int", - "getter": "get_camera", - "setter": "set_camera", - "index": -1 - }, - { - "name": "children", - "type": "PoolIntArray", - "getter": "get_children", - "setter": "set_children", - "index": -1 - }, - { - "name": "height", - "type": "int", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "joint", - "type": "bool", - "getter": "get_joint", - "setter": "set_joint", - "index": -1 - }, - { - "name": "light", - "type": "int", - "getter": "get_light", - "setter": "set_light", - "index": -1 - }, - { - "name": "mesh", - "type": "int", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - }, - { - "name": "parent", - "type": "int", - "getter": "get_parent", - "setter": "set_parent", - "index": -1 - }, - { - "name": "rotation", - "type": "Quat", - "getter": "get_rotation", - "setter": "set_rotation", - "index": -1 - }, - { - "name": "scale", - "type": "Vector3", - "getter": "get_scale", - "setter": "set_scale", - "index": -1 - }, - { - "name": "skeleton", - "type": "int", - "getter": "get_skeleton", - "setter": "set_skeleton", - "index": -1 - }, - { - "name": "skin", - "type": "int", - "getter": "get_skin", - "setter": "set_skin", - "index": -1 - }, - { - "name": "translation", - "type": "Vector3", - "getter": "get_translation", - "setter": "set_translation", - "index": -1 - }, - { - "name": "xform", - "type": "Transform", - "getter": "get_xform", - "setter": "set_xform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_camera", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_children", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_light", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation", - "return_type": "Quat", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scale", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skin", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_translation", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_xform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_camera", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_children", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "children", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_light", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "parent", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rotation", - "type": "Quat", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skeleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_translation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "translation", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_xform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFSkeleton", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "godot_bone_node", - "type": "Dictionary", - "getter": "get_godot_bone_node", - "setter": "set_godot_bone_node", - "index": -1 - }, - { - "name": "joints", - "type": "PoolIntArray", - "getter": "get_joints", - "setter": "set_joints", - "index": -1 - }, - { - "name": "roots", - "type": "PoolIntArray", - "getter": "get_roots", - "setter": "set_roots", - "index": -1 - }, - { - "name": "unique_names", - "type": "Array", - "getter": "get_unique_names", - "setter": "set_unique_names", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_bone_attachment", - "return_type": "BoneAttachment", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_attachment_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_godot_bone_node", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_godot_skeleton", - "return_type": "Skeleton", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joints", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roots", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unique_names", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_godot_bone_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "godot_bone_node", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joints", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joints", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roots", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "roots", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unique_names", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unique_names", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFSkin", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "godot_skin", - "type": "Object", - "getter": "get_godot_skin", - "setter": "set_godot_skin", - "index": -1 - }, - { - "name": "inverse_binds", - "type": "Array", - "getter": "get_inverse_binds", - "setter": "set_inverse_binds", - "index": -1 - }, - { - "name": "joint_i_to_bone_i", - "type": "Dictionary", - "getter": "get_joint_i_to_bone_i", - "setter": "set_joint_i_to_bone_i", - "index": -1 - }, - { - "name": "joint_i_to_name", - "type": "Dictionary", - "getter": "get_joint_i_to_name", - "setter": "set_joint_i_to_name", - "index": -1 - }, - { - "name": "joints", - "type": "PoolIntArray", - "getter": "get_joints", - "setter": "set_joints", - "index": -1 - }, - { - "name": "joints_original", - "type": "PoolIntArray", - "getter": "get_joints_original", - "setter": "set_joints_original", - "index": -1 - }, - { - "name": "non_joints", - "type": "PoolIntArray", - "getter": "get_non_joints", - "setter": "set_non_joints", - "index": -1 - }, - { - "name": "roots", - "type": "PoolIntArray", - "getter": "get_roots", - "setter": "set_roots", - "index": -1 - }, - { - "name": "skeleton", - "type": "int", - "getter": "get_skeleton", - "setter": "set_skeleton", - "index": -1 - }, - { - "name": "skin_root", - "type": "int", - "getter": "get_skin_root", - "setter": "set_skin_root", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_godot_skin", - "return_type": "Skin", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inverse_binds", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joint_i_to_bone_i", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joint_i_to_name", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joints", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joints_original", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_non_joints", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roots", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skin_root", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_godot_skin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "godot_skin", - "type": "Skin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_inverse_binds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inverse_binds", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joint_i_to_bone_i", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint_i_to_bone_i", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joint_i_to_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint_i_to_name", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joints", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joints", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joints_original", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joints_original", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_non_joints", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "non_joints", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roots", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "roots", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skeleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skin_root", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skin_root", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFSpecGloss", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "diffuse_factor", - "type": "Color", - "getter": "get_diffuse_factor", - "setter": "set_diffuse_factor", - "index": -1 - }, - { - "name": "diffuse_img", - "type": "Object", - "getter": "get_diffuse_img", - "setter": "set_diffuse_img", - "index": -1 - }, - { - "name": "gloss_factor", - "type": "float", - "getter": "get_gloss_factor", - "setter": "set_gloss_factor", - "index": -1 - }, - { - "name": "spec_gloss_img", - "type": "Object", - "getter": "get_spec_gloss_img", - "setter": "set_spec_gloss_img", - "index": -1 - }, - { - "name": "specular_factor", - "type": "Color", - "getter": "get_specular_factor", - "setter": "set_specular_factor", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_diffuse_factor", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_diffuse_img", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gloss_factor", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_spec_gloss_img", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_specular_factor", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_diffuse_factor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "diffuse_factor", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_diffuse_img", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "diffuse_img", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gloss_factor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gloss_factor", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spec_gloss_img", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "spec_gloss_img", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_specular_factor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "specular_factor", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFState", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "accessors", - "type": "Array", - "getter": "get_accessors", - "setter": "set_accessors", - "index": -1 - }, - { - "name": "animations", - "type": "Array", - "getter": "get_animations", - "setter": "set_animations", - "index": -1 - }, - { - "name": "buffer_views", - "type": "Array", - "getter": "get_buffer_views", - "setter": "set_buffer_views", - "index": -1 - }, - { - "name": "buffers", - "type": "Array", - "getter": "get_buffers", - "setter": "set_buffers", - "index": -1 - }, - { - "name": "cameras", - "type": "Array", - "getter": "get_cameras", - "setter": "set_cameras", - "index": -1 - }, - { - "name": "glb_data", - "type": "PoolByteArray", - "getter": "get_glb_data", - "setter": "set_glb_data", - "index": -1 - }, - { - "name": "images", - "type": "Array", - "getter": "get_images", - "setter": "set_images", - "index": -1 - }, - { - "name": "json", - "type": "Dictionary", - "getter": "get_json", - "setter": "set_json", - "index": -1 - }, - { - "name": "lights", - "type": "Array", - "getter": "get_lights", - "setter": "set_lights", - "index": -1 - }, - { - "name": "major_version", - "type": "int", - "getter": "get_major_version", - "setter": "set_major_version", - "index": -1 - }, - { - "name": "materials", - "type": "Array", - "getter": "get_materials", - "setter": "set_materials", - "index": -1 - }, - { - "name": "meshes", - "type": "Array", - "getter": "get_meshes", - "setter": "set_meshes", - "index": -1 - }, - { - "name": "minor_version", - "type": "int", - "getter": "get_minor_version", - "setter": "set_minor_version", - "index": -1 - }, - { - "name": "nodes", - "type": "Array", - "getter": "get_nodes", - "setter": "set_nodes", - "index": -1 - }, - { - "name": "root_nodes", - "type": "PoolIntArray", - "getter": "get_root_nodes", - "setter": "set_root_nodes", - "index": -1 - }, - { - "name": "scene_name", - "type": "String", - "getter": "get_scene_name", - "setter": "set_scene_name", - "index": -1 - }, - { - "name": "skeleton_to_node", - "type": "Dictionary", - "getter": "get_skeleton_to_node", - "setter": "set_skeleton_to_node", - "index": -1 - }, - { - "name": "skeletons", - "type": "Array", - "getter": "get_skeletons", - "setter": "set_skeletons", - "index": -1 - }, - { - "name": "skins", - "type": "Array", - "getter": "get_skins", - "setter": "set_skins", - "index": -1 - }, - { - "name": "textures", - "type": "Array", - "getter": "get_textures", - "setter": "set_textures", - "index": -1 - }, - { - "name": "unique_animation_names", - "type": "Array", - "getter": "get_unique_animation_names", - "setter": "set_unique_animation_names", - "index": -1 - }, - { - "name": "unique_names", - "type": "Array", - "getter": "get_unique_names", - "setter": "set_unique_names", - "index": -1 - }, - { - "name": "use_named_skin_binds", - "type": "bool", - "getter": "get_use_named_skin_binds", - "setter": "set_use_named_skin_binds", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_accessors", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_animation_player", - "return_type": "AnimationPlayer", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation_players_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animations", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffer_views", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffers", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cameras", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_glb_data", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_images", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_json", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lights", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_major_version", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_materials", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_meshes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_minor_version", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nodes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root_nodes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scene_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scene_node", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_skeleton_to_node", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeletons", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skins", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_textures", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unique_animation_names", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unique_names", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_named_skin_binds", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_accessors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "accessors", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_animations", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "animations", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_buffer_views", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer_views", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_buffers", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffers", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cameras", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cameras", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_glb_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "glb_data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_images", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "images", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_json", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "json", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lights", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lights", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_major_version", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "major_version", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_materials", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "materials", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_meshes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "meshes", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_minor_version", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "minor_version", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_nodes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nodes", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_root_nodes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "root_nodes", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scene_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skeleton_to_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton_to_node", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skeletons", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeletons", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skins", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skins", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_textures", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "textures", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unique_animation_names", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unique_animation_names", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unique_names", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unique_names", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_named_skin_binds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_named_skin_binds", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GLTFTexture", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "src_image", - "type": "int", - "getter": "get_src_image", - "setter": "set_src_image", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_src_image", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_src_image", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src_image", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Generic6DOFJoint", - "base_class": "Joint", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "FLAG_ENABLE_ANGULAR_LIMIT": 1, - "FLAG_ENABLE_ANGULAR_SPRING": 2, - "FLAG_ENABLE_LINEAR_LIMIT": 0, - "FLAG_ENABLE_LINEAR_MOTOR": 5, - "FLAG_ENABLE_LINEAR_SPRING": 3, - "FLAG_ENABLE_MOTOR": 4, - "FLAG_MAX": 6, - "PARAM_ANGULAR_DAMPING": 13, - "PARAM_ANGULAR_ERP": 16, - "PARAM_ANGULAR_FORCE_LIMIT": 15, - "PARAM_ANGULAR_LIMIT_SOFTNESS": 12, - "PARAM_ANGULAR_LOWER_LIMIT": 10, - "PARAM_ANGULAR_MOTOR_FORCE_LIMIT": 18, - "PARAM_ANGULAR_MOTOR_TARGET_VELOCITY": 17, - "PARAM_ANGULAR_RESTITUTION": 14, - "PARAM_ANGULAR_SPRING_DAMPING": 20, - "PARAM_ANGULAR_SPRING_EQUILIBRIUM_POINT": 21, - "PARAM_ANGULAR_SPRING_STIFFNESS": 19, - "PARAM_ANGULAR_UPPER_LIMIT": 11, - "PARAM_LINEAR_DAMPING": 4, - "PARAM_LINEAR_LIMIT_SOFTNESS": 2, - "PARAM_LINEAR_LOWER_LIMIT": 0, - "PARAM_LINEAR_MOTOR_FORCE_LIMIT": 6, - "PARAM_LINEAR_MOTOR_TARGET_VELOCITY": 5, - "PARAM_LINEAR_RESTITUTION": 3, - "PARAM_LINEAR_SPRING_DAMPING": 8, - "PARAM_LINEAR_SPRING_EQUILIBRIUM_POINT": 9, - "PARAM_LINEAR_SPRING_STIFFNESS": 7, - "PARAM_LINEAR_UPPER_LIMIT": 1, - "PARAM_MAX": 22 - }, - "properties": [ - { - "name": "angular_limit_x/damping", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 13 - }, - { - "name": "angular_limit_x/enabled", - "type": "bool", - "getter": "get_flag_x", - "setter": "set_flag_x", - "index": 1 - }, - { - "name": "angular_limit_x/erp", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 16 - }, - { - "name": "angular_limit_x/force_limit", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 15 - }, - { - "name": "angular_limit_x/lower_angle", - "type": "float", - "getter": "_get_angular_lo_limit_x", - "setter": "_set_angular_lo_limit_x", - "index": -1 - }, - { - "name": "angular_limit_x/restitution", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 14 - }, - { - "name": "angular_limit_x/softness", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 12 - }, - { - "name": "angular_limit_x/upper_angle", - "type": "float", - "getter": "_get_angular_hi_limit_x", - "setter": "_set_angular_hi_limit_x", - "index": -1 - }, - { - "name": "angular_limit_y/damping", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 13 - }, - { - "name": "angular_limit_y/enabled", - "type": "bool", - "getter": "get_flag_y", - "setter": "set_flag_y", - "index": 1 - }, - { - "name": "angular_limit_y/erp", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 16 - }, - { - "name": "angular_limit_y/force_limit", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 15 - }, - { - "name": "angular_limit_y/lower_angle", - "type": "float", - "getter": "_get_angular_lo_limit_y", - "setter": "_set_angular_lo_limit_y", - "index": -1 - }, - { - "name": "angular_limit_y/restitution", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 14 - }, - { - "name": "angular_limit_y/softness", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 12 - }, - { - "name": "angular_limit_y/upper_angle", - "type": "float", - "getter": "_get_angular_hi_limit_y", - "setter": "_set_angular_hi_limit_y", - "index": -1 - }, - { - "name": "angular_limit_z/damping", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 13 - }, - { - "name": "angular_limit_z/enabled", - "type": "bool", - "getter": "get_flag_z", - "setter": "set_flag_z", - "index": 1 - }, - { - "name": "angular_limit_z/erp", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 16 - }, - { - "name": "angular_limit_z/force_limit", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 15 - }, - { - "name": "angular_limit_z/lower_angle", - "type": "float", - "getter": "_get_angular_lo_limit_z", - "setter": "_set_angular_lo_limit_z", - "index": -1 - }, - { - "name": "angular_limit_z/restitution", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 14 - }, - { - "name": "angular_limit_z/softness", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 12 - }, - { - "name": "angular_limit_z/upper_angle", - "type": "float", - "getter": "_get_angular_hi_limit_z", - "setter": "_set_angular_hi_limit_z", - "index": -1 - }, - { - "name": "angular_motor_x/enabled", - "type": "bool", - "getter": "get_flag_x", - "setter": "set_flag_x", - "index": 4 - }, - { - "name": "angular_motor_x/force_limit", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 18 - }, - { - "name": "angular_motor_x/target_velocity", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 17 - }, - { - "name": "angular_motor_y/enabled", - "type": "bool", - "getter": "get_flag_y", - "setter": "set_flag_y", - "index": 4 - }, - { - "name": "angular_motor_y/force_limit", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 18 - }, - { - "name": "angular_motor_y/target_velocity", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 17 - }, - { - "name": "angular_motor_z/enabled", - "type": "bool", - "getter": "get_flag_z", - "setter": "set_flag_z", - "index": 4 - }, - { - "name": "angular_motor_z/force_limit", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 18 - }, - { - "name": "angular_motor_z/target_velocity", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 17 - }, - { - "name": "angular_spring_x/damping", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 20 - }, - { - "name": "angular_spring_x/enabled", - "type": "bool", - "getter": "get_flag_x", - "setter": "set_flag_x", - "index": 2 - }, - { - "name": "angular_spring_x/equilibrium_point", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 21 - }, - { - "name": "angular_spring_x/stiffness", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 19 - }, - { - "name": "angular_spring_y/damping", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 20 - }, - { - "name": "angular_spring_y/enabled", - "type": "bool", - "getter": "get_flag_y", - "setter": "set_flag_y", - "index": 2 - }, - { - "name": "angular_spring_y/equilibrium_point", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 21 - }, - { - "name": "angular_spring_y/stiffness", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 19 - }, - { - "name": "angular_spring_z/damping", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 20 - }, - { - "name": "angular_spring_z/enabled", - "type": "bool", - "getter": "get_flag_z", - "setter": "set_flag_z", - "index": 2 - }, - { - "name": "angular_spring_z/equilibrium_point", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 21 - }, - { - "name": "angular_spring_z/stiffness", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 19 - }, - { - "name": "linear_limit_x/damping", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 4 - }, - { - "name": "linear_limit_x/enabled", - "type": "bool", - "getter": "get_flag_x", - "setter": "set_flag_x", - "index": 0 - }, - { - "name": "linear_limit_x/lower_distance", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 0 - }, - { - "name": "linear_limit_x/restitution", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 3 - }, - { - "name": "linear_limit_x/softness", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 2 - }, - { - "name": "linear_limit_x/upper_distance", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 1 - }, - { - "name": "linear_limit_y/damping", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 4 - }, - { - "name": "linear_limit_y/enabled", - "type": "bool", - "getter": "get_flag_y", - "setter": "set_flag_y", - "index": 0 - }, - { - "name": "linear_limit_y/lower_distance", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 0 - }, - { - "name": "linear_limit_y/restitution", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 3 - }, - { - "name": "linear_limit_y/softness", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 2 - }, - { - "name": "linear_limit_y/upper_distance", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 1 - }, - { - "name": "linear_limit_z/damping", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 4 - }, - { - "name": "linear_limit_z/enabled", - "type": "bool", - "getter": "get_flag_z", - "setter": "set_flag_z", - "index": 0 - }, - { - "name": "linear_limit_z/lower_distance", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 0 - }, - { - "name": "linear_limit_z/restitution", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 3 - }, - { - "name": "linear_limit_z/softness", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 2 - }, - { - "name": "linear_limit_z/upper_distance", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 1 - }, - { - "name": "linear_motor_x/enabled", - "type": "bool", - "getter": "get_flag_x", - "setter": "set_flag_x", - "index": 5 - }, - { - "name": "linear_motor_x/force_limit", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 6 - }, - { - "name": "linear_motor_x/target_velocity", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 5 - }, - { - "name": "linear_motor_y/enabled", - "type": "bool", - "getter": "get_flag_y", - "setter": "set_flag_y", - "index": 5 - }, - { - "name": "linear_motor_y/force_limit", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 6 - }, - { - "name": "linear_motor_y/target_velocity", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 5 - }, - { - "name": "linear_motor_z/enabled", - "type": "bool", - "getter": "get_flag_z", - "setter": "set_flag_z", - "index": 5 - }, - { - "name": "linear_motor_z/force_limit", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 6 - }, - { - "name": "linear_motor_z/target_velocity", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 5 - }, - { - "name": "linear_spring_x/damping", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 8 - }, - { - "name": "linear_spring_x/enabled", - "type": "bool", - "getter": "get_flag_x", - "setter": "set_flag_x", - "index": 3 - }, - { - "name": "linear_spring_x/equilibrium_point", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 9 - }, - { - "name": "linear_spring_x/stiffness", - "type": "float", - "getter": "get_param_x", - "setter": "set_param_x", - "index": 7 - }, - { - "name": "linear_spring_y/damping", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 8 - }, - { - "name": "linear_spring_y/enabled", - "type": "bool", - "getter": "get_flag_y", - "setter": "set_flag_y", - "index": 3 - }, - { - "name": "linear_spring_y/equilibrium_point", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 9 - }, - { - "name": "linear_spring_y/stiffness", - "type": "float", - "getter": "get_param_y", - "setter": "set_param_y", - "index": 7 - }, - { - "name": "linear_spring_z/damping", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 8 - }, - { - "name": "linear_spring_z/enabled", - "type": "bool", - "getter": "get_flag_z", - "setter": "set_flag_z", - "index": 3 - }, - { - "name": "linear_spring_z/equilibrium_point", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 9 - }, - { - "name": "linear_spring_z/stiffness", - "type": "float", - "getter": "get_param_z", - "setter": "set_param_z", - "index": 7 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_angular_hi_limit_x", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_angular_hi_limit_y", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_angular_hi_limit_z", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_angular_lo_limit_x", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_angular_lo_limit_y", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_angular_lo_limit_z", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_angular_hi_limit_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_angular_hi_limit_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_angular_hi_limit_z", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_angular_lo_limit_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_angular_lo_limit_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_angular_lo_limit_z", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_flag_x", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_flag_y", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_flag_z", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_x", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_y", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_z", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag_z", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_z", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Param", - "values": { - "PARAM_LINEAR_LOWER_LIMIT": 0, - "PARAM_LINEAR_UPPER_LIMIT": 1, - "PARAM_LINEAR_LIMIT_SOFTNESS": 2, - "PARAM_LINEAR_RESTITUTION": 3, - "PARAM_LINEAR_DAMPING": 4, - "PARAM_LINEAR_MOTOR_TARGET_VELOCITY": 5, - "PARAM_LINEAR_MOTOR_FORCE_LIMIT": 6, - "PARAM_LINEAR_SPRING_STIFFNESS": 7, - "PARAM_LINEAR_SPRING_DAMPING": 8, - "PARAM_LINEAR_SPRING_EQUILIBRIUM_POINT": 9, - "PARAM_ANGULAR_LOWER_LIMIT": 10, - "PARAM_ANGULAR_UPPER_LIMIT": 11, - "PARAM_ANGULAR_LIMIT_SOFTNESS": 12, - "PARAM_ANGULAR_DAMPING": 13, - "PARAM_ANGULAR_RESTITUTION": 14, - "PARAM_ANGULAR_FORCE_LIMIT": 15, - "PARAM_ANGULAR_ERP": 16, - "PARAM_ANGULAR_MOTOR_TARGET_VELOCITY": 17, - "PARAM_ANGULAR_MOTOR_FORCE_LIMIT": 18, - "PARAM_ANGULAR_SPRING_STIFFNESS": 19, - "PARAM_ANGULAR_SPRING_DAMPING": 20, - "PARAM_ANGULAR_SPRING_EQUILIBRIUM_POINT": 21, - "PARAM_MAX": 22 - } - }, - { - "name": "Flag", - "values": { - "FLAG_ENABLE_LINEAR_LIMIT": 0, - "FLAG_ENABLE_ANGULAR_LIMIT": 1, - "FLAG_ENABLE_ANGULAR_SPRING": 2, - "FLAG_ENABLE_LINEAR_SPRING": 3, - "FLAG_ENABLE_MOTOR": 4, - "FLAG_ENABLE_LINEAR_MOTOR": 5, - "FLAG_MAX": 6 - } - } - ] - }, - { - "name": "GeometryInstance", - "base_class": "VisualInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "FLAG_DRAW_NEXT_FRAME_IF_VISIBLE": 1, - "FLAG_MAX": 2, - "FLAG_USE_BAKED_LIGHT": 0, - "LIGHTMAP_SCALE_1X": 0, - "LIGHTMAP_SCALE_2X": 1, - "LIGHTMAP_SCALE_4X": 2, - "LIGHTMAP_SCALE_8X": 3, - "LIGHTMAP_SCALE_MAX": 4, - "SHADOW_CASTING_SETTING_DOUBLE_SIDED": 2, - "SHADOW_CASTING_SETTING_OFF": 0, - "SHADOW_CASTING_SETTING_ON": 1, - "SHADOW_CASTING_SETTING_SHADOWS_ONLY": 3 - }, - "properties": [ - { - "name": "cast_shadow", - "type": "int", - "getter": "get_cast_shadows_setting", - "setter": "set_cast_shadows_setting", - "index": -1 - }, - { - "name": "extra_cull_margin", - "type": "float", - "getter": "get_extra_cull_margin", - "setter": "set_extra_cull_margin", - "index": -1 - }, - { - "name": "generate_lightmap", - "type": "bool", - "getter": "get_generate_lightmap", - "setter": "set_generate_lightmap", - "index": -1 - }, - { - "name": "lightmap_scale", - "type": "int", - "getter": "get_lightmap_scale", - "setter": "set_lightmap_scale", - "index": -1 - }, - { - "name": "lod_max_distance", - "type": "int", - "getter": "get_lod_max_distance", - "setter": "set_lod_max_distance", - "index": -1 - }, - { - "name": "lod_max_hysteresis", - "type": "int", - "getter": "get_lod_max_hysteresis", - "setter": "set_lod_max_hysteresis", - "index": -1 - }, - { - "name": "lod_min_distance", - "type": "int", - "getter": "get_lod_min_distance", - "setter": "set_lod_min_distance", - "index": -1 - }, - { - "name": "lod_min_hysteresis", - "type": "int", - "getter": "get_lod_min_hysteresis", - "setter": "set_lod_min_hysteresis", - "index": -1 - }, - { - "name": "material_overlay", - "type": "ShaderMaterial,SpatialMaterial", - "getter": "get_material_overlay", - "setter": "set_material_overlay", - "index": -1 - }, - { - "name": "material_override", - "type": "ShaderMaterial,SpatialMaterial", - "getter": "get_material_override", - "setter": "set_material_override", - "index": -1 - }, - { - "name": "use_in_baked_light", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 0 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cast_shadows_setting", - "return_type": "enum.GeometryInstance::ShadowCastingSetting", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_extra_cull_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_generate_lightmap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lightmap_scale", - "return_type": "enum.GeometryInstance::LightmapScale", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lod_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lod_max_hysteresis", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lod_min_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lod_min_hysteresis", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material_overlay", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material_override", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cast_shadows_setting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shadow_casting_setting", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_extra_cull_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_generate_lightmap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lightmap_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lod_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lod_max_hysteresis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lod_min_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lod_min_hysteresis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material_overlay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_USE_BAKED_LIGHT": 0, - "FLAG_DRAW_NEXT_FRAME_IF_VISIBLE": 1, - "FLAG_MAX": 2 - } - }, - { - "name": "ShadowCastingSetting", - "values": { - "SHADOW_CASTING_SETTING_OFF": 0, - "SHADOW_CASTING_SETTING_ON": 1, - "SHADOW_CASTING_SETTING_DOUBLE_SIDED": 2, - "SHADOW_CASTING_SETTING_SHADOWS_ONLY": 3 - } - }, - { - "name": "LightmapScale", - "values": { - "LIGHTMAP_SCALE_1X": 0, - "LIGHTMAP_SCALE_2X": 1, - "LIGHTMAP_SCALE_4X": 2, - "LIGHTMAP_SCALE_8X": 3, - "LIGHTMAP_SCALE_MAX": 4 - } - } - ] - }, - { - "name": "Gradient", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "colors", - "type": "PoolColorArray", - "getter": "get_colors", - "setter": "set_colors", - "index": -1 - }, - { - "name": "offsets", - "type": "PoolRealArray", - "getter": "get_offsets", - "setter": "set_offsets", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_colors", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_offsets", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "interpolate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offsets", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offsets", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GradientTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "gradient", - "type": "Gradient", - "getter": "get_gradient", - "setter": "set_gradient", - "index": -1 - }, - { - "name": "width", - "type": "int", - "getter": "get_width", - "setter": "set_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gradient", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_gradient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gradient", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GradientTexture2D", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FILL_LINEAR": 0, - "FILL_RADIAL": 1, - "REPEAT": 1, - "REPEAT_MIRROR": 2, - "REPEAT_NONE": 0 - }, - "properties": [ - { - "name": "fill", - "type": "int", - "getter": "get_fill", - "setter": "set_fill", - "index": -1 - }, - { - "name": "fill_from", - "type": "Vector2", - "getter": "get_fill_from", - "setter": "set_fill_from", - "index": -1 - }, - { - "name": "fill_to", - "type": "Vector2", - "getter": "get_fill_to", - "setter": "set_fill_to", - "index": -1 - }, - { - "name": "gradient", - "type": "Gradient", - "getter": "get_gradient", - "setter": "set_gradient", - "index": -1 - }, - { - "name": "height", - "type": "int", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "repeat", - "type": "int", - "getter": "get_repeat", - "setter": "set_repeat", - "index": -1 - }, - { - "name": "use_hdr", - "type": "bool", - "getter": "is_using_hdr", - "setter": "set_use_hdr", - "index": -1 - }, - { - "name": "width", - "type": "int", - "getter": "get_width", - "setter": "set_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_queue_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fill", - "return_type": "enum.GradientTexture2D::Fill", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fill_from", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fill_to", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gradient", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_repeat", - "return_type": "enum.GradientTexture2D::Repeat", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_hdr", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_fill", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fill", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fill_from", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fill_from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fill_to", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fill_to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gradient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gradient", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_repeat", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "repeat", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_hdr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Fill", - "values": { - "FILL_LINEAR": 0, - "FILL_RADIAL": 1 - } - }, - { - "name": "Repeat", - "values": { - "REPEAT_NONE": 0, - "REPEAT": 1, - "REPEAT_MIRROR": 2 - } - } - ] - }, - { - "name": "GraphEdit", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "minimap_enabled", - "type": "bool", - "getter": "is_minimap_enabled", - "setter": "set_minimap_enabled", - "index": -1 - }, - { - "name": "minimap_opacity", - "type": "float", - "getter": "get_minimap_opacity", - "setter": "set_minimap_opacity", - "index": -1 - }, - { - "name": "minimap_size", - "type": "Vector2", - "getter": "get_minimap_size", - "setter": "set_minimap_size", - "index": -1 - }, - { - "name": "right_disconnects", - "type": "bool", - "getter": "is_right_disconnects_enabled", - "setter": "set_right_disconnects", - "index": -1 - }, - { - "name": "scroll_offset", - "type": "Vector2", - "getter": "get_scroll_ofs", - "setter": "set_scroll_ofs", - "index": -1 - }, - { - "name": "show_zoom_label", - "type": "bool", - "getter": "is_showing_zoom_label", - "setter": "set_show_zoom_label", - "index": -1 - }, - { - "name": "snap_distance", - "type": "int", - "getter": "get_snap", - "setter": "set_snap", - "index": -1 - }, - { - "name": "use_snap", - "type": "bool", - "getter": "is_using_snap", - "setter": "set_use_snap", - "index": -1 - }, - { - "name": "zoom", - "type": "float", - "getter": "get_zoom", - "setter": "set_zoom", - "index": -1 - }, - { - "name": "zoom_max", - "type": "float", - "getter": "get_zoom_max", - "setter": "set_zoom_max", - "index": -1 - }, - { - "name": "zoom_min", - "type": "float", - "getter": "get_zoom_min", - "setter": "set_zoom_min", - "index": -1 - }, - { - "name": "zoom_step", - "type": "float", - "getter": "get_zoom_step", - "setter": "set_zoom_step", - "index": -1 - } - ], - "signals": [ - { - "name": "_begin_node_move", - "arguments": [ - ] - }, - { - "name": "_end_node_move", - "arguments": [ - ] - }, - { - "name": "connection_from_empty", - "arguments": [ - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_slot", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "release_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "connection_request", - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_slot", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_slot", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "connection_to_empty", - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_slot", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "release_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "copy_nodes_request", - "arguments": [ - ] - }, - { - "name": "delete_nodes_request", - "arguments": [ - ] - }, - { - "name": "disconnection_request", - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_slot", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_slot", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "duplicate_nodes_request", - "arguments": [ - ] - }, - { - "name": "node_selected", - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_unselected", - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "paste_nodes_request", - "arguments": [ - ] - }, - { - "name": "popup_request", - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scroll_offset_changed", - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_connections_layer_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_graph_node_moved", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_graph_node_raised", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_graph_node_slot_updated", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_minimap_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_minimap_toggled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_scroll_moved", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_snap_toggled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_snap_value_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_top_layer_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_top_layer_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_scroll_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_zoom_minus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_zoom_plus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_zoom_reset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_valid_connection_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_valid_left_disconnect_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_valid_right_disconnect_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_connections", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect_node", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "disconnect_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_minimap_opacity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_minimap_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scroll_ofs", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_snap", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zoom", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zoom_hbox", - "return_type": "HBoxContainer", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zoom_max", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zoom_min", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_zoom_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_minimap_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_node_connected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_right_disconnects_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_showing_zoom_label", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_snap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_valid_connection_type", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_valid_connection_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_valid_left_disconnect_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_valid_right_disconnect_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_connection_activity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_minimap_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_minimap_opacity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_opacity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_minimap_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_right_disconnects", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scroll_ofs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_zoom_label", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_snap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pixels", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_snap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zoom", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_zoom", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zoom_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "zoom_max", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zoom_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "zoom_min", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_zoom_step", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "zoom_step", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GraphNode", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "OVERLAY_BREAKPOINT": 1, - "OVERLAY_DISABLED": 0, - "OVERLAY_POSITION": 2 - }, - "properties": [ - { - "name": "comment", - "type": "bool", - "getter": "is_comment", - "setter": "set_comment", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "overlay", - "type": "int", - "getter": "get_overlay", - "setter": "set_overlay", - "index": -1 - }, - { - "name": "resizable", - "type": "bool", - "getter": "is_resizable", - "setter": "set_resizable", - "index": -1 - }, - { - "name": "selected", - "type": "bool", - "getter": "is_selected", - "setter": "set_selected", - "index": -1 - }, - { - "name": "show_close", - "type": "bool", - "getter": "is_close_button_visible", - "setter": "set_show_close_button", - "index": -1 - }, - { - "name": "title", - "type": "String", - "getter": "get_title", - "setter": "set_title", - "index": -1 - } - ], - "signals": [ - { - "name": "close_request", - "arguments": [ - ] - }, - { - "name": "dragged", - "arguments": [ - { - "name": "from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "offset_changed", - "arguments": [ - ] - }, - { - "name": "raise_request", - "arguments": [ - ] - }, - { - "name": "resize_request", - "arguments": [ - { - "name": "new_minsize", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "slot_updated", - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_all_slots", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_slot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_input_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_input_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connection_input_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_input_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_output_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_output_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connection_output_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_output_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_overlay", - "return_type": "enum.GraphNode::Overlay", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_slot_color_left", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_slot_color_right", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_slot_type_left", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_slot_type_right", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_title", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_close_button_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_comment", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_resizable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_slot_enabled_left", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_slot_enabled_right", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_comment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "comment", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_overlay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "overlay", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_resizable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resizable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "selected", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_close_button", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "show", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable_left", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_left", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color_left", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable_right", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_right", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color_right", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_left", - "type": "Texture", - "has_default_value": true, - "default_value": "[Object:null]" - }, - { - "name": "custom_right", - "type": "Texture", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "set_slot_color_left", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color_left", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slot_color_right", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color_right", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slot_enabled_left", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable_left", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slot_enabled_right", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable_right", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slot_type_left", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_left", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slot_type_right", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_right", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Overlay", - "values": { - "OVERLAY_DISABLED": 0, - "OVERLAY_BREAKPOINT": 1, - "OVERLAY_POSITION": 2 - } - } - ] - }, - { - "name": "GridContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "columns", - "type": "int", - "getter": "get_columns", - "setter": "set_columns", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_columns", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_columns", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "columns", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GridMap", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "INVALID_CELL_ITEM": -1 - }, - "properties": [ - { - "name": "cell_center_x", - "type": "bool", - "getter": "get_center_x", - "setter": "set_center_x", - "index": -1 - }, - { - "name": "cell_center_y", - "type": "bool", - "getter": "get_center_y", - "setter": "set_center_y", - "index": -1 - }, - { - "name": "cell_center_z", - "type": "bool", - "getter": "get_center_z", - "setter": "set_center_z", - "index": -1 - }, - { - "name": "cell_octant_size", - "type": "int", - "getter": "get_octant_size", - "setter": "set_octant_size", - "index": -1 - }, - { - "name": "cell_scale", - "type": "float", - "getter": "get_cell_scale", - "setter": "set_cell_scale", - "index": -1 - }, - { - "name": "cell_size", - "type": "Vector3", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "mesh_library", - "type": "MeshLibrary", - "getter": "get_mesh_library", - "setter": "set_mesh_library", - "index": -1 - }, - { - "name": "physics_material", - "type": "PhysicsMaterial", - "getter": "get_physics_material", - "setter": "set_physics_material", - "index": -1 - }, - { - "name": "use_in_baked_light", - "type": "bool", - "getter": "get_use_in_baked_light", - "setter": "set_use_in_baked_light", - "index": -1 - } - ], - "signals": [ - { - "name": "cell_size_changed", - "arguments": [ - { - "name": "cell_size", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_update_octants_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_baked_meshes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bake_mesh_instance", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bake_meshes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_item", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_cell_item_orientation", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_cell_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_size", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_center_x", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_center_y", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_center_z", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_mesh_library", - "return_type": "MeshLibrary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_meshes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_octant_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_material", - "return_type": "PhysicsMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_in_baked_light", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_used_cells", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_baked_meshes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gen_lightmap_uv", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "lightmap_uv_texel_size", - "type": "float", - "has_default_value": true, - "default_value": "0.1" - } - ] - }, - { - "name": "map_to_world", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resource_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "item", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "orientation", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_cell_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_center_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_center_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_center_z", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "clipabove", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "floor", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "axis", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh_library", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh_library", - "type": "MeshLibrary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_octant_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "PhysicsMaterial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_in_baked_light", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_in_baked_light", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "world_to_map", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pos", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "GrooveJoint2D", - "base_class": "Joint2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "initial_offset", - "type": "float", - "getter": "get_initial_offset", - "setter": "set_initial_offset", - "index": -1 - }, - { - "name": "length", - "type": "float", - "getter": "get_length", - "setter": "set_length", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_initial_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_initial_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "HBoxContainer", - "base_class": "BoxContainer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "HMACContext", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "finish", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "start", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hash_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "HScrollBar", - "base_class": "ScrollBar", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "HSeparator", - "base_class": "Separator", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "HSlider", - "base_class": "Slider", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "HSplitContainer", - "base_class": "SplitContainer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "HTTPClient", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "METHOD_CONNECT": 7, - "METHOD_DELETE": 4, - "METHOD_GET": 0, - "METHOD_HEAD": 1, - "METHOD_MAX": 9, - "METHOD_OPTIONS": 5, - "METHOD_PATCH": 8, - "METHOD_POST": 2, - "METHOD_PUT": 3, - "METHOD_TRACE": 6, - "RESPONSE_ACCEPTED": 202, - "RESPONSE_ALREADY_REPORTED": 208, - "RESPONSE_BAD_GATEWAY": 502, - "RESPONSE_BAD_REQUEST": 400, - "RESPONSE_CONFLICT": 409, - "RESPONSE_CONTINUE": 100, - "RESPONSE_CREATED": 201, - "RESPONSE_EXPECTATION_FAILED": 417, - "RESPONSE_FAILED_DEPENDENCY": 424, - "RESPONSE_FORBIDDEN": 403, - "RESPONSE_FOUND": 302, - "RESPONSE_GATEWAY_TIMEOUT": 504, - "RESPONSE_GONE": 410, - "RESPONSE_HTTP_VERSION_NOT_SUPPORTED": 505, - "RESPONSE_IM_A_TEAPOT": 418, - "RESPONSE_IM_USED": 226, - "RESPONSE_INSUFFICIENT_STORAGE": 507, - "RESPONSE_INTERNAL_SERVER_ERROR": 500, - "RESPONSE_LENGTH_REQUIRED": 411, - "RESPONSE_LOCKED": 423, - "RESPONSE_LOOP_DETECTED": 508, - "RESPONSE_METHOD_NOT_ALLOWED": 405, - "RESPONSE_MISDIRECTED_REQUEST": 421, - "RESPONSE_MOVED_PERMANENTLY": 301, - "RESPONSE_MULTIPLE_CHOICES": 300, - "RESPONSE_MULTI_STATUS": 207, - "RESPONSE_NETWORK_AUTH_REQUIRED": 511, - "RESPONSE_NON_AUTHORITATIVE_INFORMATION": 203, - "RESPONSE_NOT_ACCEPTABLE": 406, - "RESPONSE_NOT_EXTENDED": 510, - "RESPONSE_NOT_FOUND": 404, - "RESPONSE_NOT_IMPLEMENTED": 501, - "RESPONSE_NOT_MODIFIED": 304, - "RESPONSE_NO_CONTENT": 204, - "RESPONSE_OK": 200, - "RESPONSE_PARTIAL_CONTENT": 206, - "RESPONSE_PAYMENT_REQUIRED": 402, - "RESPONSE_PERMANENT_REDIRECT": 308, - "RESPONSE_PRECONDITION_FAILED": 412, - "RESPONSE_PRECONDITION_REQUIRED": 428, - "RESPONSE_PROCESSING": 102, - "RESPONSE_PROXY_AUTHENTICATION_REQUIRED": 407, - "RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE": 416, - "RESPONSE_REQUEST_ENTITY_TOO_LARGE": 413, - "RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE": 431, - "RESPONSE_REQUEST_TIMEOUT": 408, - "RESPONSE_REQUEST_URI_TOO_LONG": 414, - "RESPONSE_RESET_CONTENT": 205, - "RESPONSE_SEE_OTHER": 303, - "RESPONSE_SERVICE_UNAVAILABLE": 503, - "RESPONSE_SWITCHING_PROTOCOLS": 101, - "RESPONSE_SWITCH_PROXY": 306, - "RESPONSE_TEMPORARY_REDIRECT": 307, - "RESPONSE_TOO_MANY_REQUESTS": 429, - "RESPONSE_UNAUTHORIZED": 401, - "RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS": 451, - "RESPONSE_UNPROCESSABLE_ENTITY": 422, - "RESPONSE_UNSUPPORTED_MEDIA_TYPE": 415, - "RESPONSE_UPGRADE_REQUIRED": 426, - "RESPONSE_USE_PROXY": 305, - "RESPONSE_VARIANT_ALSO_NEGOTIATES": 506, - "STATUS_BODY": 7, - "STATUS_CANT_CONNECT": 4, - "STATUS_CANT_RESOLVE": 2, - "STATUS_CONNECTED": 5, - "STATUS_CONNECTING": 3, - "STATUS_CONNECTION_ERROR": 8, - "STATUS_DISCONNECTED": 0, - "STATUS_REQUESTING": 6, - "STATUS_RESOLVING": 1, - "STATUS_SSL_HANDSHAKE_ERROR": 9 - }, - "properties": [ - { - "name": "blocking_mode_enabled", - "type": "bool", - "getter": "is_blocking_mode_enabled", - "setter": "set_blocking_mode", - "index": -1 - }, - { - "name": "connection", - "type": "StreamPeer", - "getter": "get_connection", - "setter": "set_connection", - "index": -1 - }, - { - "name": "read_chunk_size", - "type": "int", - "getter": "get_read_chunk_size", - "setter": "set_read_chunk_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect_to_host", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "use_ssl", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "verify_host", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_connection", - "return_type": "StreamPeer", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_read_chunk_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_response_body_length", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_response_code", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_response_headers", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_response_headers_as_dictionary", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_status", - "return_type": "enum.HTTPClient::Status", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_response", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_blocking_mode_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_response_chunked", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "query_string_from_dict", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fields", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "read_response_body_chunk", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "request", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "headers", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "request_raw", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "headers", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blocking_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_connection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "connection", - "type": "StreamPeer", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_http_proxy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_https_proxy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_read_chunk_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Status", - "values": { - "STATUS_DISCONNECTED": 0, - "STATUS_RESOLVING": 1, - "STATUS_CANT_RESOLVE": 2, - "STATUS_CONNECTING": 3, - "STATUS_CANT_CONNECT": 4, - "STATUS_CONNECTED": 5, - "STATUS_REQUESTING": 6, - "STATUS_BODY": 7, - "STATUS_CONNECTION_ERROR": 8, - "STATUS_SSL_HANDSHAKE_ERROR": 9 - } - }, - { - "name": "Method", - "values": { - "METHOD_GET": 0, - "METHOD_HEAD": 1, - "METHOD_POST": 2, - "METHOD_PUT": 3, - "METHOD_DELETE": 4, - "METHOD_OPTIONS": 5, - "METHOD_TRACE": 6, - "METHOD_CONNECT": 7, - "METHOD_PATCH": 8, - "METHOD_MAX": 9 - } - }, - { - "name": "ResponseCode", - "values": { - "RESPONSE_CONTINUE": 100, - "RESPONSE_SWITCHING_PROTOCOLS": 101, - "RESPONSE_PROCESSING": 102, - "RESPONSE_OK": 200, - "RESPONSE_CREATED": 201, - "RESPONSE_ACCEPTED": 202, - "RESPONSE_NON_AUTHORITATIVE_INFORMATION": 203, - "RESPONSE_NO_CONTENT": 204, - "RESPONSE_RESET_CONTENT": 205, - "RESPONSE_PARTIAL_CONTENT": 206, - "RESPONSE_MULTI_STATUS": 207, - "RESPONSE_ALREADY_REPORTED": 208, - "RESPONSE_IM_USED": 226, - "RESPONSE_MULTIPLE_CHOICES": 300, - "RESPONSE_MOVED_PERMANENTLY": 301, - "RESPONSE_FOUND": 302, - "RESPONSE_SEE_OTHER": 303, - "RESPONSE_NOT_MODIFIED": 304, - "RESPONSE_USE_PROXY": 305, - "RESPONSE_SWITCH_PROXY": 306, - "RESPONSE_TEMPORARY_REDIRECT": 307, - "RESPONSE_PERMANENT_REDIRECT": 308, - "RESPONSE_BAD_REQUEST": 400, - "RESPONSE_UNAUTHORIZED": 401, - "RESPONSE_PAYMENT_REQUIRED": 402, - "RESPONSE_FORBIDDEN": 403, - "RESPONSE_NOT_FOUND": 404, - "RESPONSE_METHOD_NOT_ALLOWED": 405, - "RESPONSE_NOT_ACCEPTABLE": 406, - "RESPONSE_PROXY_AUTHENTICATION_REQUIRED": 407, - "RESPONSE_REQUEST_TIMEOUT": 408, - "RESPONSE_CONFLICT": 409, - "RESPONSE_GONE": 410, - "RESPONSE_LENGTH_REQUIRED": 411, - "RESPONSE_PRECONDITION_FAILED": 412, - "RESPONSE_REQUEST_ENTITY_TOO_LARGE": 413, - "RESPONSE_REQUEST_URI_TOO_LONG": 414, - "RESPONSE_UNSUPPORTED_MEDIA_TYPE": 415, - "RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE": 416, - "RESPONSE_EXPECTATION_FAILED": 417, - "RESPONSE_IM_A_TEAPOT": 418, - "RESPONSE_MISDIRECTED_REQUEST": 421, - "RESPONSE_UNPROCESSABLE_ENTITY": 422, - "RESPONSE_LOCKED": 423, - "RESPONSE_FAILED_DEPENDENCY": 424, - "RESPONSE_UPGRADE_REQUIRED": 426, - "RESPONSE_PRECONDITION_REQUIRED": 428, - "RESPONSE_TOO_MANY_REQUESTS": 429, - "RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE": 431, - "RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS": 451, - "RESPONSE_INTERNAL_SERVER_ERROR": 500, - "RESPONSE_NOT_IMPLEMENTED": 501, - "RESPONSE_BAD_GATEWAY": 502, - "RESPONSE_SERVICE_UNAVAILABLE": 503, - "RESPONSE_GATEWAY_TIMEOUT": 504, - "RESPONSE_HTTP_VERSION_NOT_SUPPORTED": 505, - "RESPONSE_VARIANT_ALSO_NEGOTIATES": 506, - "RESPONSE_INSUFFICIENT_STORAGE": 507, - "RESPONSE_LOOP_DETECTED": 508, - "RESPONSE_NOT_EXTENDED": 510, - "RESPONSE_NETWORK_AUTH_REQUIRED": 511 - } - } - ] - }, - { - "name": "HTTPRequest", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "RESULT_BODY_SIZE_LIMIT_EXCEEDED": 7, - "RESULT_CANT_CONNECT": 2, - "RESULT_CANT_RESOLVE": 3, - "RESULT_CHUNKED_BODY_SIZE_MISMATCH": 1, - "RESULT_CONNECTION_ERROR": 4, - "RESULT_DOWNLOAD_FILE_CANT_OPEN": 9, - "RESULT_DOWNLOAD_FILE_WRITE_ERROR": 10, - "RESULT_NO_RESPONSE": 6, - "RESULT_REDIRECT_LIMIT_REACHED": 11, - "RESULT_REQUEST_FAILED": 8, - "RESULT_SSL_HANDSHAKE_ERROR": 5, - "RESULT_SUCCESS": 0, - "RESULT_TIMEOUT": 12 - }, - "properties": [ - { - "name": "body_size_limit", - "type": "int", - "getter": "get_body_size_limit", - "setter": "set_body_size_limit", - "index": -1 - }, - { - "name": "download_chunk_size", - "type": "int", - "getter": "get_download_chunk_size", - "setter": "set_download_chunk_size", - "index": -1 - }, - { - "name": "download_file", - "type": "String", - "getter": "get_download_file", - "setter": "set_download_file", - "index": -1 - }, - { - "name": "max_redirects", - "type": "int", - "getter": "get_max_redirects", - "setter": "set_max_redirects", - "index": -1 - }, - { - "name": "timeout", - "type": "int", - "getter": "get_timeout", - "setter": "set_timeout", - "index": -1 - }, - { - "name": "use_threads", - "type": "bool", - "getter": "is_using_threads", - "setter": "set_use_threads", - "index": -1 - } - ], - "signals": [ - { - "name": "request_completed", - "arguments": [ - { - "name": "result", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "response_code", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "headers", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_redirect_request", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_request_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cancel_request", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_body_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_body_size_limit", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_download_chunk_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_download_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_downloaded_bytes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_http_client_status", - "return_type": "enum.HTTPClient::Status", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_redirects", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_timeout", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_threads", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "request", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_headers", - "type": "PoolStringArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "ssl_validate_domain", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "method", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "request_data", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "request_raw", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_headers", - "type": "PoolStringArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "ssl_validate_domain", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "method", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "request_data_raw", - "type": "PoolByteArray", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "set_body_size_limit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_download_chunk_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_download_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_http_proxy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_https_proxy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_redirects", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "timeout", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_threads", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Result", - "values": { - "RESULT_SUCCESS": 0, - "RESULT_CHUNKED_BODY_SIZE_MISMATCH": 1, - "RESULT_CANT_CONNECT": 2, - "RESULT_CANT_RESOLVE": 3, - "RESULT_CONNECTION_ERROR": 4, - "RESULT_SSL_HANDSHAKE_ERROR": 5, - "RESULT_NO_RESPONSE": 6, - "RESULT_BODY_SIZE_LIMIT_EXCEEDED": 7, - "RESULT_REQUEST_FAILED": 8, - "RESULT_DOWNLOAD_FILE_CANT_OPEN": 9, - "RESULT_DOWNLOAD_FILE_WRITE_ERROR": 10, - "RESULT_REDIRECT_LIMIT_REACHED": 11, - "RESULT_TIMEOUT": 12 - } - } - ] - }, - { - "name": "HashingContext", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "HASH_MD5": 0, - "HASH_SHA1": 1, - "HASH_SHA256": 2 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "finish", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "start", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "chunk", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "HashType", - "values": { - "HASH_MD5": 0, - "HASH_SHA1": 1, - "HASH_SHA256": 2 - } - } - ] - }, - { - "name": "HeightMapShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "map_data", - "type": "PoolRealArray", - "getter": "get_map_data", - "setter": "set_map_data", - "index": -1 - }, - { - "name": "map_depth", - "type": "int", - "getter": "get_map_depth", - "setter": "set_map_depth", - "index": -1 - }, - { - "name": "map_width", - "type": "int", - "getter": "get_map_width", - "setter": "set_map_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_map_data", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_map_depth", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_map_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_map_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_map_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_map_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "HingeJoint", - "base_class": "Joint", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "FLAG_ENABLE_MOTOR": 1, - "FLAG_MAX": 2, - "FLAG_USE_LIMIT": 0, - "PARAM_BIAS": 0, - "PARAM_LIMIT_BIAS": 3, - "PARAM_LIMIT_LOWER": 2, - "PARAM_LIMIT_RELAXATION": 5, - "PARAM_LIMIT_SOFTNESS": 4, - "PARAM_LIMIT_UPPER": 1, - "PARAM_MAX": 8, - "PARAM_MOTOR_MAX_IMPULSE": 7, - "PARAM_MOTOR_TARGET_VELOCITY": 6 - }, - "properties": [ - { - "name": "angular_limit/bias", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "angular_limit/enable", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 0 - }, - { - "name": "angular_limit/lower", - "type": "float", - "getter": "_get_lower_limit", - "setter": "_set_lower_limit", - "index": -1 - }, - { - "name": "angular_limit/relaxation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "angular_limit/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "angular_limit/upper", - "type": "float", - "getter": "_get_upper_limit", - "setter": "_set_upper_limit", - "index": -1 - }, - { - "name": "motor/enable", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 1 - }, - { - "name": "motor/max_impulse", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 7 - }, - { - "name": "motor/target_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 6 - }, - { - "name": "params/bias", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_lower_limit", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_upper_limit", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_lower_limit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lower_limit", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_upper_limit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "upper_limit", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Param", - "values": { - "PARAM_BIAS": 0, - "PARAM_LIMIT_UPPER": 1, - "PARAM_LIMIT_LOWER": 2, - "PARAM_LIMIT_BIAS": 3, - "PARAM_LIMIT_SOFTNESS": 4, - "PARAM_LIMIT_RELAXATION": 5, - "PARAM_MOTOR_TARGET_VELOCITY": 6, - "PARAM_MOTOR_MAX_IMPULSE": 7, - "PARAM_MAX": 8 - } - }, - { - "name": "Flag", - "values": { - "FLAG_USE_LIMIT": 0, - "FLAG_ENABLE_MOTOR": 1, - "FLAG_MAX": 2 - } - } - ] - }, - { - "name": "IP", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "IP", - "instanciable": false, - "is_reference": false, - "constants": { - "RESOLVER_INVALID_ID": -1, - "RESOLVER_MAX_QUERIES": 32, - "RESOLVER_STATUS_DONE": 2, - "RESOLVER_STATUS_ERROR": 3, - "RESOLVER_STATUS_NONE": 0, - "RESOLVER_STATUS_WAITING": 1, - "TYPE_ANY": 3, - "TYPE_IPV4": 1, - "TYPE_IPV6": 2, - "TYPE_NONE": 0 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hostname", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "erase_resolve_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_local_addresses", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_local_interfaces", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resolve_item_address", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_resolve_item_addresses", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_resolve_item_status", - "return_type": "enum.IP::ResolverStatus", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "resolve_hostname", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ip_type", - "type": "int", - "has_default_value": true, - "default_value": "3" - } - ] - }, - { - "name": "resolve_hostname_addresses", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ip_type", - "type": "int", - "has_default_value": true, - "default_value": "3" - } - ] - }, - { - "name": "resolve_hostname_queue_item", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ip_type", - "type": "int", - "has_default_value": true, - "default_value": "3" - } - ] - } - ], - "enums": [ - { - "name": "ResolverStatus", - "values": { - "RESOLVER_STATUS_NONE": 0, - "RESOLVER_STATUS_WAITING": 1, - "RESOLVER_STATUS_DONE": 2, - "RESOLVER_STATUS_ERROR": 3 - } - }, - { - "name": "Type", - "values": { - "TYPE_NONE": 0, - "TYPE_IPV4": 1, - "TYPE_IPV6": 2, - "TYPE_ANY": 3 - } - } - ] - }, - { - "name": "IP_Unix", - "base_class": "IP", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Image", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "ALPHA_BIT": 1, - "ALPHA_BLEND": 2, - "ALPHA_NONE": 0, - "COMPRESS_ETC": 3, - "COMPRESS_ETC2": 4, - "COMPRESS_PVRTC2": 1, - "COMPRESS_PVRTC4": 2, - "COMPRESS_S3TC": 0, - "COMPRESS_SOURCE_GENERIC": 0, - "COMPRESS_SOURCE_NORMAL": 2, - "COMPRESS_SOURCE_SRGB": 1, - "FORMAT_BPTC_RGBA": 22, - "FORMAT_BPTC_RGBF": 23, - "FORMAT_BPTC_RGBFU": 24, - "FORMAT_DXT1": 17, - "FORMAT_DXT3": 18, - "FORMAT_DXT5": 19, - "FORMAT_ETC": 29, - "FORMAT_ETC2_R11": 30, - "FORMAT_ETC2_R11S": 31, - "FORMAT_ETC2_RG11": 32, - "FORMAT_ETC2_RG11S": 33, - "FORMAT_ETC2_RGB8": 34, - "FORMAT_ETC2_RGB8A1": 36, - "FORMAT_ETC2_RGBA8": 35, - "FORMAT_L8": 0, - "FORMAT_LA8": 1, - "FORMAT_MAX": 37, - "FORMAT_PVRTC2": 25, - "FORMAT_PVRTC2A": 26, - "FORMAT_PVRTC4": 27, - "FORMAT_PVRTC4A": 28, - "FORMAT_R8": 2, - "FORMAT_RF": 8, - "FORMAT_RG8": 3, - "FORMAT_RGB8": 4, - "FORMAT_RGBA4444": 6, - "FORMAT_RGBA5551": 7, - "FORMAT_RGBA8": 5, - "FORMAT_RGBAF": 11, - "FORMAT_RGBAH": 15, - "FORMAT_RGBE9995": 16, - "FORMAT_RGBF": 10, - "FORMAT_RGBH": 14, - "FORMAT_RGF": 9, - "FORMAT_RGH": 13, - "FORMAT_RGTC_R": 20, - "FORMAT_RGTC_RG": 21, - "FORMAT_RH": 12, - "INTERPOLATE_BILINEAR": 1, - "INTERPOLATE_CUBIC": 2, - "INTERPOLATE_LANCZOS": 4, - "INTERPOLATE_NEAREST": 0, - "INTERPOLATE_TRILINEAR": 3, - "MAX_HEIGHT": 16384, - "MAX_WIDTH": 16384 - }, - "properties": [ - { - "name": "data", - "type": "Dictionary", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blend_rect_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blit_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "blit_rect_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bumpmap_to_normalmap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bump_scale", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "clear_mipmaps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "compress", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "source", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lossy_quality", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "convert", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "copy_from", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_mipmaps", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_from_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_mipmaps", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "crop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "decompress", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "detect_alpha", - "return_type": "enum.Image::AlphaMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "expand_x2_hq2x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "fill", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "fill_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "fix_alpha_edges", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "flip_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "flip_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "generate_mipmaps", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "renormalize", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_data", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_format", - "return_type": "enum.Image::Format", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mipmap_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mipmap", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pixel", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pixelv", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_rect", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_used_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_mipmaps", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_compressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_empty", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_invisible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "load", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_bmp_from_buffer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_jpg_from_buffer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_png_from_buffer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_tga_from_buffer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_webp_from_buffer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "normalmap_to_xy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "premultiply_alpha", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "resize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "interpolation", - "type": "int", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "resize_to_po2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "square", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "interpolation", - "type": "int", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "rgbe_to_srgb", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "save_exr", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "grayscale", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "save_png", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save_png_to_buffer", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_pixel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pixelv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dst", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shrink_x2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "srgb_to_linear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "unlock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "AlphaMode", - "values": { - "ALPHA_NONE": 0, - "ALPHA_BIT": 1, - "ALPHA_BLEND": 2 - } - }, - { - "name": "CompressSource", - "values": { - "COMPRESS_SOURCE_GENERIC": 0, - "COMPRESS_SOURCE_SRGB": 1, - "COMPRESS_SOURCE_NORMAL": 2 - } - }, - { - "name": "Interpolation", - "values": { - "INTERPOLATE_NEAREST": 0, - "INTERPOLATE_BILINEAR": 1, - "INTERPOLATE_CUBIC": 2, - "INTERPOLATE_TRILINEAR": 3, - "INTERPOLATE_LANCZOS": 4 - } - }, - { - "name": "CompressMode", - "values": { - "COMPRESS_S3TC": 0, - "COMPRESS_PVRTC2": 1, - "COMPRESS_PVRTC4": 2, - "COMPRESS_ETC": 3, - "COMPRESS_ETC2": 4 - } - }, - { - "name": "Format", - "values": { - "FORMAT_L8": 0, - "FORMAT_LA8": 1, - "FORMAT_R8": 2, - "FORMAT_RG8": 3, - "FORMAT_RGB8": 4, - "FORMAT_RGBA8": 5, - "FORMAT_RGBA4444": 6, - "FORMAT_RGBA5551": 7, - "FORMAT_RF": 8, - "FORMAT_RGF": 9, - "FORMAT_RGBF": 10, - "FORMAT_RGBAF": 11, - "FORMAT_RH": 12, - "FORMAT_RGH": 13, - "FORMAT_RGBH": 14, - "FORMAT_RGBAH": 15, - "FORMAT_RGBE9995": 16, - "FORMAT_DXT1": 17, - "FORMAT_DXT3": 18, - "FORMAT_DXT5": 19, - "FORMAT_RGTC_R": 20, - "FORMAT_RGTC_RG": 21, - "FORMAT_BPTC_RGBA": 22, - "FORMAT_BPTC_RGBF": 23, - "FORMAT_BPTC_RGBFU": 24, - "FORMAT_PVRTC2": 25, - "FORMAT_PVRTC2A": 26, - "FORMAT_PVRTC4": 27, - "FORMAT_PVRTC4A": 28, - "FORMAT_ETC": 29, - "FORMAT_ETC2_R11": 30, - "FORMAT_ETC2_R11S": 31, - "FORMAT_ETC2_RG11": 32, - "FORMAT_ETC2_RG11S": 33, - "FORMAT_ETC2_RGB8": 34, - "FORMAT_ETC2_RGBA8": 35, - "FORMAT_ETC2_RGB8A1": 36, - "FORMAT_MAX": 37 - } - } - ] - }, - { - "name": "ImageTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "STORAGE_COMPRESS_LOSSLESS": 2, - "STORAGE_COMPRESS_LOSSY": 1, - "STORAGE_RAW": 0 - }, - "properties": [ - { - "name": "lossy_quality", - "type": "float", - "getter": "get_lossy_storage_quality", - "setter": "set_lossy_storage_quality", - "index": -1 - }, - { - "name": "storage", - "type": "int", - "getter": "get_storage", - "setter": "set_storage", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_reload_hook", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "7" - } - ] - }, - { - "name": "create_from_image", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "7" - } - ] - }, - { - "name": "get_format", - "return_type": "enum.Image::Format", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lossy_storage_quality", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_storage", - "return_type": "enum.ImageTexture::Storage", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "load", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lossy_storage_quality", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "quality", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_storage", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Storage", - "values": { - "STORAGE_RAW": 0, - "STORAGE_COMPRESS_LOSSY": 1, - "STORAGE_COMPRESS_LOSSLESS": 2 - } - } - ] - }, - { - "name": "ImmediateGeometry", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_sphere", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lats", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lons", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "add_uv", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "add_vertex", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "primitive", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tangent", - "type": "Plane", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uv", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uv", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Input", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Input", - "instanciable": false, - "is_reference": false, - "constants": { - "CURSOR_ARROW": 0, - "CURSOR_BDIAGSIZE": 11, - "CURSOR_BUSY": 5, - "CURSOR_CAN_DROP": 7, - "CURSOR_CROSS": 3, - "CURSOR_DRAG": 6, - "CURSOR_FDIAGSIZE": 12, - "CURSOR_FORBIDDEN": 8, - "CURSOR_HELP": 16, - "CURSOR_HSIZE": 10, - "CURSOR_HSPLIT": 15, - "CURSOR_IBEAM": 1, - "CURSOR_MOVE": 13, - "CURSOR_POINTING_HAND": 2, - "CURSOR_VSIZE": 9, - "CURSOR_VSPLIT": 14, - "CURSOR_WAIT": 4, - "MOUSE_MODE_CAPTURED": 2, - "MOUSE_MODE_CONFINED": 3, - "MOUSE_MODE_HIDDEN": 1, - "MOUSE_MODE_VISIBLE": 0 - }, - "properties": [ - ], - "signals": [ - { - "name": "joy_connection_changed", - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "connected", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "action_press", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "strength", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "action_release", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_joy_mapping", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mapping", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "update_existing", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "flush_buffered_events", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_accelerometer", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_action_raw_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_action_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_axis", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "negative_action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "positive_action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connected_joypads", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_cursor_shape", - "return_type": "enum.Input::CursorShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gyroscope", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joy_axis", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_axis_index_from_string", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_axis_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_button_index_from_string", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_button_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_guid", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_vibration_duration", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_joy_vibration_strength", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_last_mouse_speed", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_magnetometer", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mouse_button_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mouse_mode", - "return_type": "enum.Input::MouseMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vector", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "negative_x", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "positive_x", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "negative_y", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "positive_y", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "deadzone", - "type": "float", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "is_action_just_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_action_just_released", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_action_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_joy_button_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_joy_known", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_key_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scancode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_mouse_button_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_physical_key_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scancode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joy_connection_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "connected", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "guid", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "parse_input_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_joy_mapping", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "guid", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_accelerometer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_mouse_cursor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "hotspot", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "set_default_cursor_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_gravity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gyroscope", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_magnetometer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mouse_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_accumulated_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "start_joy_vibration", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weak_magnitude", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "strong_magnitude", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "stop_joy_vibration", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "vibrate_handheld", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "duration_ms", - "type": "int", - "has_default_value": true, - "default_value": "500" - } - ] - }, - { - "name": "warp_mouse_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "MouseMode", - "values": { - "MOUSE_MODE_VISIBLE": 0, - "MOUSE_MODE_HIDDEN": 1, - "MOUSE_MODE_CAPTURED": 2, - "MOUSE_MODE_CONFINED": 3 - } - }, - { - "name": "CursorShape", - "values": { - "CURSOR_ARROW": 0, - "CURSOR_IBEAM": 1, - "CURSOR_POINTING_HAND": 2, - "CURSOR_CROSS": 3, - "CURSOR_WAIT": 4, - "CURSOR_BUSY": 5, - "CURSOR_DRAG": 6, - "CURSOR_CAN_DROP": 7, - "CURSOR_FORBIDDEN": 8, - "CURSOR_VSIZE": 9, - "CURSOR_HSIZE": 10, - "CURSOR_BDIAGSIZE": 11, - "CURSOR_FDIAGSIZE": 12, - "CURSOR_MOVE": 13, - "CURSOR_VSPLIT": 14, - "CURSOR_HSPLIT": 15, - "CURSOR_HELP": 16 - } - } - ] - }, - { - "name": "InputDefault", - "base_class": "Input", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "InputEvent", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "device", - "type": "int", - "getter": "get_device", - "setter": "set_device", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "accumulate", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "with_event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "as_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_action_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact_match", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_device", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_action", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact_match", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_action_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "allow_echo", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "exact_match", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_action_released", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact_match", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_action_type", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_echo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_device", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shortcut_match", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact_match", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "xformed_by", - "return_type": "InputEvent", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ofs", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventAction", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "action", - "type": "String", - "getter": "get_action", - "setter": "set_action", - "index": -1 - }, - { - "name": "pressed", - "type": "bool", - "getter": "is_pressed", - "setter": "set_pressed", - "index": -1 - }, - { - "name": "strength", - "type": "float", - "getter": "get_strength", - "setter": "set_strength", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_action", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_strength", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "strength", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventGesture", - "base_class": "InputEventWithModifiers", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "position", - "type": "Vector2", - "getter": "get_position", - "setter": "set_position", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventJoypadButton", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "button_index", - "type": "int", - "getter": "get_button_index", - "setter": "set_button_index", - "index": -1 - }, - { - "name": "pressed", - "type": "bool", - "getter": "is_pressed", - "setter": "set_pressed", - "index": -1 - }, - { - "name": "pressure", - "type": "float", - "getter": "get_pressure", - "setter": "set_pressure", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_button_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pressure", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_button_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressure", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressure", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventJoypadMotion", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "axis", - "type": "int", - "getter": "get_axis", - "setter": "set_axis", - "index": -1 - }, - { - "name": "axis_value", - "type": "float", - "getter": "get_axis_value", - "setter": "set_axis_value", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_axis", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_axis_value", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_axis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_axis_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis_value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventKey", - "base_class": "InputEventWithModifiers", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "echo", - "type": "bool", - "getter": "is_echo", - "setter": "set_echo", - "index": -1 - }, - { - "name": "physical_scancode", - "type": "int", - "getter": "get_physical_scancode", - "setter": "set_physical_scancode", - "index": -1 - }, - { - "name": "pressed", - "type": "bool", - "getter": "is_pressed", - "setter": "set_pressed", - "index": -1 - }, - { - "name": "scancode", - "type": "int", - "getter": "get_scancode", - "setter": "set_scancode", - "index": -1 - }, - { - "name": "unicode", - "type": "int", - "getter": "get_unicode", - "setter": "set_unicode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_physical_scancode", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physical_scancode_with_modifiers", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scancode", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scancode_with_modifiers", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unicode", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_echo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "echo", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physical_scancode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scancode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scancode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scancode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unicode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unicode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventMIDI", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "channel", - "type": "int", - "getter": "get_channel", - "setter": "set_channel", - "index": -1 - }, - { - "name": "controller_number", - "type": "int", - "getter": "get_controller_number", - "setter": "set_controller_number", - "index": -1 - }, - { - "name": "controller_value", - "type": "int", - "getter": "get_controller_value", - "setter": "set_controller_value", - "index": -1 - }, - { - "name": "instrument", - "type": "int", - "getter": "get_instrument", - "setter": "set_instrument", - "index": -1 - }, - { - "name": "message", - "type": "int", - "getter": "get_message", - "setter": "set_message", - "index": -1 - }, - { - "name": "pitch", - "type": "int", - "getter": "get_pitch", - "setter": "set_pitch", - "index": -1 - }, - { - "name": "pressure", - "type": "int", - "getter": "get_pressure", - "setter": "set_pressure", - "index": -1 - }, - { - "name": "velocity", - "type": "int", - "getter": "get_velocity", - "setter": "set_velocity", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_channel", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_controller_number", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_controller_value", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_instrument", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_message", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pitch", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pressure", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_velocity", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_channel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_controller_number", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "controller_number", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_controller_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "controller_value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instrument", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instrument", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_message", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "message", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pitch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pitch", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressure", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressure", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventMagnifyGesture", - "base_class": "InputEventGesture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "factor", - "type": "float", - "getter": "get_factor", - "setter": "set_factor", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_factor", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_factor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "factor", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventMouse", - "base_class": "InputEventWithModifiers", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "button_mask", - "type": "int", - "getter": "get_button_mask", - "setter": "set_button_mask", - "index": -1 - }, - { - "name": "global_position", - "type": "Vector2", - "getter": "get_global_position", - "setter": "set_global_position", - "index": -1 - }, - { - "name": "position", - "type": "Vector2", - "getter": "get_position", - "setter": "set_position", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_button_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_button_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "global_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventMouseButton", - "base_class": "InputEventMouse", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "button_index", - "type": "int", - "getter": "get_button_index", - "setter": "set_button_index", - "index": -1 - }, - { - "name": "doubleclick", - "type": "bool", - "getter": "is_doubleclick", - "setter": "set_doubleclick", - "index": -1 - }, - { - "name": "factor", - "type": "float", - "getter": "get_factor", - "setter": "set_factor", - "index": -1 - }, - { - "name": "pressed", - "type": "bool", - "getter": "is_pressed", - "setter": "set_pressed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_button_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_factor", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_doubleclick", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_button_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "button_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_doubleclick", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "doubleclick", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_factor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "factor", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventMouseMotion", - "base_class": "InputEventMouse", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "pressure", - "type": "float", - "getter": "get_pressure", - "setter": "set_pressure", - "index": -1 - }, - { - "name": "relative", - "type": "Vector2", - "getter": "get_relative", - "setter": "set_relative", - "index": -1 - }, - { - "name": "speed", - "type": "Vector2", - "getter": "get_speed", - "setter": "set_speed", - "index": -1 - }, - { - "name": "tilt", - "type": "Vector2", - "getter": "get_tilt", - "setter": "set_tilt", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_pressure", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_relative", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tilt", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_pressure", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressure", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_relative", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "relative", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tilt", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tilt", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventPanGesture", - "base_class": "InputEventGesture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "delta", - "type": "Vector2", - "getter": "get_delta", - "setter": "set_delta", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_delta", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_delta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventScreenDrag", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "index", - "type": "int", - "getter": "get_index", - "setter": "set_index", - "index": -1 - }, - { - "name": "position", - "type": "Vector2", - "getter": "get_position", - "setter": "set_position", - "index": -1 - }, - { - "name": "relative", - "type": "Vector2", - "getter": "get_relative", - "setter": "set_relative", - "index": -1 - }, - { - "name": "speed", - "type": "Vector2", - "getter": "get_speed", - "setter": "set_speed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_relative", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_relative", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "relative", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventScreenTouch", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "index", - "type": "int", - "getter": "get_index", - "setter": "set_index", - "index": -1 - }, - { - "name": "position", - "type": "Vector2", - "getter": "get_position", - "setter": "set_position", - "index": -1 - }, - { - "name": "pressed", - "type": "bool", - "getter": "is_pressed", - "setter": "set_pressed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputEventWithModifiers", - "base_class": "InputEvent", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "alt", - "type": "bool", - "getter": "get_alt", - "setter": "set_alt", - "index": -1 - }, - { - "name": "command", - "type": "bool", - "getter": "get_command", - "setter": "set_command", - "index": -1 - }, - { - "name": "control", - "type": "bool", - "getter": "get_control", - "setter": "set_control", - "index": -1 - }, - { - "name": "meta", - "type": "bool", - "getter": "get_metakey", - "setter": "set_metakey", - "index": -1 - }, - { - "name": "shift", - "type": "bool", - "getter": "get_shift", - "setter": "set_shift", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_alt", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_command", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_control", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_metakey", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shift", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_alt", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_command", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_control", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_metakey", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shift", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InputMap", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "InputMap", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "action_add_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "action_erase_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "action_erase_events", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "action_get_deadzone", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "action_has_event", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "action_set_deadzone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "deadzone", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "deadzone", - "type": "float", - "has_default_value": true, - "default_value": "0.5" - } - ] - }, - { - "name": "erase_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "event_is_action", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - }, - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact_match", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_action_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_actions", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_action", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_from_globals", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "InstancePlaceholder", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "create_instance", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "replace", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "custom_scene", - "type": "PackedScene", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "get_instance_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stored_values", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "with_order", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "replace_by_instance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "custom_scene", - "type": "PackedScene", - "has_default_value": true, - "default_value": "Null" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "InterpolatedCamera", - "base_class": "Camera", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "enabled", - "type": "bool", - "getter": "is_interpolation_enabled", - "setter": "set_interpolation_enabled", - "index": -1 - }, - { - "name": "speed", - "type": "float", - "getter": "get_speed", - "setter": "set_speed", - "index": -1 - }, - { - "name": "target", - "type": "NodePath", - "getter": "get_target_path", - "setter": "set_target_path", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_interpolation_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_interpolation_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target_path", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ItemList", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ICON_MODE_LEFT": 1, - "ICON_MODE_TOP": 0, - "SELECT_MULTI": 1, - "SELECT_SINGLE": 0 - }, - "properties": [ - { - "name": "allow_reselect", - "type": "bool", - "getter": "get_allow_reselect", - "setter": "set_allow_reselect", - "index": -1 - }, - { - "name": "allow_rmb_select", - "type": "bool", - "getter": "get_allow_rmb_select", - "setter": "set_allow_rmb_select", - "index": -1 - }, - { - "name": "auto_height", - "type": "bool", - "getter": "has_auto_height", - "setter": "set_auto_height", - "index": -1 - }, - { - "name": "fixed_column_width", - "type": "int", - "getter": "get_fixed_column_width", - "setter": "set_fixed_column_width", - "index": -1 - }, - { - "name": "fixed_icon_size", - "type": "Vector2", - "getter": "get_fixed_icon_size", - "setter": "set_fixed_icon_size", - "index": -1 - }, - { - "name": "icon_mode", - "type": "int", - "getter": "get_icon_mode", - "setter": "set_icon_mode", - "index": -1 - }, - { - "name": "icon_scale", - "type": "float", - "getter": "get_icon_scale", - "setter": "set_icon_scale", - "index": -1 - }, - { - "name": "items", - "type": "Array", - "getter": "_get_items", - "setter": "_set_items", - "index": -1 - }, - { - "name": "max_columns", - "type": "int", - "getter": "get_max_columns", - "setter": "set_max_columns", - "index": -1 - }, - { - "name": "max_text_lines", - "type": "int", - "getter": "get_max_text_lines", - "setter": "set_max_text_lines", - "index": -1 - }, - { - "name": "same_column_width", - "type": "bool", - "getter": "is_same_column_width", - "setter": "set_same_column_width", - "index": -1 - }, - { - "name": "select_mode", - "type": "int", - "getter": "get_select_mode", - "setter": "set_select_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "item_activated", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "item_rmb_selected", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "item_selected", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multi_selected", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "selected", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "nothing_selected", - "arguments": [ - ] - }, - { - "name": "rmb_clicked", - "arguments": [ - { - "name": "at_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_get_items", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_scroll_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_items", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_icon_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "selectable", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "add_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "selectable", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "ensure_current_is_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_allow_reselect", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_allow_rmb_select", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fixed_column_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fixed_icon_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_icon_mode", - "return_type": "enum.ItemList::IconMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_icon_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_at_position", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exact", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_item_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_custom_bg_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_custom_fg_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_icon_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_icon_region", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_max_columns", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_text_lines", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_select_mode", - "return_type": "enum.ItemList::SelectMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected_items", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_scroll", - "return_type": "VScrollBar", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_auto_height", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_anything_selected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_item_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_icon_transposed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_selectable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_tooltip_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_same_column_width", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "move_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "single", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_allow_reselect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_allow_rmb_select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_auto_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fixed_column_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fixed_icon_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_custom_bg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_bg_color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_custom_fg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_fg_color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_icon_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_icon_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_icon_transposed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transposed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_metadata", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "metadata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_selectable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "selectable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_tooltip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tooltip", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_tooltip_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_columns", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_text_lines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lines", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_same_column_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_select_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sort_items_by_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "unselect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unselect_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "SelectMode", - "values": { - "SELECT_SINGLE": 0, - "SELECT_MULTI": 1 - } - }, - { - "name": "IconMode", - "values": { - "ICON_MODE_TOP": 0, - "ICON_MODE_LEFT": 1 - } - } - ] - }, - { - "name": "JNISingleton", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "JSONParseResult", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "error", - "type": "Object", - "getter": "get_error", - "setter": "set_error", - "index": -1 - }, - { - "name": "error_line", - "type": "int", - "getter": "get_error_line", - "setter": "set_error_line", - "index": -1 - }, - { - "name": "error_string", - "type": "String", - "getter": "get_error_string", - "setter": "set_error_string", - "index": -1 - }, - { - "name": "result", - "type": "Variant", - "getter": "get_result", - "setter": "set_result", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_error", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_error_line", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_error_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_result", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_error", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "error", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_error_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "error_line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_error_string", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "error_string", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_result", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "result", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "JSONRPC", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "INTERNAL_ERROR": -32603, - "INVALID_PARAMS": -32602, - "INVALID_REQUEST": -32600, - "METHOD_NOT_FOUND": -32601, - "PARSE_ERROR": -32700 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "make_notification", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "params", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_request", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "params", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_response", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "result", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_response_error", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "message", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "process_action", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "recurse", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "process_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scope", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scope", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ErrorCode", - "values": { - "PARSE_ERROR": -32700, - "INTERNAL_ERROR": -32603, - "INVALID_PARAMS": -32602, - "METHOD_NOT_FOUND": -32601, - "INVALID_REQUEST": -32600 - } - } - ] - }, - { - "name": "JavaClass", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "JavaClassWrapper", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "JavaClassWrapper", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "wrap", - "return_type": "JavaClass", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "JavaScript", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "JavaScript", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "create_callback", - "return_type": "JavaScriptObject", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_object", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "download_buffer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mime", - "type": "String", - "has_default_value": true, - "default_value": "application/octet-stream" - } - ] - }, - { - "name": "eval", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_global_execution_context", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_interface", - "return_type": "JavaScriptObject", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interface", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "JavaScriptObject", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Joint", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "collision/exclude_nodes", - "type": "bool", - "getter": "get_exclude_nodes_from_collision", - "setter": "set_exclude_nodes_from_collision", - "index": -1 - }, - { - "name": "nodes/node_a", - "type": "NodePath", - "getter": "get_node_a", - "setter": "set_node_a", - "index": -1 - }, - { - "name": "nodes/node_b", - "type": "NodePath", - "getter": "get_node_b", - "setter": "set_node_b", - "index": -1 - }, - { - "name": "solver/priority", - "type": "int", - "getter": "get_solver_priority", - "setter": "set_solver_priority", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_body_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exclude_nodes_from_collision", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_a", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_b", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_solver_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_exclude_nodes_from_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_a", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_b", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_solver_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Joint2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "bias", - "type": "float", - "getter": "get_bias", - "setter": "set_bias", - "index": -1 - }, - { - "name": "disable_collision", - "type": "bool", - "getter": "get_exclude_nodes_from_collision", - "setter": "set_exclude_nodes_from_collision", - "index": -1 - }, - { - "name": "node_a", - "type": "NodePath", - "getter": "get_node_a", - "setter": "set_node_a", - "index": -1 - }, - { - "name": "node_b", - "type": "NodePath", - "getter": "get_node_b", - "setter": "set_node_b", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_body_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exclude_nodes_from_collision", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_a", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_b", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exclude_nodes_from_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_a", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_b", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "KinematicBody", - "base_class": "PhysicsBody", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "PLATFORM_VEL_ON_LEAVE_ALWAYS": 0, - "PLATFORM_VEL_ON_LEAVE_NEVER": 2, - "PLATFORM_VEL_ON_LEAVE_UPWARD_ONLY": 1 - }, - "properties": [ - { - "name": "axis_lock_motion_x", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 1 - }, - { - "name": "axis_lock_motion_y", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 2 - }, - { - "name": "axis_lock_motion_z", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 4 - }, - { - "name": "collision/safe_margin", - "type": "float", - "getter": "get_safe_margin", - "setter": "set_safe_margin", - "index": -1 - }, - { - "name": "motion/sync_to_physics", - "type": "bool", - "getter": "is_sync_to_physics_enabled", - "setter": "set_sync_to_physics", - "index": -1 - }, - { - "name": "move_lock_x", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 1 - }, - { - "name": "move_lock_y", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 2 - }, - { - "name": "move_lock_z", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 4 - }, - { - "name": "moving_platform_apply_velocity_on_leave", - "type": "int", - "getter": "get_moving_platform_apply_velocity_on_leave", - "setter": "set_moving_platform_apply_velocity_on_leave", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_direct_state_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_axis_lock", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_floor_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "up_direction", - "type": "Vector3", - "has_default_value": true, - "default_value": "(0, 1, 0)" - } - ] - }, - { - "name": "get_floor_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_floor_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_last_slide_collision", - "return_type": "KinematicCollision", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_moving_platform_apply_velocity_on_leave", - "return_type": "enum.KinematicBody::MovingPlatformApplyVelocityOnLeave", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_safe_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_slide_collision", - "return_type": "KinematicCollision", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "slide_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_slide_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_ceiling", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_floor", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_wall", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_sync_to_physics_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "move_and_collide", - "return_type": "KinematicCollision", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rel_vec", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "exclude_raycast_shapes", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "test_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "move_and_slide", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up_direction", - "type": "Vector3", - "has_default_value": true, - "default_value": "(0, 0, 0)" - }, - { - "name": "stop_on_slope", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "max_slides", - "type": "int", - "has_default_value": true, - "default_value": "4" - }, - { - "name": "floor_max_angle", - "type": "float", - "has_default_value": true, - "default_value": "0.785398" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "move_and_slide_with_snap", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "snap", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up_direction", - "type": "Vector3", - "has_default_value": true, - "default_value": "(0, 0, 0)" - }, - { - "name": "stop_on_slope", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "max_slides", - "type": "int", - "has_default_value": true, - "default_value": "4" - }, - { - "name": "floor_max_angle", - "type": "float", - "has_default_value": true, - "default_value": "0.785398" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_axis_lock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lock", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_moving_platform_apply_velocity_on_leave", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "on_leave_apply_velocity", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_safe_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pixels", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sync_to_physics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "test_move", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rel_vec", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - } - ], - "enums": [ - { - "name": "MovingPlatformApplyVelocityOnLeave", - "values": { - "PLATFORM_VEL_ON_LEAVE_ALWAYS": 0, - "PLATFORM_VEL_ON_LEAVE_UPWARD_ONLY": 1, - "PLATFORM_VEL_ON_LEAVE_NEVER": 2 - } - } - ] - }, - { - "name": "KinematicBody2D", - "base_class": "PhysicsBody2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "PLATFORM_VEL_ON_LEAVE_ALWAYS": 0, - "PLATFORM_VEL_ON_LEAVE_NEVER": 2, - "PLATFORM_VEL_ON_LEAVE_UPWARD_ONLY": 1 - }, - "properties": [ - { - "name": "collision/safe_margin", - "type": "float", - "getter": "get_safe_margin", - "setter": "set_safe_margin", - "index": -1 - }, - { - "name": "motion/sync_to_physics", - "type": "bool", - "getter": "is_sync_to_physics_enabled", - "setter": "set_sync_to_physics", - "index": -1 - }, - { - "name": "moving_platform_apply_velocity_on_leave", - "type": "int", - "getter": "get_moving_platform_apply_velocity_on_leave", - "setter": "set_moving_platform_apply_velocity_on_leave", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_direct_state_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_floor_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "up_direction", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, -1)" - } - ] - }, - { - "name": "get_floor_normal", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_floor_velocity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_last_slide_collision", - "return_type": "KinematicCollision2D", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_moving_platform_apply_velocity_on_leave", - "return_type": "enum.KinematicBody2D::MovingPlatformApplyVelocityOnLeave", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_safe_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_slide_collision", - "return_type": "KinematicCollision2D", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "slide_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_slide_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_ceiling", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_floor", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_wall", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_sync_to_physics_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "move_and_collide", - "return_type": "KinematicCollision2D", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rel_vec", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "exclude_raycast_shapes", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "test_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "move_and_slide", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up_direction", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "stop_on_slope", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "max_slides", - "type": "int", - "has_default_value": true, - "default_value": "4" - }, - { - "name": "floor_max_angle", - "type": "float", - "has_default_value": true, - "default_value": "0.785398" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "move_and_slide_with_snap", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "snap", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up_direction", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "stop_on_slope", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "max_slides", - "type": "int", - "has_default_value": true, - "default_value": "4" - }, - { - "name": "floor_max_angle", - "type": "float", - "has_default_value": true, - "default_value": "0.785398" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_moving_platform_apply_velocity_on_leave", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "on_leave_apply_velocity", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_safe_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pixels", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sync_to_physics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "test_move", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rel_vec", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - } - ], - "enums": [ - { - "name": "MovingPlatformApplyVelocityOnLeave", - "values": { - "PLATFORM_VEL_ON_LEAVE_ALWAYS": 0, - "PLATFORM_VEL_ON_LEAVE_UPWARD_ONLY": 1, - "PLATFORM_VEL_ON_LEAVE_NEVER": 2 - } - } - ] - }, - { - "name": "KinematicCollision", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "collider", - "type": "Object", - "getter": "get_collider", - "setter": "", - "index": -1 - }, - { - "name": "collider_id", - "type": "int", - "getter": "get_collider_id", - "setter": "", - "index": -1 - }, - { - "name": "collider_metadata", - "type": "Variant", - "getter": "get_collider_metadata", - "setter": "", - "index": -1 - }, - { - "name": "collider_rid", - "type": "RID", - "getter": "get_collider_rid", - "setter": "", - "index": -1 - }, - { - "name": "collider_shape", - "type": "Object", - "getter": "get_collider_shape", - "setter": "", - "index": -1 - }, - { - "name": "collider_shape_index", - "type": "int", - "getter": "get_collider_shape_index", - "setter": "", - "index": -1 - }, - { - "name": "collider_velocity", - "type": "Vector3", - "getter": "get_collider_velocity", - "setter": "", - "index": -1 - }, - { - "name": "local_shape", - "type": "Object", - "getter": "get_local_shape", - "setter": "", - "index": -1 - }, - { - "name": "normal", - "type": "Vector3", - "getter": "get_normal", - "setter": "", - "index": -1 - }, - { - "name": "position", - "type": "Vector3", - "getter": "get_position", - "setter": "", - "index": -1 - }, - { - "name": "remainder", - "type": "Vector3", - "getter": "get_remainder", - "setter": "", - "index": -1 - }, - { - "name": "travel", - "type": "Vector3", - "getter": "get_travel", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "up_direction", - "type": "Vector3", - "has_default_value": true, - "default_value": "(0, 1, 0)" - } - ] - }, - { - "name": "get_collider", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_local_shape", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_remainder", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_travel", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "KinematicCollision2D", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "collider", - "type": "Object", - "getter": "get_collider", - "setter": "", - "index": -1 - }, - { - "name": "collider_id", - "type": "int", - "getter": "get_collider_id", - "setter": "", - "index": -1 - }, - { - "name": "collider_metadata", - "type": "Variant", - "getter": "get_collider_metadata", - "setter": "", - "index": -1 - }, - { - "name": "collider_rid", - "type": "RID", - "getter": "get_collider_rid", - "setter": "", - "index": -1 - }, - { - "name": "collider_shape", - "type": "Object", - "getter": "get_collider_shape", - "setter": "", - "index": -1 - }, - { - "name": "collider_shape_index", - "type": "int", - "getter": "get_collider_shape_index", - "setter": "", - "index": -1 - }, - { - "name": "collider_velocity", - "type": "Vector2", - "getter": "get_collider_velocity", - "setter": "", - "index": -1 - }, - { - "name": "local_shape", - "type": "Object", - "getter": "get_local_shape", - "setter": "", - "index": -1 - }, - { - "name": "normal", - "type": "Vector2", - "getter": "get_normal", - "setter": "", - "index": -1 - }, - { - "name": "position", - "type": "Vector2", - "getter": "get_position", - "setter": "", - "index": -1 - }, - { - "name": "remainder", - "type": "Vector2", - "getter": "get_remainder", - "setter": "", - "index": -1 - }, - { - "name": "travel", - "type": "Vector2", - "getter": "get_travel", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "up_direction", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, -1)" - } - ] - }, - { - "name": "get_collider", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_velocity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_local_shape", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_remainder", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_travel", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Label", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_FILL": 3, - "ALIGN_LEFT": 0, - "ALIGN_RIGHT": 2, - "VALIGN_BOTTOM": 2, - "VALIGN_CENTER": 1, - "VALIGN_FILL": 3, - "VALIGN_TOP": 0 - }, - "properties": [ - { - "name": "align", - "type": "int", - "getter": "get_align", - "setter": "set_align", - "index": -1 - }, - { - "name": "autowrap", - "type": "bool", - "getter": "has_autowrap", - "setter": "set_autowrap", - "index": -1 - }, - { - "name": "clip_text", - "type": "bool", - "getter": "is_clipping_text", - "setter": "set_clip_text", - "index": -1 - }, - { - "name": "lines_skipped", - "type": "int", - "getter": "get_lines_skipped", - "setter": "set_lines_skipped", - "index": -1 - }, - { - "name": "max_lines_visible", - "type": "int", - "getter": "get_max_lines_visible", - "setter": "set_max_lines_visible", - "index": -1 - }, - { - "name": "percent_visible", - "type": "float", - "getter": "get_percent_visible", - "setter": "set_percent_visible", - "index": -1 - }, - { - "name": "text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - }, - { - "name": "uppercase", - "type": "bool", - "getter": "is_uppercase", - "setter": "set_uppercase", - "index": -1 - }, - { - "name": "valign", - "type": "int", - "getter": "get_valign", - "setter": "set_valign", - "index": -1 - }, - { - "name": "visible_characters", - "type": "int", - "getter": "get_visible_characters", - "setter": "set_visible_characters", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_align", - "return_type": "enum.Label::Align", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lines_skipped", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_lines_visible", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_percent_visible", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_character_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_valign", - "return_type": "enum.Label::VAlign", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_characters", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_line_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_autowrap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_clipping_text", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_uppercase", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autowrap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lines_skipped", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lines_skipped", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_lines_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lines_visible", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_percent_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "percent_visible", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uppercase", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_valign", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "valign", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visible_characters", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Align", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2, - "ALIGN_FILL": 3 - } - }, - { - "name": "VAlign", - "values": { - "VALIGN_TOP": 0, - "VALIGN_CENTER": 1, - "VALIGN_BOTTOM": 2, - "VALIGN_FILL": 3 - } - } - ] - }, - { - "name": "LargeTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "_data", - "type": "Array", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_piece", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_piece_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_piece_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_piece_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_piece_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_piece_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Light", - "base_class": "VisualInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "BAKE_ALL": 2, - "BAKE_DISABLED": 0, - "BAKE_INDIRECT": 1, - "PARAM_ATTENUATION": 5, - "PARAM_CONTACT_SHADOW_SIZE": 8, - "PARAM_ENERGY": 0, - "PARAM_INDIRECT_ENERGY": 1, - "PARAM_MAX": 16, - "PARAM_RANGE": 4, - "PARAM_SHADOW_BIAS": 14, - "PARAM_SHADOW_BIAS_SPLIT_SCALE": 15, - "PARAM_SHADOW_MAX_DISTANCE": 9, - "PARAM_SHADOW_NORMAL_BIAS": 13, - "PARAM_SHADOW_SPLIT_1_OFFSET": 10, - "PARAM_SHADOW_SPLIT_2_OFFSET": 11, - "PARAM_SHADOW_SPLIT_3_OFFSET": 12, - "PARAM_SIZE": 2, - "PARAM_SPECULAR": 3, - "PARAM_SPOT_ANGLE": 6, - "PARAM_SPOT_ATTENUATION": 7 - }, - "properties": [ - { - "name": "editor_only", - "type": "bool", - "getter": "is_editor_only", - "setter": "set_editor_only", - "index": -1 - }, - { - "name": "light_bake_mode", - "type": "int", - "getter": "get_bake_mode", - "setter": "set_bake_mode", - "index": -1 - }, - { - "name": "light_color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "light_cull_mask", - "type": "int", - "getter": "get_cull_mask", - "setter": "set_cull_mask", - "index": -1 - }, - { - "name": "light_energy", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - }, - { - "name": "light_indirect_energy", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 1 - }, - { - "name": "light_negative", - "type": "bool", - "getter": "is_negative", - "setter": "set_negative", - "index": -1 - }, - { - "name": "light_size", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - }, - { - "name": "light_specular", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "shadow_bias", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 14 - }, - { - "name": "shadow_color", - "type": "Color", - "getter": "get_shadow_color", - "setter": "set_shadow_color", - "index": -1 - }, - { - "name": "shadow_contact", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 8 - }, - { - "name": "shadow_enabled", - "type": "bool", - "getter": "has_shadow", - "setter": "set_shadow", - "index": -1 - }, - { - "name": "shadow_reverse_cull_face", - "type": "bool", - "getter": "get_shadow_reverse_cull_face", - "setter": "set_shadow_reverse_cull_face", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_bake_mode", - "return_type": "enum.Light::BakeMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cull_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_shadow_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_reverse_cull_face", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_shadow", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editor_only", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_negative", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bake_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bake_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cull_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editor_only", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "editor_only", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_negative", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shadow_color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_reverse_cull_face", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BakeMode", - "values": { - "BAKE_DISABLED": 0, - "BAKE_INDIRECT": 1, - "BAKE_ALL": 2 - } - }, - { - "name": "Param", - "values": { - "PARAM_ENERGY": 0, - "PARAM_INDIRECT_ENERGY": 1, - "PARAM_SIZE": 2, - "PARAM_SPECULAR": 3, - "PARAM_RANGE": 4, - "PARAM_ATTENUATION": 5, - "PARAM_SPOT_ANGLE": 6, - "PARAM_SPOT_ATTENUATION": 7, - "PARAM_CONTACT_SHADOW_SIZE": 8, - "PARAM_SHADOW_MAX_DISTANCE": 9, - "PARAM_SHADOW_SPLIT_1_OFFSET": 10, - "PARAM_SHADOW_SPLIT_2_OFFSET": 11, - "PARAM_SHADOW_SPLIT_3_OFFSET": 12, - "PARAM_SHADOW_NORMAL_BIAS": 13, - "PARAM_SHADOW_BIAS": 14, - "PARAM_SHADOW_BIAS_SPLIT_SCALE": 15, - "PARAM_MAX": 16 - } - } - ] - }, - { - "name": "Light2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MODE_ADD": 0, - "MODE_MASK": 3, - "MODE_MIX": 2, - "MODE_SUB": 1, - "SHADOW_FILTER_NONE": 0, - "SHADOW_FILTER_PCF13": 5, - "SHADOW_FILTER_PCF3": 1, - "SHADOW_FILTER_PCF5": 2, - "SHADOW_FILTER_PCF7": 3, - "SHADOW_FILTER_PCF9": 4 - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "editor_only", - "type": "bool", - "getter": "is_editor_only", - "setter": "set_editor_only", - "index": -1 - }, - { - "name": "enabled", - "type": "bool", - "getter": "is_enabled", - "setter": "set_enabled", - "index": -1 - }, - { - "name": "energy", - "type": "float", - "getter": "get_energy", - "setter": "set_energy", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_texture_offset", - "setter": "set_texture_offset", - "index": -1 - }, - { - "name": "range_height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "range_item_cull_mask", - "type": "int", - "getter": "get_item_cull_mask", - "setter": "set_item_cull_mask", - "index": -1 - }, - { - "name": "range_layer_max", - "type": "int", - "getter": "get_layer_range_max", - "setter": "set_layer_range_max", - "index": -1 - }, - { - "name": "range_layer_min", - "type": "int", - "getter": "get_layer_range_min", - "setter": "set_layer_range_min", - "index": -1 - }, - { - "name": "range_z_max", - "type": "int", - "getter": "get_z_range_max", - "setter": "set_z_range_max", - "index": -1 - }, - { - "name": "range_z_min", - "type": "int", - "getter": "get_z_range_min", - "setter": "set_z_range_min", - "index": -1 - }, - { - "name": "shadow_buffer_size", - "type": "int", - "getter": "get_shadow_buffer_size", - "setter": "set_shadow_buffer_size", - "index": -1 - }, - { - "name": "shadow_color", - "type": "Color", - "getter": "get_shadow_color", - "setter": "set_shadow_color", - "index": -1 - }, - { - "name": "shadow_enabled", - "type": "bool", - "getter": "is_shadow_enabled", - "setter": "set_shadow_enabled", - "index": -1 - }, - { - "name": "shadow_filter", - "type": "int", - "getter": "get_shadow_filter", - "setter": "set_shadow_filter", - "index": -1 - }, - { - "name": "shadow_filter_smooth", - "type": "float", - "getter": "get_shadow_smooth", - "setter": "set_shadow_smooth", - "index": -1 - }, - { - "name": "shadow_gradient_length", - "type": "float", - "getter": "get_shadow_gradient_length", - "setter": "set_shadow_gradient_length", - "index": -1 - }, - { - "name": "shadow_item_cull_mask", - "type": "int", - "getter": "get_item_shadow_cull_mask", - "setter": "set_item_shadow_cull_mask", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "texture_scale", - "type": "float", - "getter": "get_texture_scale", - "setter": "set_texture_scale", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_cull_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_shadow_cull_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_layer_range_max", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_layer_range_min", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.Light2D::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_buffer_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_filter", - "return_type": "enum.Light2D::ShadowFilter", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_gradient_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_smooth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_z_range_max", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_z_range_min", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editor_only", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shadow_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editor_only", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "editor_only", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item_cull_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_shadow_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item_shadow_cull_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_layer_range_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_layer_range_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_buffer_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shadow_color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_filter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_gradient_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multiplier", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_smooth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "smooth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_z_range_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_z_range_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "z", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ShadowFilter", - "values": { - "SHADOW_FILTER_NONE": 0, - "SHADOW_FILTER_PCF3": 1, - "SHADOW_FILTER_PCF5": 2, - "SHADOW_FILTER_PCF7": 3, - "SHADOW_FILTER_PCF9": 4, - "SHADOW_FILTER_PCF13": 5 - } - }, - { - "name": "Mode", - "values": { - "MODE_ADD": 0, - "MODE_SUB": 1, - "MODE_MIX": 2, - "MODE_MASK": 3 - } - } - ] - }, - { - "name": "LightOccluder2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "light_mask", - "type": "int", - "getter": "get_occluder_light_mask", - "setter": "set_occluder_light_mask", - "index": -1 - }, - { - "name": "occluder", - "type": "OccluderPolygon2D", - "getter": "get_occluder_polygon", - "setter": "set_occluder_polygon", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_poly_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_occluder_light_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_occluder_polygon", - "return_type": "OccluderPolygon2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_occluder_light_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_occluder_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "OccluderPolygon2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Line2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "LINE_CAP_BOX": 1, - "LINE_CAP_NONE": 0, - "LINE_CAP_ROUND": 2, - "LINE_JOINT_BEVEL": 1, - "LINE_JOINT_ROUND": 2, - "LINE_JOINT_SHARP": 0, - "LINE_TEXTURE_NONE": 0, - "LINE_TEXTURE_STRETCH": 2, - "LINE_TEXTURE_TILE": 1 - }, - "properties": [ - { - "name": "antialiased", - "type": "bool", - "getter": "get_antialiased", - "setter": "set_antialiased", - "index": -1 - }, - { - "name": "begin_cap_mode", - "type": "int", - "getter": "get_begin_cap_mode", - "setter": "set_begin_cap_mode", - "index": -1 - }, - { - "name": "default_color", - "type": "Color", - "getter": "get_default_color", - "setter": "set_default_color", - "index": -1 - }, - { - "name": "end_cap_mode", - "type": "int", - "getter": "get_end_cap_mode", - "setter": "set_end_cap_mode", - "index": -1 - }, - { - "name": "gradient", - "type": "Gradient", - "getter": "get_gradient", - "setter": "set_gradient", - "index": -1 - }, - { - "name": "joint_mode", - "type": "int", - "getter": "get_joint_mode", - "setter": "set_joint_mode", - "index": -1 - }, - { - "name": "points", - "type": "PoolVector2Array", - "getter": "get_points", - "setter": "set_points", - "index": -1 - }, - { - "name": "round_precision", - "type": "int", - "getter": "get_round_precision", - "setter": "set_round_precision", - "index": -1 - }, - { - "name": "sharp_limit", - "type": "float", - "getter": "get_sharp_limit", - "setter": "set_sharp_limit", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "texture_mode", - "type": "int", - "getter": "get_texture_mode", - "setter": "set_texture_mode", - "index": -1 - }, - { - "name": "width", - "type": "float", - "getter": "get_width", - "setter": "set_width", - "index": -1 - }, - { - "name": "width_curve", - "type": "Curve", - "getter": "get_curve", - "setter": "set_curve", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_curve_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gradient_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "clear_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_antialiased", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_begin_cap_mode", - "return_type": "enum.Line2D::LineCapMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_curve", - "return_type": "Curve", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_end_cap_mode", - "return_type": "enum.Line2D::LineCapMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gradient", - "return_type": "Gradient", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joint_mode", - "return_type": "enum.Line2D::LineJointMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "i", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_points", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_round_precision", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sharp_limit", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_mode", - "return_type": "enum.Line2D::LineTextureMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_width", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "i", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_antialiased", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "antialiased", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_begin_cap_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "Curve", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_end_cap_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gradient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Gradient", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joint_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "i", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_round_precision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "precision", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sharp_limit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "limit", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "LineTextureMode", - "values": { - "LINE_TEXTURE_NONE": 0, - "LINE_TEXTURE_TILE": 1, - "LINE_TEXTURE_STRETCH": 2 - } - }, - { - "name": "LineCapMode", - "values": { - "LINE_CAP_NONE": 0, - "LINE_CAP_BOX": 1, - "LINE_CAP_ROUND": 2 - } - }, - { - "name": "LineJointMode", - "values": { - "LINE_JOINT_SHARP": 0, - "LINE_JOINT_BEVEL": 1, - "LINE_JOINT_ROUND": 2 - } - } - ] - }, - { - "name": "LineEdit", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_FILL": 3, - "ALIGN_LEFT": 0, - "ALIGN_RIGHT": 2, - "MENU_CLEAR": 3, - "MENU_COPY": 1, - "MENU_CUT": 0, - "MENU_MAX": 7, - "MENU_PASTE": 2, - "MENU_REDO": 6, - "MENU_SELECT_ALL": 4, - "MENU_UNDO": 5 - }, - "properties": [ - { - "name": "align", - "type": "int", - "getter": "get_align", - "setter": "set_align", - "index": -1 - }, - { - "name": "caret_blink", - "type": "bool", - "getter": "cursor_get_blink_enabled", - "setter": "cursor_set_blink_enabled", - "index": -1 - }, - { - "name": "caret_blink_speed", - "type": "float", - "getter": "cursor_get_blink_speed", - "setter": "cursor_set_blink_speed", - "index": -1 - }, - { - "name": "caret_position", - "type": "int", - "getter": "get_cursor_position", - "setter": "set_cursor_position", - "index": -1 - }, - { - "name": "clear_button_enabled", - "type": "bool", - "getter": "is_clear_button_enabled", - "setter": "set_clear_button_enabled", - "index": -1 - }, - { - "name": "context_menu_enabled", - "type": "bool", - "getter": "is_context_menu_enabled", - "setter": "set_context_menu_enabled", - "index": -1 - }, - { - "name": "editable", - "type": "bool", - "getter": "is_editable", - "setter": "set_editable", - "index": -1 - }, - { - "name": "expand_to_text_length", - "type": "bool", - "getter": "get_expand_to_text_length", - "setter": "set_expand_to_text_length", - "index": -1 - }, - { - "name": "max_length", - "type": "int", - "getter": "get_max_length", - "setter": "set_max_length", - "index": -1 - }, - { - "name": "placeholder_alpha", - "type": "float", - "getter": "get_placeholder_alpha", - "setter": "set_placeholder_alpha", - "index": -1 - }, - { - "name": "placeholder_text", - "type": "String", - "getter": "get_placeholder", - "setter": "set_placeholder", - "index": -1 - }, - { - "name": "right_icon", - "type": "Texture", - "getter": "get_right_icon", - "setter": "set_right_icon", - "index": -1 - }, - { - "name": "secret", - "type": "bool", - "getter": "is_secret", - "setter": "set_secret", - "index": -1 - }, - { - "name": "secret_character", - "type": "String", - "getter": "get_secret_character", - "setter": "set_secret_character", - "index": -1 - }, - { - "name": "selecting_enabled", - "type": "bool", - "getter": "is_selecting_enabled", - "setter": "set_selecting_enabled", - "index": -1 - }, - { - "name": "shortcut_keys_enabled", - "type": "bool", - "getter": "is_shortcut_keys_enabled", - "setter": "set_shortcut_keys_enabled", - "index": -1 - }, - { - "name": "text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - }, - { - "name": "virtual_keyboard_enabled", - "type": "bool", - "getter": "is_virtual_keyboard_enabled", - "setter": "set_virtual_keyboard_enabled", - "index": -1 - } - ], - "signals": [ - { - "name": "text_change_rejected", - "arguments": [ - { - "name": "rejected_substring", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "text_changed", - "arguments": [ - { - "name": "new_text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "text_entered", - "arguments": [ - { - "name": "new_text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_editor_settings_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_text_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_toggle_draw_caret", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "append_at_cursor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_get_blink_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_get_blink_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_set_blink_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cursor_set_blink_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "blink_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "delete_char_at_cursor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "delete_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "deselect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_align", - "return_type": "enum.LineEdit::Align", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cursor_position", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_expand_to_text_length", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_length", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_menu", - "return_type": "PopupMenu", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_placeholder", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_placeholder_alpha", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_right_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scroll_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_secret_character", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_clear_button_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_context_menu_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_secret", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selecting_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shortcut_keys_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_virtual_keyboard_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "menu_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "option", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "to", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "select_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clear_button_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_context_menu_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cursor_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_to_text_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "chars", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_placeholder", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_placeholder_alpha", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "alpha", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_right_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_secret", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_secret_character", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "character", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_selecting_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shortcut_keys_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_virtual_keyboard_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Align", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2, - "ALIGN_FILL": 3 - } - }, - { - "name": "MenuItems", - "values": { - "MENU_CUT": 0, - "MENU_COPY": 1, - "MENU_PASTE": 2, - "MENU_CLEAR": 3, - "MENU_SELECT_ALL": 4, - "MENU_UNDO": 5, - "MENU_REDO": 6, - "MENU_MAX": 7 - } - } - ] - }, - { - "name": "LineShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "d", - "type": "float", - "getter": "get_d", - "setter": "set_d", - "index": -1 - }, - { - "name": "normal", - "type": "Vector2", - "getter": "get_normal", - "setter": "set_normal", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_d", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "d", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "LinkButton", - "base_class": "BaseButton", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "UNDERLINE_MODE_ALWAYS": 0, - "UNDERLINE_MODE_NEVER": 2, - "UNDERLINE_MODE_ON_HOVER": 1 - }, - "properties": [ - { - "name": "text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - }, - { - "name": "underline", - "type": "int", - "getter": "get_underline_mode", - "setter": "set_underline_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_underline_mode", - "return_type": "enum.LinkButton::UnderlineMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_underline_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "underline_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "UnderlineMode", - "values": { - "UNDERLINE_MODE_ALWAYS": 0, - "UNDERLINE_MODE_ON_HOVER": 1, - "UNDERLINE_MODE_NEVER": 2 - } - } - ] - }, - { - "name": "Listener", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_listener_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_current", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Listener2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_current", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_current", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "MainLoop", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "NOTIFICATION_APP_PAUSED": 1015, - "NOTIFICATION_APP_RESUMED": 1014, - "NOTIFICATION_CRASH": 1012, - "NOTIFICATION_OS_IME_UPDATE": 1013, - "NOTIFICATION_OS_MEMORY_WARNING": 1009, - "NOTIFICATION_TRANSLATION_CHANGED": 1010, - "NOTIFICATION_WM_ABOUT": 1011, - "NOTIFICATION_WM_FOCUS_IN": 1004, - "NOTIFICATION_WM_FOCUS_OUT": 1005, - "NOTIFICATION_WM_GO_BACK_REQUEST": 1007, - "NOTIFICATION_WM_MOUSE_ENTER": 1002, - "NOTIFICATION_WM_MOUSE_EXIT": 1003, - "NOTIFICATION_WM_QUIT_REQUEST": 1006, - "NOTIFICATION_WM_UNFOCUS_REQUEST": 1008 - }, - "properties": [ - ], - "signals": [ - { - "name": "on_request_permissions_result", - "arguments": [ - { - "name": "permission", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "granted", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_drop_files", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "files", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_screen", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_finalize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_global_menu_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_idle", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_initialize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_input_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_input_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_iteration", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "finish", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "idle", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "init", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "input_event", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "input_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "iteration", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MarginContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Material", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "RENDER_PRIORITY_MAX": 127, - "RENDER_PRIORITY_MIN": -128 - }, - "properties": [ - { - "name": "next_pass", - "type": "Material", - "getter": "get_next_pass", - "setter": "set_next_pass", - "index": -1 - }, - { - "name": "render_priority", - "type": "int", - "getter": "get_render_priority", - "setter": "set_render_priority", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_next_pass", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_render_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_next_pass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "next_pass", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_render_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MenuButton", - "base_class": "Button", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "items", - "type": "Array", - "getter": "_get_items", - "setter": "_set_items", - "index": -1 - }, - { - "name": "switch_on_hover", - "type": "bool", - "getter": "is_switch_on_hover", - "setter": "set_switch_on_hover", - "index": -1 - } - ], - "signals": [ - { - "name": "about_to_show", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_get_items", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_items", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_key_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_popup", - "return_type": "PopupMenu", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_switch_on_hover", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_disable_shortcuts", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_switch_on_hover", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Mesh", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "ARRAY_BONES": 6, - "ARRAY_COLOR": 3, - "ARRAY_COMPRESS_BASE": 9, - "ARRAY_COMPRESS_BONES": 32768, - "ARRAY_COMPRESS_COLOR": 4096, - "ARRAY_COMPRESS_DEFAULT": 2194432, - "ARRAY_COMPRESS_INDEX": 131072, - "ARRAY_COMPRESS_NORMAL": 1024, - "ARRAY_COMPRESS_TANGENT": 2048, - "ARRAY_COMPRESS_TEX_UV": 8192, - "ARRAY_COMPRESS_TEX_UV2": 16384, - "ARRAY_COMPRESS_VERTEX": 512, - "ARRAY_COMPRESS_WEIGHTS": 65536, - "ARRAY_FLAG_USE_16_BIT_BONES": 524288, - "ARRAY_FLAG_USE_2D_VERTICES": 262144, - "ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION": 2097152, - "ARRAY_FORMAT_BONES": 64, - "ARRAY_FORMAT_COLOR": 8, - "ARRAY_FORMAT_INDEX": 256, - "ARRAY_FORMAT_NORMAL": 2, - "ARRAY_FORMAT_TANGENT": 4, - "ARRAY_FORMAT_TEX_UV": 16, - "ARRAY_FORMAT_TEX_UV2": 32, - "ARRAY_FORMAT_VERTEX": 1, - "ARRAY_FORMAT_WEIGHTS": 128, - "ARRAY_INDEX": 8, - "ARRAY_MAX": 9, - "ARRAY_NORMAL": 1, - "ARRAY_TANGENT": 2, - "ARRAY_TEX_UV": 4, - "ARRAY_TEX_UV2": 5, - "ARRAY_VERTEX": 0, - "ARRAY_WEIGHTS": 7, - "BLEND_SHAPE_MODE_NORMALIZED": 0, - "BLEND_SHAPE_MODE_RELATIVE": 1, - "PRIMITIVE_LINES": 1, - "PRIMITIVE_LINE_LOOP": 3, - "PRIMITIVE_LINE_STRIP": 2, - "PRIMITIVE_POINTS": 0, - "PRIMITIVE_TRIANGLES": 4, - "PRIMITIVE_TRIANGLE_FAN": 6, - "PRIMITIVE_TRIANGLE_STRIP": 5 - }, - "properties": [ - { - "name": "lightmap_size_hint", - "type": "Vector2", - "getter": "get_lightmap_size_hint", - "setter": "set_lightmap_size_hint", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "create_convex_shape", - "return_type": "Shape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "clean", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "simplify", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "create_outline", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_trimesh_shape", - "return_type": "Shape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "generate_triangle_mesh", - "return_type": "TriangleMesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_faces", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lightmap_size_hint", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_surface_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_lightmap_size_hint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_arrays", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_blend_shape_arrays", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "surface_set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surf_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BlendShapeMode", - "values": { - "BLEND_SHAPE_MODE_NORMALIZED": 0, - "BLEND_SHAPE_MODE_RELATIVE": 1 - } - }, - { - "name": "PrimitiveType", - "values": { - "PRIMITIVE_POINTS": 0, - "PRIMITIVE_LINES": 1, - "PRIMITIVE_LINE_STRIP": 2, - "PRIMITIVE_LINE_LOOP": 3, - "PRIMITIVE_TRIANGLES": 4, - "PRIMITIVE_TRIANGLE_STRIP": 5, - "PRIMITIVE_TRIANGLE_FAN": 6 - } - }, - { - "name": "ArrayFormat", - "values": { - "ARRAY_FORMAT_VERTEX": 1, - "ARRAY_FORMAT_NORMAL": 2, - "ARRAY_FORMAT_TANGENT": 4, - "ARRAY_FORMAT_COLOR": 8, - "ARRAY_COMPRESS_BASE": 9, - "ARRAY_FORMAT_TEX_UV": 16, - "ARRAY_FORMAT_TEX_UV2": 32, - "ARRAY_FORMAT_BONES": 64, - "ARRAY_FORMAT_WEIGHTS": 128, - "ARRAY_FORMAT_INDEX": 256, - "ARRAY_COMPRESS_VERTEX": 512, - "ARRAY_COMPRESS_NORMAL": 1024, - "ARRAY_COMPRESS_TANGENT": 2048, - "ARRAY_COMPRESS_COLOR": 4096, - "ARRAY_COMPRESS_TEX_UV": 8192, - "ARRAY_COMPRESS_TEX_UV2": 16384, - "ARRAY_COMPRESS_BONES": 32768, - "ARRAY_COMPRESS_WEIGHTS": 65536, - "ARRAY_COMPRESS_INDEX": 131072, - "ARRAY_FLAG_USE_2D_VERTICES": 262144, - "ARRAY_FLAG_USE_16_BIT_BONES": 524288, - "ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION": 2097152, - "ARRAY_COMPRESS_DEFAULT": 2194432 - } - }, - { - "name": "ArrayType", - "values": { - "ARRAY_VERTEX": 0, - "ARRAY_NORMAL": 1, - "ARRAY_TANGENT": 2, - "ARRAY_COLOR": 3, - "ARRAY_TEX_UV": 4, - "ARRAY_TEX_UV2": 5, - "ARRAY_BONES": 6, - "ARRAY_WEIGHTS": 7, - "ARRAY_INDEX": 8, - "ARRAY_MAX": 9 - } - } - ] - }, - { - "name": "MeshDataTool", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "commit_to_surface", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "ArrayMesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_from_surface", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "ArrayMesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_edge_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edge_faces", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_edge_meta", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_edge_vertex", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_face_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_face_edge", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "edge", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_face_meta", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_face_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_face_vertex", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_format", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vertex", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_bones", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vertex_edges", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_faces", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_meta", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_tangent", - "return_type": "Plane", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_uv", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_uv2", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_vertex_weights", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edge_meta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_face_meta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_bones", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bones", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_meta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_normal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tangent", - "type": "Plane", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uv", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_uv2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uv2", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_weights", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weights", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MeshInstance", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "mesh", - "type": "Mesh", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - }, - { - "name": "skeleton", - "type": "NodePath", - "getter": "get_skeleton_path", - "setter": "set_skeleton_path", - "index": -1 - }, - { - "name": "skin", - "type": "Skin", - "getter": "get_skin", - "setter": "set_skin", - "index": -1 - }, - { - "name": "software_skinning_transform_normals", - "type": "bool", - "getter": "is_software_skinning_transform_normals_enabled", - "setter": "set_software_skinning_transform_normals", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_mesh_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_skinning", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_convex_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "clean", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "simplify", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "create_debug_tangents", - "return_type": "void", - "is_editor": true, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_multiple_convex_collisions", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_trimesh_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_active_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skin", - "return_type": "Skin", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_surface_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_surface_material_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_software_skinning_transform_normals_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skeleton_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skin", - "type": "Skin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_software_skinning_transform_normals", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_surface_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MeshInstance2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "mesh", - "type": "Mesh", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - }, - { - "name": "normal_map", - "type": "Texture", - "getter": "get_normal_map", - "setter": "set_normal_map", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - } - ], - "signals": [ - { - "name": "texture_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_map", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal_map", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MeshLibrary", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_item_by_name", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_list", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_mesh_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_navmesh", - "return_type": "NavigationMesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_navmesh_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_preview", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_shapes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_last_unused_item_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_mesh_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh_transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_navmesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "navmesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_navmesh_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "navmesh", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_preview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shapes", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MeshTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "base_texture", - "type": "Texture", - "getter": "get_base_texture", - "setter": "set_base_texture", - "index": -1 - }, - { - "name": "image_size", - "type": "Vector2", - "getter": "get_image_size", - "setter": "set_image_size", - "index": -1 - }, - { - "name": "mesh", - "type": "Mesh", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_base_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_image_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_image_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MobileVRInterface", - "base_class": "ARVRInterface", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "display_to_lens", - "type": "float", - "getter": "get_display_to_lens", - "setter": "set_display_to_lens", - "index": -1 - }, - { - "name": "display_width", - "type": "float", - "getter": "get_display_width", - "setter": "set_display_width", - "index": -1 - }, - { - "name": "eye_height", - "type": "float", - "getter": "get_eye_height", - "setter": "set_eye_height", - "index": -1 - }, - { - "name": "iod", - "type": "float", - "getter": "get_iod", - "setter": "set_iod", - "index": -1 - }, - { - "name": "k1", - "type": "float", - "getter": "get_k1", - "setter": "set_k1", - "index": -1 - }, - { - "name": "k2", - "type": "float", - "getter": "get_k2", - "setter": "set_k2", - "index": -1 - }, - { - "name": "oversample", - "type": "float", - "getter": "get_oversample", - "setter": "set_oversample", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_display_to_lens", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_display_width", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_eye_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_iod", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_k1", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_k2", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_oversample", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_display_to_lens", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "display_to_lens", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_display_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "display_width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_eye_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "eye_height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_iod", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "iod", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_k1", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "k", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_k2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "k", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_oversample", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "oversample", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MultiMesh", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "COLOR_8BIT": 1, - "COLOR_FLOAT": 2, - "COLOR_NONE": 0, - "CUSTOM_DATA_8BIT": 1, - "CUSTOM_DATA_FLOAT": 2, - "CUSTOM_DATA_NONE": 0, - "TRANSFORM_2D": 0, - "TRANSFORM_3D": 1 - }, - "properties": [ - { - "name": "color_array", - "type": "PoolColorArray", - "getter": "_get_color_array", - "setter": "_set_color_array", - "index": -1 - }, - { - "name": "color_format", - "type": "int", - "getter": "get_color_format", - "setter": "set_color_format", - "index": -1 - }, - { - "name": "custom_data_array", - "type": "PoolColorArray", - "getter": "_get_custom_data_array", - "setter": "_set_custom_data_array", - "index": -1 - }, - { - "name": "custom_data_format", - "type": "int", - "getter": "get_custom_data_format", - "setter": "set_custom_data_format", - "index": -1 - }, - { - "name": "instance_count", - "type": "int", - "getter": "get_instance_count", - "setter": "set_instance_count", - "index": -1 - }, - { - "name": "mesh", - "type": "Mesh", - "getter": "get_mesh", - "setter": "set_mesh", - "index": -1 - }, - { - "name": "transform_2d_array", - "type": "PoolVector2Array", - "getter": "_get_transform_2d_array", - "setter": "_set_transform_2d_array", - "index": -1 - }, - { - "name": "transform_array", - "type": "PoolVector3Array", - "getter": "_get_transform_array", - "setter": "_set_transform_array", - "index": -1 - }, - { - "name": "transform_format", - "type": "int", - "getter": "get_transform_format", - "setter": "set_transform_format", - "index": -1 - }, - { - "name": "visible_instance_count", - "type": "int", - "getter": "get_visible_instance_count", - "setter": "set_visible_instance_count", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_color_array", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_custom_data_array", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_transform_2d_array", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_transform_array", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_color_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_custom_data_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_transform_2d_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_transform_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_format", - "return_type": "enum.MultiMesh::ColorFormat", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_data_format", - "return_type": "enum.MultiMesh::CustomDataFormat", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_instance_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_instance_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_instance_custom_data", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_instance_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_instance_transform_2d", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform_format", - "return_type": "enum.MultiMesh::TransformFormat", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_instance_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_as_bulk_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_format", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_data_format", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_custom_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_data", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_transform_2d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform_format", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visible_instance_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TransformFormat", - "values": { - "TRANSFORM_2D": 0, - "TRANSFORM_3D": 1 - } - }, - { - "name": "CustomDataFormat", - "values": { - "CUSTOM_DATA_NONE": 0, - "CUSTOM_DATA_8BIT": 1, - "CUSTOM_DATA_FLOAT": 2 - } - }, - { - "name": "ColorFormat", - "values": { - "COLOR_NONE": 0, - "COLOR_8BIT": 1, - "COLOR_FLOAT": 2 - } - } - ] - }, - { - "name": "MultiMeshInstance", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "multimesh", - "type": "MultiMesh", - "getter": "get_multimesh", - "setter": "set_multimesh", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_multimesh", - "return_type": "MultiMesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_multimesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "MultiMesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MultiMeshInstance2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "multimesh", - "type": "MultiMesh", - "getter": "get_multimesh", - "setter": "set_multimesh", - "index": -1 - }, - { - "name": "normal_map", - "type": "Texture", - "getter": "get_normal_map", - "setter": "set_normal_map", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - } - ], - "signals": [ - { - "name": "texture_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_multimesh", - "return_type": "MultiMesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_map", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_multimesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "MultiMesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal_map", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "MultiplayerAPI", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "RPC_MODE_DISABLED": 0, - "RPC_MODE_MASTER": 2, - "RPC_MODE_MASTERSYNC": 5, - "RPC_MODE_PUPPET": 3, - "RPC_MODE_PUPPETSYNC": 6, - "RPC_MODE_REMOTE": 1, - "RPC_MODE_REMOTESYNC": 4, - "RPC_MODE_SLAVE": 3, - "RPC_MODE_SYNC": 4 - }, - "properties": [ - { - "name": "allow_object_decoding", - "type": "bool", - "getter": "is_object_decoding_allowed", - "setter": "set_allow_object_decoding", - "index": -1 - }, - { - "name": "network_peer", - "type": "NetworkedMultiplayerPeer", - "getter": "get_network_peer", - "setter": "set_network_peer", - "index": -1 - }, - { - "name": "refuse_new_network_connections", - "type": "bool", - "getter": "is_refusing_new_network_connections", - "setter": "set_refuse_new_network_connections", - "index": -1 - }, - { - "name": "root_node", - "type": "Node", - "getter": "get_root_node", - "setter": "set_root_node", - "index": -1 - } - ], - "signals": [ - { - "name": "connected_to_server", - "arguments": [ - ] - }, - { - "name": "connection_failed", - "arguments": [ - ] - }, - { - "name": "network_peer_connected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "network_peer_disconnected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "network_peer_packet", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "packet", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "server_disconnected", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_add_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_connected_to_server", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_connection_failed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_del_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_server_disconnected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_connected_peers", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_peer", - "return_type": "NetworkedMultiplayerPeer", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_unique_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root_node", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rpc_sender_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_network_peer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_network_server", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_object_decoding_allowed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_refusing_new_network_connections", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "send_bytes", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "mode", - "type": "int", - "has_default_value": true, - "default_value": "2" - } - ] - }, - { - "name": "set_allow_object_decoding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_network_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer", - "type": "NetworkedMultiplayerPeer", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_refuse_new_network_connections", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "refuse", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_root_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "RPCMode", - "values": { - "RPC_MODE_DISABLED": 0, - "RPC_MODE_REMOTE": 1, - "RPC_MODE_MASTER": 2, - "RPC_MODE_PUPPET": 3, - "RPC_MODE_SLAVE": 3, - "RPC_MODE_REMOTESYNC": 4, - "RPC_MODE_SYNC": 4, - "RPC_MODE_MASTERSYNC": 5, - "RPC_MODE_PUPPETSYNC": 6 - } - } - ] - }, - { - "name": "MultiplayerPeerGDNative", - "base_class": "NetworkedMultiplayerPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "NativeScript", - "base_class": "Script", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "class_name", - "type": "String", - "getter": "get_class_name", - "setter": "set_class_name", - "index": -1 - }, - { - "name": "library", - "type": "GDNativeLibrary", - "getter": "get_library", - "setter": "set_library", - "index": -1 - }, - { - "name": "script_class_icon_path", - "type": "String", - "getter": "get_script_class_icon_path", - "setter": "set_script_class_icon_path", - "index": -1 - }, - { - "name": "script_class_name", - "type": "String", - "getter": "get_script_class_name", - "setter": "set_script_class_name", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_class_documentation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_class_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_library", - "return_type": "GDNativeLibrary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_method_documentation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_property_documentation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_script_class_icon_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script_class_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_signal_documentation", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "new", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_class_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_library", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "library", - "type": "GDNativeLibrary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_script_class_icon_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "icon_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_script_class_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Navigation", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "cell_size", - "type": "float", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "edge_connection_margin", - "type": "float", - "getter": "get_edge_connection_margin", - "setter": "set_edge_connection_margin", - "index": -1 - }, - { - "name": "up_vector", - "type": "Vector3", - "getter": "get_up_vector", - "setter": "set_up_vector", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_point", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_owner", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_to_segment", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "start", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "end", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_collision", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_edge_connection_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_simple_path", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "start", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "end", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "optimize", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_up_vector", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edge_connection_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_up_vector", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "up", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Navigation2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "cell_size", - "type": "float", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "edge_connection_margin", - "type": "float", - "getter": "get_edge_connection_margin", - "setter": "set_edge_connection_margin", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_point", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_owner", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_edge_connection_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_simple_path", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "start", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "end", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "optimize", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edge_connection_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Navigation2DServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Navigation2DServer", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "agent_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "agent_is_map_changed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "agent_set_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_max_neighbors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_max_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_neighbor_dist", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dist", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_target_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_time_horizon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "free", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "map_get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_closest_point", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_closest_point_owner", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_edge_connection_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_path", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "origin", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "destination", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "optimize", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nap", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_edge_connection_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "region_set_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_set_navpoly", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "nav_poly", - "type": "NavigationPolygon", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationAgent", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "agent_height_offset", - "type": "float", - "getter": "get_agent_height_offset", - "setter": "set_agent_height_offset", - "index": -1 - }, - { - "name": "ignore_y", - "type": "bool", - "getter": "get_ignore_y", - "setter": "set_ignore_y", - "index": -1 - }, - { - "name": "max_neighbors", - "type": "int", - "getter": "get_max_neighbors", - "setter": "set_max_neighbors", - "index": -1 - }, - { - "name": "max_speed", - "type": "float", - "getter": "get_max_speed", - "setter": "set_max_speed", - "index": -1 - }, - { - "name": "neighbor_dist", - "type": "float", - "getter": "get_neighbor_dist", - "setter": "set_neighbor_dist", - "index": -1 - }, - { - "name": "path_max_distance", - "type": "float", - "getter": "get_path_max_distance", - "setter": "set_path_max_distance", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "target_desired_distance", - "type": "float", - "getter": "get_target_desired_distance", - "setter": "set_target_desired_distance", - "index": -1 - }, - { - "name": "time_horizon", - "type": "float", - "getter": "get_time_horizon", - "setter": "set_time_horizon", - "index": -1 - } - ], - "signals": [ - { - "name": "navigation_finished", - "arguments": [ - ] - }, - { - "name": "path_changed", - "arguments": [ - ] - }, - { - "name": "target_reached", - "arguments": [ - ] - }, - { - "name": "velocity_computed", - "arguments": [ - { - "name": "safe_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_avoidance_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "new_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "distance_to_target", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_agent_height_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_final_location", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ignore_y", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_neighbors", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nav_path", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nav_path_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_navigation", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_neighbor_dist", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_next_location", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_desired_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_location", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_horizon", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_navigation_finished", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_target_reachable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_target_reached", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_agent_height_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent_height_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ignore_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ignore", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_neighbors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_neighbors", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_navigation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "navigation", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_neighbor_dist", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "neighbor_dist", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_desired_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "desired_distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_location", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "location", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_time_horizon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_horizon", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationAgent2D", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "max_neighbors", - "type": "int", - "getter": "get_max_neighbors", - "setter": "set_max_neighbors", - "index": -1 - }, - { - "name": "max_speed", - "type": "float", - "getter": "get_max_speed", - "setter": "set_max_speed", - "index": -1 - }, - { - "name": "neighbor_dist", - "type": "float", - "getter": "get_neighbor_dist", - "setter": "set_neighbor_dist", - "index": -1 - }, - { - "name": "path_max_distance", - "type": "float", - "getter": "get_path_max_distance", - "setter": "set_path_max_distance", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "target_desired_distance", - "type": "float", - "getter": "get_target_desired_distance", - "setter": "set_target_desired_distance", - "index": -1 - }, - { - "name": "time_horizon", - "type": "float", - "getter": "get_time_horizon", - "setter": "set_time_horizon", - "index": -1 - } - ], - "signals": [ - { - "name": "navigation_finished", - "arguments": [ - ] - }, - { - "name": "path_changed", - "arguments": [ - ] - }, - { - "name": "target_reached", - "arguments": [ - ] - }, - { - "name": "velocity_computed", - "arguments": [ - { - "name": "safe_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_avoidance_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "new_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "distance_to_target", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_final_location", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_neighbors", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nav_path", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nav_path_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_navigation", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_neighbor_dist", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_next_location", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_desired_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_location", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_horizon", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_navigation_finished", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_target_reachable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_target_reached", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_max_neighbors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_neighbors", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_navigation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "navigation", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_neighbor_dist", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "neighbor_dist", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_desired_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "desired_distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_location", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "location", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_time_horizon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_horizon", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationMesh", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "PARSED_GEOMETRY_BOTH": 2, - "PARSED_GEOMETRY_MAX": 3, - "PARSED_GEOMETRY_MESH_INSTANCES": 0, - "PARSED_GEOMETRY_STATIC_COLLIDERS": 1, - "SAMPLE_PARTITION_LAYERS": 2, - "SAMPLE_PARTITION_MAX": 3, - "SAMPLE_PARTITION_MONOTONE": 1, - "SAMPLE_PARTITION_WATERSHED": 0, - "SOURCE_GEOMETRY_GROUPS_EXPLICIT": 2, - "SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN": 1, - "SOURCE_GEOMETRY_MAX": 3, - "SOURCE_GEOMETRY_NAVMESH_CHILDREN": 0 - }, - "properties": [ - { - "name": "agent/height", - "type": "float", - "getter": "get_agent_height", - "setter": "set_agent_height", - "index": -1 - }, - { - "name": "agent/max_climb", - "type": "float", - "getter": "get_agent_max_climb", - "setter": "set_agent_max_climb", - "index": -1 - }, - { - "name": "agent/max_slope", - "type": "float", - "getter": "get_agent_max_slope", - "setter": "set_agent_max_slope", - "index": -1 - }, - { - "name": "agent/radius", - "type": "float", - "getter": "get_agent_radius", - "setter": "set_agent_radius", - "index": -1 - }, - { - "name": "cell/height", - "type": "float", - "getter": "get_cell_height", - "setter": "set_cell_height", - "index": -1 - }, - { - "name": "cell/size", - "type": "float", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "detail/sample_distance", - "type": "float", - "getter": "get_detail_sample_distance", - "setter": "set_detail_sample_distance", - "index": -1 - }, - { - "name": "detail/sample_max_error", - "type": "float", - "getter": "get_detail_sample_max_error", - "setter": "set_detail_sample_max_error", - "index": -1 - }, - { - "name": "edge/max_error", - "type": "float", - "getter": "get_edge_max_error", - "setter": "set_edge_max_error", - "index": -1 - }, - { - "name": "edge/max_length", - "type": "float", - "getter": "get_edge_max_length", - "setter": "set_edge_max_length", - "index": -1 - }, - { - "name": "filter/filter_walkable_low_height_spans", - "type": "bool", - "getter": "get_filter_walkable_low_height_spans", - "setter": "set_filter_walkable_low_height_spans", - "index": -1 - }, - { - "name": "filter/ledge_spans", - "type": "bool", - "getter": "get_filter_ledge_spans", - "setter": "set_filter_ledge_spans", - "index": -1 - }, - { - "name": "filter/low_hanging_obstacles", - "type": "bool", - "getter": "get_filter_low_hanging_obstacles", - "setter": "set_filter_low_hanging_obstacles", - "index": -1 - }, - { - "name": "geometry/collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "geometry/parsed_geometry_type", - "type": "int", - "getter": "get_parsed_geometry_type", - "setter": "set_parsed_geometry_type", - "index": -1 - }, - { - "name": "geometry/source_geometry_mode", - "type": "int", - "getter": "get_source_geometry_mode", - "setter": "set_source_geometry_mode", - "index": -1 - }, - { - "name": "geometry/source_group_name", - "type": "String", - "getter": "get_source_group_name", - "setter": "set_source_group_name", - "index": -1 - }, - { - "name": "polygon/verts_per_poly", - "type": "float", - "getter": "get_verts_per_poly", - "setter": "set_verts_per_poly", - "index": -1 - }, - { - "name": "polygons", - "type": "Array", - "getter": "_get_polygons", - "setter": "_set_polygons", - "index": -1 - }, - { - "name": "region/merge_size", - "type": "float", - "getter": "get_region_merge_size", - "setter": "set_region_merge_size", - "index": -1 - }, - { - "name": "region/min_size", - "type": "float", - "getter": "get_region_min_size", - "setter": "set_region_min_size", - "index": -1 - }, - { - "name": "sample_partition_type/sample_partition_type", - "type": "int", - "getter": "get_sample_partition_type", - "setter": "set_sample_partition_type", - "index": -1 - }, - { - "name": "vertices", - "type": "PoolVector3Array", - "getter": "get_vertices", - "setter": "set_vertices", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_polygons", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_polygons", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygons", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_polygons", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_from_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_agent_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_agent_max_climb", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_agent_max_slope", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_agent_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_detail_sample_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_detail_sample_max_error", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edge_max_error", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edge_max_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_filter_ledge_spans", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_filter_low_hanging_obstacles", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_filter_walkable_low_height_spans", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parsed_geometry_type", - "return_type": "enum.NavigationMesh::ParsedGeometryType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_polygon_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_region_merge_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_region_min_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sample_partition_type", - "return_type": "enum.NavigationMesh::SamplePartitionType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_source_geometry_mode", - "return_type": "enum.NavigationMesh::SourceGeometryMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_source_group_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vertices", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_verts_per_poly", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_agent_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent_height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_agent_max_climb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent_max_climb", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_agent_max_slope", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent_max_slope", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_agent_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent_radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cell_height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_detail_sample_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "detail_sample_dist", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_detail_sample_max_error", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "detail_sample_max_error", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edge_max_error", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "edge_max_error", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edge_max_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "edge_max_length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filter_ledge_spans", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter_ledge_spans", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filter_low_hanging_obstacles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter_low_hanging_obstacles", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filter_walkable_low_height_spans", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filter_walkable_low_height_spans", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_parsed_geometry_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "geometry_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_merge_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region_merge_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_min_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region_min_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sample_partition_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sample_partition_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_source_geometry_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_source_group_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertices", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vertices", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_verts_per_poly", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "verts_per_poly", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ParsedGeometryType", - "values": { - "PARSED_GEOMETRY_MESH_INSTANCES": 0, - "PARSED_GEOMETRY_STATIC_COLLIDERS": 1, - "PARSED_GEOMETRY_BOTH": 2, - "PARSED_GEOMETRY_MAX": 3 - } - }, - { - "name": "SamplePartitionType", - "values": { - "SAMPLE_PARTITION_WATERSHED": 0, - "SAMPLE_PARTITION_MONOTONE": 1, - "SAMPLE_PARTITION_LAYERS": 2, - "SAMPLE_PARTITION_MAX": 3 - } - }, - { - "name": "SourceGeometryMode", - "values": { - "SOURCE_GEOMETRY_NAVMESH_CHILDREN": 0, - "SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN": 1, - "SOURCE_GEOMETRY_GROUPS_EXPLICIT": 2, - "SOURCE_GEOMETRY_MAX": 3 - } - } - ] - }, - { - "name": "NavigationMeshGenerator", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "NavigationMeshGenerator", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "bake", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nav_mesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "root_node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nav_mesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationMeshInstance", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "enabled", - "type": "bool", - "getter": "is_enabled", - "setter": "set_enabled", - "index": -1 - }, - { - "name": "navmesh", - "type": "NavigationMesh", - "getter": "get_navigation_mesh", - "setter": "set_navigation_mesh", - "index": -1 - } - ], - "signals": [ - { - "name": "bake_finished", - "arguments": [ - ] - }, - { - "name": "navigation_mesh_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_bake_finished", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nav_mesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bake_navigation_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_navigation_mesh", - "return_type": "NavigationMesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_navigation_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "navmesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationObstacle", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "estimate_radius", - "type": "bool", - "getter": "is_radius_estimated", - "setter": "set_estimate_radius", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_navigation", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_radius_estimated", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_estimate_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "estimate_radius", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_navigation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "navigation", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationObstacle2D", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "estimate_radius", - "type": "bool", - "getter": "is_radius_estimated", - "setter": "set_estimate_radius", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_navigation", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_radius_estimated", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_estimate_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "estimate_radius", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_navigation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "navigation", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationPolygon", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "outlines", - "type": "Array", - "getter": "_get_outlines", - "setter": "_set_outlines", - "index": -1 - }, - { - "name": "polygons", - "type": "Array", - "getter": "_get_polygons", - "setter": "_set_polygons", - "index": -1 - }, - { - "name": "vertices", - "type": "PoolVector2Array", - "getter": "get_vertices", - "setter": "set_vertices", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_outlines", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_polygons", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_outlines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "outlines", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_polygons", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygons", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_outline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "outline", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_outline_at_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "outline", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_outlines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_polygons", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_outline", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_outline_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_polygon_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vertices", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_polygons_from_outlines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_outline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_outline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "outline", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertices", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vertices", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationPolygonInstance", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "enabled", - "type": "bool", - "getter": "is_enabled", - "setter": "set_enabled", - "index": -1 - }, - { - "name": "navpoly", - "type": "NavigationPolygon", - "getter": "get_navigation_polygon", - "setter": "set_navigation_polygon", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_navpoly_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_navigation_polygon", - "return_type": "NavigationPolygon", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_navigation_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "navpoly", - "type": "NavigationPolygon", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NavigationServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "NavigationServer", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "agent_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "agent_is_map_changed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "agent_set_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_max_neighbors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_max_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_neighbor_dist", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dist", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_target_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_time_horizon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "agent_set_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "agent", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "free", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "map_get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_closest_point", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_closest_point_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_closest_point_owner", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_closest_point_to_segment", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "start", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "end", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_collision", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "map_get_edge_connection_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_path", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "origin", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "destination", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "optimize", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_get_up", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "nap", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cell_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_edge_connection_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "map_set_up", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta_time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_bake_navmesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "region_set_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_set_navmesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "nav_mesh", - "type": "NavigationMesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "region_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NetworkedMultiplayerENet", - "base_class": "NetworkedMultiplayerPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "COMPRESS_FASTLZ": 2, - "COMPRESS_NONE": 0, - "COMPRESS_RANGE_CODER": 1, - "COMPRESS_ZLIB": 3, - "COMPRESS_ZSTD": 4 - }, - "properties": [ - { - "name": "always_ordered", - "type": "bool", - "getter": "is_always_ordered", - "setter": "set_always_ordered", - "index": -1 - }, - { - "name": "channel_count", - "type": "int", - "getter": "get_channel_count", - "setter": "set_channel_count", - "index": -1 - }, - { - "name": "compression_mode", - "type": "int", - "getter": "get_compression_mode", - "setter": "set_compression_mode", - "index": -1 - }, - { - "name": "dtls_hostname", - "type": "String", - "getter": "get_dtls_hostname", - "setter": "set_dtls_hostname", - "index": -1 - }, - { - "name": "dtls_verify", - "type": "bool", - "getter": "is_dtls_verify_enabled", - "setter": "set_dtls_verify_enabled", - "index": -1 - }, - { - "name": "server_relay", - "type": "bool", - "getter": "is_server_relay_enabled", - "setter": "set_server_relay_enabled", - "index": -1 - }, - { - "name": "transfer_channel", - "type": "int", - "getter": "get_transfer_channel", - "setter": "set_transfer_channel", - "index": -1 - }, - { - "name": "use_dtls", - "type": "bool", - "getter": "is_dtls_enabled", - "setter": "set_dtls_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "close_connection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "wait_usec", - "type": "int", - "has_default_value": true, - "default_value": "100" - } - ] - }, - { - "name": "create_client", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "address", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "in_bandwidth", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "client_port", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "create_server", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_clients", - "type": "int", - "has_default_value": true, - "default_value": "32" - }, - { - "name": "in_bandwidth", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "out_bandwidth", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "disconnect_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "now", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_channel_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_compression_mode", - "return_type": "enum.NetworkedMultiplayerENet::CompressionMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dtls_hostname", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_last_packet_channel", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_packet_channel", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_peer_address", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_peer_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_transfer_channel", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_always_ordered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_dtls_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_dtls_verify_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_server_relay_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_always_ordered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ordered", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bind_ip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ip", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_channel_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channels", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_compression_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dtls_certificate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "certificate", - "type": "X509Certificate", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dtls_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dtls_hostname", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hostname", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dtls_key", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dtls_verify_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_peer_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "timeout_limit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "timeout_min", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "timeout_max", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_server_relay_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transfer_channel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "CompressionMode", - "values": { - "COMPRESS_NONE": 0, - "COMPRESS_RANGE_CODER": 1, - "COMPRESS_FASTLZ": 2, - "COMPRESS_ZLIB": 3, - "COMPRESS_ZSTD": 4 - } - } - ] - }, - { - "name": "NetworkedMultiplayerPeer", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "CONNECTION_CONNECTED": 2, - "CONNECTION_CONNECTING": 1, - "CONNECTION_DISCONNECTED": 0, - "TARGET_PEER_BROADCAST": 0, - "TARGET_PEER_SERVER": 1, - "TRANSFER_MODE_RELIABLE": 2, - "TRANSFER_MODE_UNRELIABLE": 0, - "TRANSFER_MODE_UNRELIABLE_ORDERED": 1 - }, - "properties": [ - { - "name": "refuse_new_connections", - "type": "bool", - "getter": "is_refusing_new_connections", - "setter": "set_refuse_new_connections", - "index": -1 - }, - { - "name": "transfer_mode", - "type": "int", - "getter": "get_transfer_mode", - "setter": "set_transfer_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "connection_failed", - "arguments": [ - ] - }, - { - "name": "connection_succeeded", - "arguments": [ - ] - }, - { - "name": "peer_connected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "peer_disconnected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "server_disconnected", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_connection_status", - "return_type": "enum.NetworkedMultiplayerPeer::ConnectionStatus", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_packet_peer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transfer_mode", - "return_type": "enum.NetworkedMultiplayerPeer::TransferMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unique_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_refusing_new_connections", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_refuse_new_connections", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transfer_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ConnectionStatus", - "values": { - "CONNECTION_DISCONNECTED": 0, - "CONNECTION_CONNECTING": 1, - "CONNECTION_CONNECTED": 2 - } - }, - { - "name": "TransferMode", - "values": { - "TRANSFER_MODE_UNRELIABLE": 0, - "TRANSFER_MODE_UNRELIABLE_ORDERED": 1, - "TRANSFER_MODE_RELIABLE": 2 - } - } - ] - }, - { - "name": "NinePatchRect", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "AXIS_STRETCH_MODE_STRETCH": 0, - "AXIS_STRETCH_MODE_TILE": 1, - "AXIS_STRETCH_MODE_TILE_FIT": 2 - }, - "properties": [ - { - "name": "axis_stretch_horizontal", - "type": "int", - "getter": "get_h_axis_stretch_mode", - "setter": "set_h_axis_stretch_mode", - "index": -1 - }, - { - "name": "axis_stretch_vertical", - "type": "int", - "getter": "get_v_axis_stretch_mode", - "setter": "set_v_axis_stretch_mode", - "index": -1 - }, - { - "name": "draw_center", - "type": "bool", - "getter": "is_draw_center_enabled", - "setter": "set_draw_center", - "index": -1 - }, - { - "name": "patch_margin_bottom", - "type": "int", - "getter": "get_patch_margin", - "setter": "set_patch_margin", - "index": 3 - }, - { - "name": "patch_margin_left", - "type": "int", - "getter": "get_patch_margin", - "setter": "set_patch_margin", - "index": 0 - }, - { - "name": "patch_margin_right", - "type": "int", - "getter": "get_patch_margin", - "setter": "set_patch_margin", - "index": 2 - }, - { - "name": "patch_margin_top", - "type": "int", - "getter": "get_patch_margin", - "setter": "set_patch_margin", - "index": 1 - }, - { - "name": "region_rect", - "type": "Rect2", - "getter": "get_region_rect", - "setter": "set_region_rect", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - } - ], - "signals": [ - { - "name": "texture_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_h_axis_stretch_mode", - "return_type": "enum.NinePatchRect::AxisStretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_patch_margin", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_region_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_axis_stretch_mode", - "return_type": "enum.NinePatchRect::AxisStretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_draw_center_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_draw_center", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "draw_center", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_axis_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_patch_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_axis_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AxisStretchMode", - "values": { - "AXIS_STRETCH_MODE_STRETCH": 0, - "AXIS_STRETCH_MODE_TILE": 1, - "AXIS_STRETCH_MODE_TILE_FIT": 2 - } - } - ] - }, - { - "name": "Node", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DUPLICATE_GROUPS": 2, - "DUPLICATE_SCRIPTS": 4, - "DUPLICATE_SIGNALS": 1, - "DUPLICATE_USE_INSTANCING": 8, - "NOTIFICATION_APP_PAUSED": 1015, - "NOTIFICATION_APP_RESUMED": 1014, - "NOTIFICATION_CRASH": 1012, - "NOTIFICATION_DRAG_BEGIN": 21, - "NOTIFICATION_DRAG_END": 22, - "NOTIFICATION_ENTER_TREE": 10, - "NOTIFICATION_EXIT_TREE": 11, - "NOTIFICATION_INSTANCED": 20, - "NOTIFICATION_INTERNAL_PHYSICS_PROCESS": 26, - "NOTIFICATION_INTERNAL_PROCESS": 25, - "NOTIFICATION_MOVED_IN_PARENT": 12, - "NOTIFICATION_OS_IME_UPDATE": 1013, - "NOTIFICATION_OS_MEMORY_WARNING": 1009, - "NOTIFICATION_PARENTED": 18, - "NOTIFICATION_PATH_CHANGED": 23, - "NOTIFICATION_PAUSED": 14, - "NOTIFICATION_PHYSICS_PROCESS": 16, - "NOTIFICATION_POST_ENTER_TREE": 27, - "NOTIFICATION_PROCESS": 17, - "NOTIFICATION_READY": 13, - "NOTIFICATION_TRANSLATION_CHANGED": 1010, - "NOTIFICATION_UNPARENTED": 19, - "NOTIFICATION_UNPAUSED": 15, - "NOTIFICATION_WM_ABOUT": 1011, - "NOTIFICATION_WM_FOCUS_IN": 1004, - "NOTIFICATION_WM_FOCUS_OUT": 1005, - "NOTIFICATION_WM_GO_BACK_REQUEST": 1007, - "NOTIFICATION_WM_MOUSE_ENTER": 1002, - "NOTIFICATION_WM_MOUSE_EXIT": 1003, - "NOTIFICATION_WM_QUIT_REQUEST": 1006, - "NOTIFICATION_WM_UNFOCUS_REQUEST": 1008, - "PAUSE_MODE_INHERIT": 0, - "PAUSE_MODE_PROCESS": 2, - "PAUSE_MODE_STOP": 1 - }, - "properties": [ - { - "name": "_import_path", - "type": "NodePath", - "getter": "_get_import_path", - "setter": "_set_import_path", - "index": -1 - }, - { - "name": "custom_multiplayer", - "type": "MultiplayerAPI", - "getter": "get_custom_multiplayer", - "setter": "set_custom_multiplayer", - "index": -1 - }, - { - "name": "editor_description", - "type": "String", - "getter": "_get_editor_description", - "setter": "_set_editor_description", - "index": -1 - }, - { - "name": "filename", - "type": "String", - "getter": "get_filename", - "setter": "set_filename", - "index": -1 - }, - { - "name": "multiplayer", - "type": "MultiplayerAPI", - "getter": "get_multiplayer", - "setter": "", - "index": -1 - }, - { - "name": "name", - "type": "String", - "getter": "get_name", - "setter": "set_name", - "index": -1 - }, - { - "name": "owner", - "type": "Node", - "getter": "get_owner", - "setter": "set_owner", - "index": -1 - }, - { - "name": "pause_mode", - "type": "int", - "getter": "get_pause_mode", - "setter": "set_pause_mode", - "index": -1 - }, - { - "name": "process_priority", - "type": "int", - "getter": "get_process_priority", - "setter": "set_process_priority", - "index": -1 - } - ], - "signals": [ - { - "name": "ready", - "arguments": [ - ] - }, - { - "name": "renamed", - "arguments": [ - ] - }, - { - "name": "tree_entered", - "arguments": [ - ] - }, - { - "name": "tree_exited", - "arguments": [ - ] - }, - { - "name": "tree_exiting", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_configuration_warning", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_editor_description", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_import_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_physics_process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_ready", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_editor_description", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "editor_description", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_import_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "import_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_property_pinned", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pinned", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_key_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEventKey", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_child", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "legible_unique_name", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_child_below_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "child_node", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "legible_unique_name", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_to_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "persistent", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "can_process", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "duplicate", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "15" - } - ] - }, - { - "name": "find_node", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "recursive", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "owned", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "find_parent", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_child", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_child_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_children", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_multiplayer", - "return_type": "MultiplayerAPI", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_filename", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_groups", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_multiplayer", - "return_type": "MultiplayerAPI", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_master", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_and_resource", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_or_null", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_owner", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_to", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pause_mode", - "return_type": "enum.Node::PauseMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_process_delta_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position_in_parent", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_delta_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scene_instance_load_placeholder", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tree", - "return_type": "SceneTree", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_viewport", - "return_type": "Viewport", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_node", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_node_and_resource", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_a_parent_of", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_displayed_folded", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_greater_than", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_in_group", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_inside_tree", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_network_master", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_physics_processing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_physics_processing_internal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_processing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_processing_input", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_processing_internal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_processing_unhandled_input", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_processing_unhandled_key_input", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "move_child", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "child_node", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "print_stray_nodes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "print_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "print_tree_pretty", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "propagate_call", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "args", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "parent_first", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "propagate_notification", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "what", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "queue_free", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "raise", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_and_skip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_child", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_from_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "replace_by", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "keep_data", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "request_ready", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rpc", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rpc_config", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rpc_id", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rpc_unreliable", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rpc_unreliable_id", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rset_config", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rset_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rset_unreliable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rset_unreliable_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_multiplayer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "api", - "type": "MultiplayerAPI", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_display_folded", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fold", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_filename", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filename", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_network_master", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "recursive", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_owner", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "owner", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pause_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_process_internal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_internal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_unhandled_key_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scene_instance_load_placeholder", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "load_placeholder", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_configuration_warning", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "PauseMode", - "values": { - "PAUSE_MODE_INHERIT": 0, - "PAUSE_MODE_STOP": 1, - "PAUSE_MODE_PROCESS": 2 - } - }, - { - "name": "DuplicateFlags", - "values": { - "DUPLICATE_SIGNALS": 1, - "DUPLICATE_GROUPS": 2, - "DUPLICATE_SCRIPTS": 4, - "DUPLICATE_USE_INSTANCING": 8 - } - } - ] - }, - { - "name": "Node2D", - "base_class": "CanvasItem", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "global_position", - "type": "Vector2", - "getter": "get_global_position", - "setter": "set_global_position", - "index": -1 - }, - { - "name": "global_rotation", - "type": "float", - "getter": "get_global_rotation", - "setter": "set_global_rotation", - "index": -1 - }, - { - "name": "global_rotation_degrees", - "type": "float", - "getter": "get_global_rotation_degrees", - "setter": "set_global_rotation_degrees", - "index": -1 - }, - { - "name": "global_scale", - "type": "Vector2", - "getter": "get_global_scale", - "setter": "set_global_scale", - "index": -1 - }, - { - "name": "global_transform", - "type": "Transform2D", - "getter": "get_global_transform", - "setter": "set_global_transform", - "index": -1 - }, - { - "name": "position", - "type": "Vector2", - "getter": "get_position", - "setter": "set_position", - "index": -1 - }, - { - "name": "rotation", - "type": "float", - "getter": "get_rotation", - "setter": "set_rotation", - "index": -1 - }, - { - "name": "rotation_degrees", - "type": "float", - "getter": "get_rotation_degrees", - "setter": "set_rotation_degrees", - "index": -1 - }, - { - "name": "scale", - "type": "Vector2", - "getter": "get_scale", - "setter": "set_scale", - "index": -1 - }, - { - "name": "transform", - "type": "Transform2D", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - }, - { - "name": "z_as_relative", - "type": "bool", - "getter": "is_z_relative", - "setter": "set_z_as_relative", - "index": -1 - }, - { - "name": "z_index", - "type": "int", - "getter": "get_z_index", - "setter": "set_z_index", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "apply_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angle_to", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_global_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_rotation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_rotation_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_relative_transform_to_parent", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "parent", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_rotation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_z_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "global_translate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_z_relative", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "look_at", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "move_local_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scaled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "move_local_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scaled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "rotate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radians", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radians", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radians", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_z_as_relative", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_z_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "z_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "to_global", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "to_local", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "global_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "translate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "NoiseTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "as_normalmap", - "type": "bool", - "getter": "is_normalmap", - "setter": "set_as_normalmap", - "index": -1 - }, - { - "name": "bump_strength", - "type": "float", - "getter": "get_bump_strength", - "setter": "set_bump_strength", - "index": -1 - }, - { - "name": "height", - "type": "int", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "noise", - "type": "OpenSimplexNoise", - "getter": "get_noise", - "setter": "set_noise", - "index": -1 - }, - { - "name": "noise_offset", - "type": "Vector2", - "getter": "get_noise_offset", - "setter": "set_noise_offset", - "index": -1 - }, - { - "name": "seamless", - "type": "bool", - "getter": "get_seamless", - "setter": "set_seamless", - "index": -1 - }, - { - "name": "width", - "type": "int", - "getter": "get_width", - "setter": "set_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_generate_texture", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_queue_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_thread_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bump_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_noise", - "return_type": "OpenSimplexNoise", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_noise_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_seamless", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_normalmap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_as_normalmap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "as_normalmap", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bump_strength", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bump_strength", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_noise", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "noise", - "type": "OpenSimplexNoise", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_noise_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "noise_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_seamless", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seamless", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Object", - "base_class": "", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "CONNECT_DEFERRED": 1, - "CONNECT_ONESHOT": 4, - "CONNECT_PERSIST": 2, - "CONNECT_REFERENCE_COUNTED": 8, - "NOTIFICATION_POSTINITIALIZE": 0, - "NOTIFICATION_PREDELETE": 1 - }, - "properties": [ - ], - "signals": [ - { - "name": "script_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_get", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_property_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_init", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_notification", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "what", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_to_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_user_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arguments", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "call", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "call_deferred", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "callv", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg_array", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_translate_messages", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "binds", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "disconnect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "emit_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "free", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_class", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_incoming_connections", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_indexed", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_meta", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_meta_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_method_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_property_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script", - "return_type": "Reference", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_signal_connection_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_signal_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_meta", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_method", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_signal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_user_signal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_blocking_signals", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_class", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_connected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_queued_for_deletion", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "notification", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "what", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "reversed", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "property_list_changed_notify", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_meta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_block_signals", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_deferred", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_indexed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_message_translation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_meta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "script", - "type": "Reference", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "to_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "tr", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ConnectFlags", - "values": { - "CONNECT_DEFERRED": 1, - "CONNECT_PERSIST": 2, - "CONNECT_ONESHOT": 4, - "CONNECT_REFERENCE_COUNTED": 8 - } - } - ] - }, - { - "name": "Occluder", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "shape", - "type": "OccluderShape", - "getter": "get_shape", - "setter": "set_shape", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_shape", - "return_type": "OccluderShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "resource_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "OccluderShape", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "OccluderPolygon2D", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "CULL_CLOCKWISE": 1, - "CULL_COUNTER_CLOCKWISE": 2, - "CULL_DISABLED": 0 - }, - "properties": [ - { - "name": "closed", - "type": "bool", - "getter": "is_closed", - "setter": "set_closed", - "index": -1 - }, - { - "name": "cull_mode", - "type": "int", - "getter": "get_cull_mode", - "setter": "set_cull_mode", - "index": -1 - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "getter": "get_polygon", - "setter": "set_polygon", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cull_mode", - "return_type": "enum.OccluderPolygon2D::CullMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_closed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_closed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "closed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cull_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cull_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "CullMode", - "values": { - "CULL_DISABLED": 0, - "CULL_CLOCKWISE": 1, - "CULL_COUNTER_CLOCKWISE": 2 - } - } - ] - }, - { - "name": "OccluderShape", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "OccluderShapeSphere", - "base_class": "OccluderShape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "spheres", - "type": "Array", - "getter": "get_spheres", - "setter": "set_spheres", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_spheres", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_sphere_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sphere_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spheres", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "spheres", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "OmniLight", - "base_class": "Light", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "SHADOW_CUBE": 1, - "SHADOW_DETAIL_HORIZONTAL": 1, - "SHADOW_DETAIL_VERTICAL": 0, - "SHADOW_DUAL_PARABOLOID": 0 - }, - "properties": [ - { - "name": "omni_attenuation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "omni_range", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "omni_shadow_detail", - "type": "int", - "getter": "get_shadow_detail", - "setter": "set_shadow_detail", - "index": -1 - }, - { - "name": "omni_shadow_mode", - "type": "int", - "getter": "get_shadow_mode", - "setter": "set_shadow_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_shadow_detail", - "return_type": "enum.OmniLight::ShadowDetail", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_mode", - "return_type": "enum.OmniLight::ShadowMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_shadow_detail", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "detail", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ShadowMode", - "values": { - "SHADOW_DUAL_PARABOLOID": 0, - "SHADOW_CUBE": 1 - } - }, - { - "name": "ShadowDetail", - "values": { - "SHADOW_DETAIL_VERTICAL": 0, - "SHADOW_DETAIL_HORIZONTAL": 1 - } - } - ] - }, - { - "name": "OpenSimplexNoise", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "lacunarity", - "type": "float", - "getter": "get_lacunarity", - "setter": "set_lacunarity", - "index": -1 - }, - { - "name": "octaves", - "type": "int", - "getter": "get_octaves", - "setter": "set_octaves", - "index": -1 - }, - { - "name": "period", - "type": "float", - "getter": "get_period", - "setter": "set_period", - "index": -1 - }, - { - "name": "persistence", - "type": "float", - "getter": "get_persistence", - "setter": "set_persistence", - "index": -1 - }, - { - "name": "seed", - "type": "int", - "getter": "get_seed", - "setter": "set_seed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_image", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "noise_offset", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "get_lacunarity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_noise_1d", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_noise_2d", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_noise_2dv", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pos", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_noise_3d", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_noise_3dv", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pos", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_noise_4d", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "w", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_octaves", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_period", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_persistence", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_seamless_image", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_seed", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_lacunarity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lacunarity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_octaves", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "octave_count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_period", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "period", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_persistence", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "persistence", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_seed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seed", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "OptionButton", - "base_class": "Button", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "items", - "type": "Array", - "getter": "_get_items", - "setter": "_set_items", - "index": -1 - }, - { - "name": "selected", - "type": "int", - "getter": "get_selected", - "setter": "_select_int", - "index": -1 - } - ], - "signals": [ - { - "name": "item_focused", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "item_selected", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_focused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_items", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_select_int", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_items", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_icon_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "add_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "add_separator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_popup", - "return_type": "PopupMenu", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_item_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_metadata", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "metadata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PCKPacker", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_file", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pck_path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "source_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "flush", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "verbose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "pck_start", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pck_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "alignment", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PHashTranslation", - "base_class": "Translation", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "generate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Translation", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PackedDataContainer", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "__data__", - "type": "PoolByteArray", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_iter_get", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_iter_init", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_iter_next", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pack", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "PackedDataContainerRef", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_is_dictionary", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_iter_get", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_iter_init", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_iter_next", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "PackedScene", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "GEN_EDIT_STATE_DISABLED": 0, - "GEN_EDIT_STATE_INSTANCE": 1, - "GEN_EDIT_STATE_MAIN": 2, - "GEN_EDIT_STATE_MAIN_INHERITED": 3 - }, - "properties": [ - { - "name": "_bundled", - "type": "Dictionary", - "getter": "_get_bundled_scene", - "setter": "_set_bundled_scene", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_bundled_scene", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_bundled_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_instance", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_state", - "return_type": "SceneState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "instance", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "edit_state", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "pack", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "GenEditState", - "values": { - "GEN_EDIT_STATE_DISABLED": 0, - "GEN_EDIT_STATE_INSTANCE": 1, - "GEN_EDIT_STATE_MAIN": 2, - "GEN_EDIT_STATE_MAIN_INHERITED": 3 - } - } - ] - }, - { - "name": "PackedSceneGLTF", - "base_class": "PackedScene", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "export_gltf", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "bake_fps", - "type": "float", - "has_default_value": true, - "default_value": "1000" - } - ] - }, - { - "name": "import_gltf_scene", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "bake_fps", - "type": "float", - "has_default_value": true, - "default_value": "1000" - }, - { - "name": "compress_flags", - "type": "int", - "has_default_value": true, - "default_value": "2194432" - }, - { - "name": "state", - "type": "GLTFState", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "pack_gltf", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "bake_fps", - "type": "float", - "has_default_value": true, - "default_value": "1000" - }, - { - "name": "compress_flags", - "type": "int", - "has_default_value": true, - "default_value": "2194432" - }, - { - "name": "state", - "type": "GLTFState", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PacketPeer", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "allow_object_decoding", - "type": "bool", - "getter": "is_object_decoding_allowed", - "setter": "set_allow_object_decoding", - "index": -1 - }, - { - "name": "encode_buffer_max_size", - "type": "int", - "getter": "get_encode_buffer_max_size", - "setter": "set_encode_buffer_max_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_available_packet_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_encode_buffer_max_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_packet", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_packet_error", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_var", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_object_decoding_allowed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "put_packet", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_var", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "var", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "full_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_allow_object_decoding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_encode_buffer_max_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PacketPeerDTLS", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "STATUS_CONNECTED": 2, - "STATUS_DISCONNECTED": 0, - "STATUS_ERROR": 3, - "STATUS_ERROR_HOSTNAME_MISMATCH": 4, - "STATUS_HANDSHAKING": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "connect_to_peer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "packet_peer", - "type": "PacketPeerUDP", - "has_default_value": false, - "default_value": "" - }, - { - "name": "validate_certs", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "for_hostname", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "valid_certificate", - "type": "X509Certificate", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "disconnect_from_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_status", - "return_type": "enum.PacketPeerDTLS::Status", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "Status", - "values": { - "STATUS_DISCONNECTED": 0, - "STATUS_HANDSHAKING": 1, - "STATUS_CONNECTED": 2, - "STATUS_ERROR": 3, - "STATUS_ERROR_HOSTNAME_MISMATCH": 4 - } - } - ] - }, - { - "name": "PacketPeerGDNative", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "PacketPeerStream", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "input_buffer_max_size", - "type": "int", - "getter": "get_input_buffer_max_size", - "setter": "set_input_buffer_max_size", - "index": -1 - }, - { - "name": "output_buffer_max_size", - "type": "int", - "getter": "get_output_buffer_max_size", - "setter": "set_output_buffer_max_size", - "index": -1 - }, - { - "name": "stream_peer", - "type": "StreamPeer", - "getter": "get_stream_peer", - "setter": "set_stream_peer", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_input_buffer_max_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_output_buffer_max_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_peer", - "return_type": "StreamPeer", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_input_buffer_max_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_size_bytes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_output_buffer_max_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_size_bytes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer", - "type": "StreamPeer", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PacketPeerUDP", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect_to_host", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_packet_ip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_packet_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_connected_to_host", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_listening", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "join_multicast_group", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multicast_address", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "interface_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "leave_multicast_group", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multicast_address", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "interface_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "listen", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bind_address", - "type": "String", - "has_default_value": true, - "default_value": "*" - }, - { - "name": "recv_buf_size", - "type": "int", - "has_default_value": true, - "default_value": "65536" - } - ] - }, - { - "name": "set_broadcast_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dest_address", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "wait", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Panel", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "PanelContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "PanoramaSky", - "base_class": "Sky", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "panorama", - "type": "Texture", - "getter": "get_panorama", - "setter": "set_panorama", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_panorama", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_panorama", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ParallaxBackground", - "base_class": "CanvasLayer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "scroll_base_offset", - "type": "Vector2", - "getter": "get_scroll_base_offset", - "setter": "set_scroll_base_offset", - "index": -1 - }, - { - "name": "scroll_base_scale", - "type": "Vector2", - "getter": "get_scroll_base_scale", - "setter": "set_scroll_base_scale", - "index": -1 - }, - { - "name": "scroll_ignore_camera_zoom", - "type": "bool", - "getter": "is_ignore_camera_zoom", - "setter": "set_ignore_camera_zoom", - "index": -1 - }, - { - "name": "scroll_limit_begin", - "type": "Vector2", - "getter": "get_limit_begin", - "setter": "set_limit_begin", - "index": -1 - }, - { - "name": "scroll_limit_end", - "type": "Vector2", - "getter": "get_limit_end", - "setter": "set_limit_end", - "index": -1 - }, - { - "name": "scroll_offset", - "type": "Vector2", - "getter": "get_scroll_offset", - "setter": "set_scroll_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_camera_moved", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_limit_begin", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_limit_end", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scroll_base_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scroll_base_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scroll_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ignore_camera_zoom", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_ignore_camera_zoom", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ignore", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_limit_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_limit_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scroll_base_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scroll_base_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scroll_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ParallaxLayer", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "motion_mirroring", - "type": "Vector2", - "getter": "get_mirroring", - "setter": "set_mirroring", - "index": -1 - }, - { - "name": "motion_offset", - "type": "Vector2", - "getter": "get_motion_offset", - "setter": "set_motion_offset", - "index": -1 - }, - { - "name": "motion_scale", - "type": "Vector2", - "getter": "get_motion_scale", - "setter": "set_motion_scale", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_mirroring", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_mirroring", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mirror", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_motion_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_motion_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Particles", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1, - "DRAW_ORDER_VIEW_DEPTH": 2, - "MAX_DRAW_PASSES": 4 - }, - "properties": [ - { - "name": "amount", - "type": "int", - "getter": "get_amount", - "setter": "set_amount", - "index": -1 - }, - { - "name": "draw_order", - "type": "int", - "getter": "get_draw_order", - "setter": "set_draw_order", - "index": -1 - }, - { - "name": "draw_pass_1", - "type": "Mesh", - "getter": "get_draw_pass_mesh", - "setter": "set_draw_pass_mesh", - "index": 0 - }, - { - "name": "draw_pass_2", - "type": "Mesh", - "getter": "get_draw_pass_mesh", - "setter": "set_draw_pass_mesh", - "index": 1 - }, - { - "name": "draw_pass_3", - "type": "Mesh", - "getter": "get_draw_pass_mesh", - "setter": "set_draw_pass_mesh", - "index": 2 - }, - { - "name": "draw_pass_4", - "type": "Mesh", - "getter": "get_draw_pass_mesh", - "setter": "set_draw_pass_mesh", - "index": 3 - }, - { - "name": "draw_passes", - "type": "int", - "getter": "get_draw_passes", - "setter": "set_draw_passes", - "index": -1 - }, - { - "name": "emitting", - "type": "bool", - "getter": "is_emitting", - "setter": "set_emitting", - "index": -1 - }, - { - "name": "explosiveness", - "type": "float", - "getter": "get_explosiveness_ratio", - "setter": "set_explosiveness_ratio", - "index": -1 - }, - { - "name": "fixed_fps", - "type": "int", - "getter": "get_fixed_fps", - "setter": "set_fixed_fps", - "index": -1 - }, - { - "name": "fract_delta", - "type": "bool", - "getter": "get_fractional_delta", - "setter": "set_fractional_delta", - "index": -1 - }, - { - "name": "lifetime", - "type": "float", - "getter": "get_lifetime", - "setter": "set_lifetime", - "index": -1 - }, - { - "name": "local_coords", - "type": "bool", - "getter": "get_use_local_coordinates", - "setter": "set_use_local_coordinates", - "index": -1 - }, - { - "name": "one_shot", - "type": "bool", - "getter": "get_one_shot", - "setter": "set_one_shot", - "index": -1 - }, - { - "name": "preprocess", - "type": "float", - "getter": "get_pre_process_time", - "setter": "set_pre_process_time", - "index": -1 - }, - { - "name": "process_material", - "type": "ShaderMaterial,ParticlesMaterial", - "getter": "get_process_material", - "setter": "set_process_material", - "index": -1 - }, - { - "name": "randomness", - "type": "float", - "getter": "get_randomness_ratio", - "setter": "set_randomness_ratio", - "index": -1 - }, - { - "name": "speed_scale", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - }, - { - "name": "visibility_aabb", - "type": "AABB", - "getter": "get_visibility_aabb", - "setter": "set_visibility_aabb", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "capture_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_amount", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_order", - "return_type": "enum.Particles::DrawOrder", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_pass_mesh", - "return_type": "Mesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pass", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_draw_passes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_explosiveness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fixed_fps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fractional_delta", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_one_shot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pre_process_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_randomness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_local_coordinates", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visibility_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_emitting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "restart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_order", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "order", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_pass_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pass", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_passes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "passes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emitting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "emitting", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fixed_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fractional_delta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_shot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pre_process_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_randomness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_local_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visibility_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DrawOrder", - "values": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1, - "DRAW_ORDER_VIEW_DEPTH": 2 - } - } - ] - }, - { - "name": "Particles2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1 - }, - "properties": [ - { - "name": "amount", - "type": "int", - "getter": "get_amount", - "setter": "set_amount", - "index": -1 - }, - { - "name": "draw_order", - "type": "int", - "getter": "get_draw_order", - "setter": "set_draw_order", - "index": -1 - }, - { - "name": "emitting", - "type": "bool", - "getter": "is_emitting", - "setter": "set_emitting", - "index": -1 - }, - { - "name": "explosiveness", - "type": "float", - "getter": "get_explosiveness_ratio", - "setter": "set_explosiveness_ratio", - "index": -1 - }, - { - "name": "fixed_fps", - "type": "int", - "getter": "get_fixed_fps", - "setter": "set_fixed_fps", - "index": -1 - }, - { - "name": "fract_delta", - "type": "bool", - "getter": "get_fractional_delta", - "setter": "set_fractional_delta", - "index": -1 - }, - { - "name": "lifetime", - "type": "float", - "getter": "get_lifetime", - "setter": "set_lifetime", - "index": -1 - }, - { - "name": "local_coords", - "type": "bool", - "getter": "get_use_local_coordinates", - "setter": "set_use_local_coordinates", - "index": -1 - }, - { - "name": "normal_map", - "type": "Texture", - "getter": "get_normal_map", - "setter": "set_normal_map", - "index": -1 - }, - { - "name": "one_shot", - "type": "bool", - "getter": "get_one_shot", - "setter": "set_one_shot", - "index": -1 - }, - { - "name": "preprocess", - "type": "float", - "getter": "get_pre_process_time", - "setter": "set_pre_process_time", - "index": -1 - }, - { - "name": "process_material", - "type": "ShaderMaterial,ParticlesMaterial", - "getter": "get_process_material", - "setter": "set_process_material", - "index": -1 - }, - { - "name": "randomness", - "type": "float", - "getter": "get_randomness_ratio", - "setter": "set_randomness_ratio", - "index": -1 - }, - { - "name": "speed_scale", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "visibility_rect", - "type": "Rect2", - "getter": "get_visibility_rect", - "setter": "set_visibility_rect", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "capture_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_amount", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_order", - "return_type": "enum.Particles2D::DrawOrder", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_explosiveness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fixed_fps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fractional_delta", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_map", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_one_shot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pre_process_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_randomness_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_local_coordinates", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visibility_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_emitting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "restart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_order", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "order", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emitting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "emitting", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_explosiveness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fixed_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fractional_delta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_shot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pre_process_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "secs", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_process_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_randomness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_local_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visibility_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visibility_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DrawOrder", - "values": { - "DRAW_ORDER_INDEX": 0, - "DRAW_ORDER_LIFETIME": 1 - } - } - ] - }, - { - "name": "ParticlesMaterial", - "base_class": "Material", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "EMISSION_SHAPE_BOX": 2, - "EMISSION_SHAPE_DIRECTED_POINTS": 4, - "EMISSION_SHAPE_MAX": 6, - "EMISSION_SHAPE_POINT": 0, - "EMISSION_SHAPE_POINTS": 3, - "EMISSION_SHAPE_RING": 5, - "EMISSION_SHAPE_SPHERE": 1, - "FLAG_ALIGN_Y_TO_VELOCITY": 0, - "FLAG_DISABLE_Z": 2, - "FLAG_MAX": 3, - "FLAG_ROTATE_Y": 1, - "PARAM_ANGLE": 7, - "PARAM_ANGULAR_VELOCITY": 1, - "PARAM_ANIM_OFFSET": 11, - "PARAM_ANIM_SPEED": 10, - "PARAM_DAMPING": 6, - "PARAM_HUE_VARIATION": 9, - "PARAM_INITIAL_LINEAR_VELOCITY": 0, - "PARAM_LINEAR_ACCEL": 3, - "PARAM_MAX": 12, - "PARAM_ORBIT_VELOCITY": 2, - "PARAM_RADIAL_ACCEL": 4, - "PARAM_SCALE": 8, - "PARAM_TANGENTIAL_ACCEL": 5 - }, - "properties": [ - { - "name": "angle", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 7 - }, - { - "name": "angle_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 7 - }, - { - "name": "angle_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 7 - }, - { - "name": "angular_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 1 - }, - { - "name": "angular_velocity_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 1 - }, - { - "name": "angular_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 1 - }, - { - "name": "anim_offset", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 11 - }, - { - "name": "anim_offset_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 11 - }, - { - "name": "anim_offset_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 11 - }, - { - "name": "anim_speed", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 10 - }, - { - "name": "anim_speed_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 10 - }, - { - "name": "anim_speed_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 10 - }, - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "color_initial_ramp", - "type": "GradientTexture", - "getter": "get_color_initial_ramp", - "setter": "set_color_initial_ramp", - "index": -1 - }, - { - "name": "color_ramp", - "type": "GradientTexture", - "getter": "get_color_ramp", - "setter": "set_color_ramp", - "index": -1 - }, - { - "name": "damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 6 - }, - { - "name": "damping_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 6 - }, - { - "name": "damping_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 6 - }, - { - "name": "direction", - "type": "Vector3", - "getter": "get_direction", - "setter": "set_direction", - "index": -1 - }, - { - "name": "emission_box_extents", - "type": "Vector3", - "getter": "get_emission_box_extents", - "setter": "set_emission_box_extents", - "index": -1 - }, - { - "name": "emission_color_texture", - "type": "Texture", - "getter": "get_emission_color_texture", - "setter": "set_emission_color_texture", - "index": -1 - }, - { - "name": "emission_normal_texture", - "type": "Texture", - "getter": "get_emission_normal_texture", - "setter": "set_emission_normal_texture", - "index": -1 - }, - { - "name": "emission_point_count", - "type": "int", - "getter": "get_emission_point_count", - "setter": "set_emission_point_count", - "index": -1 - }, - { - "name": "emission_point_texture", - "type": "Texture", - "getter": "get_emission_point_texture", - "setter": "set_emission_point_texture", - "index": -1 - }, - { - "name": "emission_ring_axis", - "type": "Vector3", - "getter": "get_emission_ring_axis", - "setter": "set_emission_ring_axis", - "index": -1 - }, - { - "name": "emission_ring_height", - "type": "float", - "getter": "get_emission_ring_height", - "setter": "set_emission_ring_height", - "index": -1 - }, - { - "name": "emission_ring_inner_radius", - "type": "float", - "getter": "get_emission_ring_inner_radius", - "setter": "set_emission_ring_inner_radius", - "index": -1 - }, - { - "name": "emission_ring_radius", - "type": "float", - "getter": "get_emission_ring_radius", - "setter": "set_emission_ring_radius", - "index": -1 - }, - { - "name": "emission_shape", - "type": "int", - "getter": "get_emission_shape", - "setter": "set_emission_shape", - "index": -1 - }, - { - "name": "emission_sphere_radius", - "type": "float", - "getter": "get_emission_sphere_radius", - "setter": "set_emission_sphere_radius", - "index": -1 - }, - { - "name": "flag_align_y", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 0 - }, - { - "name": "flag_disable_z", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 2 - }, - { - "name": "flag_rotate_y", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 1 - }, - { - "name": "flatness", - "type": "float", - "getter": "get_flatness", - "setter": "set_flatness", - "index": -1 - }, - { - "name": "gravity", - "type": "Vector3", - "getter": "get_gravity", - "setter": "set_gravity", - "index": -1 - }, - { - "name": "hue_variation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 9 - }, - { - "name": "hue_variation_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 9 - }, - { - "name": "hue_variation_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 9 - }, - { - "name": "initial_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - }, - { - "name": "initial_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 0 - }, - { - "name": "lifetime_randomness", - "type": "float", - "getter": "get_lifetime_randomness", - "setter": "set_lifetime_randomness", - "index": -1 - }, - { - "name": "linear_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "linear_accel_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 3 - }, - { - "name": "linear_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 3 - }, - { - "name": "orbit_velocity", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - }, - { - "name": "orbit_velocity_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 2 - }, - { - "name": "orbit_velocity_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 2 - }, - { - "name": "radial_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "radial_accel_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 4 - }, - { - "name": "radial_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 4 - }, - { - "name": "scale", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 8 - }, - { - "name": "scale_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 8 - }, - { - "name": "scale_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 8 - }, - { - "name": "spread", - "type": "float", - "getter": "get_spread", - "setter": "set_spread", - "index": -1 - }, - { - "name": "tangential_accel", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "tangential_accel_curve", - "type": "CurveTexture", - "getter": "get_param_texture", - "setter": "set_param_texture", - "index": 5 - }, - { - "name": "tangential_accel_random", - "type": "float", - "getter": "get_param_randomness", - "setter": "set_param_randomness", - "index": 5 - }, - { - "name": "trail_color_modifier", - "type": "GradientTexture", - "getter": "get_trail_color_modifier", - "setter": "set_trail_color_modifier", - "index": -1 - }, - { - "name": "trail_divisor", - "type": "int", - "getter": "get_trail_divisor", - "setter": "set_trail_divisor", - "index": -1 - }, - { - "name": "trail_size_modifier", - "type": "CurveTexture", - "getter": "get_trail_size_modifier", - "setter": "set_trail_size_modifier", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_initial_ramp", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_color_ramp", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_direction", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_box_extents", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_color_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_normal_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_point_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_point_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_axis", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_inner_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_ring_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_shape", - "return_type": "enum.ParticlesMaterial::EmissionShape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_sphere_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_flatness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lifetime_randomness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_randomness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_spread", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_trail_color_modifier", - "return_type": "GradientTexture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_trail_divisor", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_trail_size_modifier", - "return_type": "CurveTexture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_initial_ramp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ramp", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color_ramp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ramp", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_direction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_box_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_color_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_normal_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_point_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point_count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_point_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_axis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_inner_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_ring_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_sphere_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flatness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "accel_vec", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lifetime_randomness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "randomness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_randomness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "randomness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_spread", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_trail_color_modifier", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "GradientTexture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_trail_divisor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "divisor", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_trail_size_modifier", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "CurveTexture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_ALIGN_Y_TO_VELOCITY": 0, - "FLAG_ROTATE_Y": 1, - "FLAG_DISABLE_Z": 2, - "FLAG_MAX": 3 - } - }, - { - "name": "EmissionShape", - "values": { - "EMISSION_SHAPE_POINT": 0, - "EMISSION_SHAPE_SPHERE": 1, - "EMISSION_SHAPE_BOX": 2, - "EMISSION_SHAPE_POINTS": 3, - "EMISSION_SHAPE_DIRECTED_POINTS": 4, - "EMISSION_SHAPE_RING": 5, - "EMISSION_SHAPE_MAX": 6 - } - }, - { - "name": "Parameter", - "values": { - "PARAM_INITIAL_LINEAR_VELOCITY": 0, - "PARAM_ANGULAR_VELOCITY": 1, - "PARAM_ORBIT_VELOCITY": 2, - "PARAM_LINEAR_ACCEL": 3, - "PARAM_RADIAL_ACCEL": 4, - "PARAM_TANGENTIAL_ACCEL": 5, - "PARAM_DAMPING": 6, - "PARAM_ANGLE": 7, - "PARAM_SCALE": 8, - "PARAM_HUE_VARIATION": 9, - "PARAM_ANIM_SPEED": 10, - "PARAM_ANIM_OFFSET": 11, - "PARAM_MAX": 12 - } - } - ] - }, - { - "name": "Path", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "curve", - "type": "Curve3D", - "getter": "get_curve", - "setter": "set_curve", - "index": -1 - } - ], - "signals": [ - { - "name": "curve_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_curve_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_curve", - "return_type": "Curve3D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "Curve3D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Path2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "curve", - "type": "Curve2D", - "getter": "get_curve", - "setter": "set_curve", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_curve_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_curve", - "return_type": "Curve2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "Curve2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PathFollow", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ROTATION_NONE": 0, - "ROTATION_ORIENTED": 4, - "ROTATION_XY": 2, - "ROTATION_XYZ": 3, - "ROTATION_Y": 1 - }, - "properties": [ - { - "name": "cubic_interp", - "type": "bool", - "getter": "get_cubic_interpolation", - "setter": "set_cubic_interpolation", - "index": -1 - }, - { - "name": "h_offset", - "type": "float", - "getter": "get_h_offset", - "setter": "set_h_offset", - "index": -1 - }, - { - "name": "loop", - "type": "bool", - "getter": "has_loop", - "setter": "set_loop", - "index": -1 - }, - { - "name": "offset", - "type": "float", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "rotation_mode", - "type": "int", - "getter": "get_rotation_mode", - "setter": "set_rotation_mode", - "index": -1 - }, - { - "name": "unit_offset", - "type": "float", - "getter": "get_unit_offset", - "setter": "set_unit_offset", - "index": -1 - }, - { - "name": "v_offset", - "type": "float", - "getter": "get_v_offset", - "setter": "set_v_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cubic_interpolation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation_mode", - "return_type": "enum.PathFollow::RotationMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unit_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cubic_interpolation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "h_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rotation_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unit_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unit_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "v_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "RotationMode", - "values": { - "ROTATION_NONE": 0, - "ROTATION_Y": 1, - "ROTATION_XY": 2, - "ROTATION_XYZ": 3, - "ROTATION_ORIENTED": 4 - } - } - ] - }, - { - "name": "PathFollow2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "cubic_interp", - "type": "bool", - "getter": "get_cubic_interpolation", - "setter": "set_cubic_interpolation", - "index": -1 - }, - { - "name": "h_offset", - "type": "float", - "getter": "get_h_offset", - "setter": "set_h_offset", - "index": -1 - }, - { - "name": "lookahead", - "type": "float", - "getter": "get_lookahead", - "setter": "set_lookahead", - "index": -1 - }, - { - "name": "loop", - "type": "bool", - "getter": "has_loop", - "setter": "set_loop", - "index": -1 - }, - { - "name": "offset", - "type": "float", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "rotate", - "type": "bool", - "getter": "is_rotating", - "setter": "set_rotate", - "index": -1 - }, - { - "name": "unit_offset", - "type": "float", - "getter": "get_unit_offset", - "setter": "set_unit_offset", - "index": -1 - }, - { - "name": "v_offset", - "type": "float", - "getter": "get_v_offset", - "setter": "set_v_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cubic_interpolation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_lookahead", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unit_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_offset", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_rotating", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cubic_interpolation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "h_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_lookahead", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lookahead", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_unit_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unit_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "v_offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Performance", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Performance", - "instanciable": false, - "is_reference": false, - "constants": { - "AUDIO_OUTPUT_LATENCY": 30, - "MEMORY_DYNAMIC": 4, - "MEMORY_DYNAMIC_MAX": 6, - "MEMORY_MESSAGE_BUFFER_MAX": 7, - "MEMORY_STATIC": 3, - "MEMORY_STATIC_MAX": 5, - "MONITOR_MAX": 31, - "OBJECT_COUNT": 8, - "OBJECT_NODE_COUNT": 10, - "OBJECT_ORPHAN_NODE_COUNT": 11, - "OBJECT_RESOURCE_COUNT": 9, - "PHYSICS_2D_ACTIVE_OBJECTS": 24, - "PHYSICS_2D_COLLISION_PAIRS": 25, - "PHYSICS_2D_ISLAND_COUNT": 26, - "PHYSICS_3D_ACTIVE_OBJECTS": 27, - "PHYSICS_3D_COLLISION_PAIRS": 28, - "PHYSICS_3D_ISLAND_COUNT": 29, - "RENDER_2D_DRAW_CALLS_IN_FRAME": 19, - "RENDER_2D_ITEMS_IN_FRAME": 18, - "RENDER_DRAW_CALLS_IN_FRAME": 17, - "RENDER_MATERIAL_CHANGES_IN_FRAME": 14, - "RENDER_OBJECTS_IN_FRAME": 12, - "RENDER_SHADER_CHANGES_IN_FRAME": 15, - "RENDER_SURFACE_CHANGES_IN_FRAME": 16, - "RENDER_TEXTURE_MEM_USED": 21, - "RENDER_USAGE_VIDEO_MEM_TOTAL": 23, - "RENDER_VERTEX_MEM_USED": 22, - "RENDER_VERTICES_IN_FRAME": 13, - "RENDER_VIDEO_MEM_USED": 20, - "TIME_FPS": 0, - "TIME_PHYSICS_PROCESS": 2, - "TIME_PROCESS": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_monitor", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "monitor", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Monitor", - "values": { - "TIME_FPS": 0, - "TIME_PROCESS": 1, - "TIME_PHYSICS_PROCESS": 2, - "MEMORY_STATIC": 3, - "MEMORY_DYNAMIC": 4, - "MEMORY_STATIC_MAX": 5, - "MEMORY_DYNAMIC_MAX": 6, - "MEMORY_MESSAGE_BUFFER_MAX": 7, - "OBJECT_COUNT": 8, - "OBJECT_RESOURCE_COUNT": 9, - "OBJECT_NODE_COUNT": 10, - "OBJECT_ORPHAN_NODE_COUNT": 11, - "RENDER_OBJECTS_IN_FRAME": 12, - "RENDER_VERTICES_IN_FRAME": 13, - "RENDER_MATERIAL_CHANGES_IN_FRAME": 14, - "RENDER_SHADER_CHANGES_IN_FRAME": 15, - "RENDER_SURFACE_CHANGES_IN_FRAME": 16, - "RENDER_DRAW_CALLS_IN_FRAME": 17, - "RENDER_2D_ITEMS_IN_FRAME": 18, - "RENDER_2D_DRAW_CALLS_IN_FRAME": 19, - "RENDER_VIDEO_MEM_USED": 20, - "RENDER_TEXTURE_MEM_USED": 21, - "RENDER_VERTEX_MEM_USED": 22, - "RENDER_USAGE_VIDEO_MEM_TOTAL": 23, - "PHYSICS_2D_ACTIVE_OBJECTS": 24, - "PHYSICS_2D_COLLISION_PAIRS": 25, - "PHYSICS_2D_ISLAND_COUNT": 26, - "PHYSICS_3D_ACTIVE_OBJECTS": 27, - "PHYSICS_3D_COLLISION_PAIRS": 28, - "PHYSICS_3D_ISLAND_COUNT": 29, - "AUDIO_OUTPUT_LATENCY": 30, - "MONITOR_MAX": 31 - } - } - ] - }, - { - "name": "PhysicalBone", - "base_class": "PhysicsBody", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "JOINT_TYPE_6DOF": 5, - "JOINT_TYPE_CONE": 2, - "JOINT_TYPE_HINGE": 3, - "JOINT_TYPE_NONE": 0, - "JOINT_TYPE_PIN": 1, - "JOINT_TYPE_SLIDER": 4 - }, - "properties": [ - { - "name": "body_offset", - "type": "Transform", - "getter": "get_body_offset", - "setter": "set_body_offset", - "index": -1 - }, - { - "name": "bounce", - "type": "float", - "getter": "get_bounce", - "setter": "set_bounce", - "index": -1 - }, - { - "name": "friction", - "type": "float", - "getter": "get_friction", - "setter": "set_friction", - "index": -1 - }, - { - "name": "gravity_scale", - "type": "float", - "getter": "get_gravity_scale", - "setter": "set_gravity_scale", - "index": -1 - }, - { - "name": "joint_offset", - "type": "Transform", - "getter": "get_joint_offset", - "setter": "set_joint_offset", - "index": -1 - }, - { - "name": "joint_type", - "type": "int", - "getter": "get_joint_type", - "setter": "set_joint_type", - "index": -1 - }, - { - "name": "mass", - "type": "float", - "getter": "get_mass", - "setter": "set_mass", - "index": -1 - }, - { - "name": "weight", - "type": "float", - "getter": "get_weight", - "setter": "set_weight", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_direct_state_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_body_offset", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bone_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joint_offset", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_joint_type", - "return_type": "enum.PhysicalBone::JointType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_simulate_physics", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_weight", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_simulating_physics", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_static_body", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_body_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "friction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gravity_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joint_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_joint_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mass", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_weight", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "weight", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "JointType", - "values": { - "JOINT_TYPE_NONE": 0, - "JOINT_TYPE_PIN": 1, - "JOINT_TYPE_CONE": 2, - "JOINT_TYPE_HINGE": 3, - "JOINT_TYPE_SLIDER": 4, - "JOINT_TYPE_6DOF": 5 - } - } - ] - }, - { - "name": "Physics2DDirectBodyState", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "angular_velocity", - "type": "float", - "getter": "get_angular_velocity", - "setter": "set_angular_velocity", - "index": -1 - }, - { - "name": "inverse_inertia", - "type": "float", - "getter": "get_inverse_inertia", - "setter": "", - "index": -1 - }, - { - "name": "inverse_mass", - "type": "float", - "getter": "get_inverse_mass", - "setter": "", - "index": -1 - }, - { - "name": "linear_velocity", - "type": "Vector2", - "getter": "get_linear_velocity", - "setter": "set_linear_velocity", - "index": -1 - }, - { - "name": "sleeping", - "type": "bool", - "getter": "is_sleeping", - "setter": "set_sleep_state", - "index": -1 - }, - { - "name": "step", - "type": "float", - "getter": "get_step", - "setter": "", - "index": -1 - }, - { - "name": "total_angular_damp", - "type": "float", - "getter": "get_total_angular_damp", - "setter": "", - "index": -1 - }, - { - "name": "total_gravity", - "type": "Vector2", - "getter": "get_total_gravity", - "setter": "", - "index": -1 - }, - { - "name": "total_linear_damp", - "type": "float", - "getter": "get_total_linear_damp", - "setter": "", - "index": -1 - }, - { - "name": "transform", - "type": "Transform2D", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_central_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "torque", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "impulse", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_torque_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "impulse", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angular_velocity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_contact_collider", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_object", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_shape_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_velocity_at_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_contact_local_normal", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_local_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_local_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_inverse_inertia", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inverse_mass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_velocity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space_state", - "return_type": "Physics2DDirectSpaceState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_angular_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_gravity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_linear_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_velocity_at_local_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "integrate_forces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_sleeping", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_angular_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sleep_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Physics2DDirectSpaceState", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "cast_motion", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Physics2DShapeQueryParameters", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "collide_shape", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Physics2DShapeQueryParameters", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - } - ] - }, - { - "name": "get_rest_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Physics2DShapeQueryParameters", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "intersect_point", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "collision_layer", - "type": "int", - "has_default_value": true, - "default_value": "2147483647" - }, - { - "name": "collide_with_bodies", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "collide_with_areas", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "intersect_point_on_canvas", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas_instance_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "collision_layer", - "type": "int", - "has_default_value": true, - "default_value": "2147483647" - }, - { - "name": "collide_with_bodies", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "collide_with_areas", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "intersect_ray", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "collision_layer", - "type": "int", - "has_default_value": true, - "default_value": "2147483647" - }, - { - "name": "collide_with_bodies", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "collide_with_areas", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "intersect_shape", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Physics2DShapeQueryParameters", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Physics2DServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Physics2DServer", - "instanciable": false, - "is_reference": false, - "constants": { - "AREA_BODY_ADDED": 0, - "AREA_BODY_REMOVED": 1, - "AREA_PARAM_ANGULAR_DAMP": 6, - "AREA_PARAM_GRAVITY": 0, - "AREA_PARAM_GRAVITY_DISTANCE_SCALE": 3, - "AREA_PARAM_GRAVITY_IS_POINT": 2, - "AREA_PARAM_GRAVITY_POINT_ATTENUATION": 4, - "AREA_PARAM_GRAVITY_VECTOR": 1, - "AREA_PARAM_LINEAR_DAMP": 5, - "AREA_PARAM_PRIORITY": 7, - "AREA_SPACE_OVERRIDE_COMBINE": 1, - "AREA_SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "AREA_SPACE_OVERRIDE_DISABLED": 0, - "AREA_SPACE_OVERRIDE_REPLACE": 3, - "AREA_SPACE_OVERRIDE_REPLACE_COMBINE": 4, - "BODY_MODE_CHARACTER": 3, - "BODY_MODE_KINEMATIC": 1, - "BODY_MODE_RIGID": 2, - "BODY_MODE_STATIC": 0, - "BODY_PARAM_ANGULAR_DAMP": 6, - "BODY_PARAM_BOUNCE": 0, - "BODY_PARAM_FRICTION": 1, - "BODY_PARAM_GRAVITY_SCALE": 4, - "BODY_PARAM_INERTIA": 3, - "BODY_PARAM_LINEAR_DAMP": 5, - "BODY_PARAM_MASS": 2, - "BODY_PARAM_MAX": 7, - "BODY_STATE_ANGULAR_VELOCITY": 2, - "BODY_STATE_CAN_SLEEP": 4, - "BODY_STATE_LINEAR_VELOCITY": 1, - "BODY_STATE_SLEEPING": 3, - "BODY_STATE_TRANSFORM": 0, - "CCD_MODE_CAST_RAY": 1, - "CCD_MODE_CAST_SHAPE": 2, - "CCD_MODE_DISABLED": 0, - "DAMPED_STRING_DAMPING": 2, - "DAMPED_STRING_REST_LENGTH": 0, - "DAMPED_STRING_STIFFNESS": 1, - "INFO_ACTIVE_OBJECTS": 0, - "INFO_COLLISION_PAIRS": 1, - "INFO_ISLAND_COUNT": 2, - "JOINT_DAMPED_SPRING": 2, - "JOINT_GROOVE": 1, - "JOINT_PARAM_BIAS": 0, - "JOINT_PARAM_MAX_BIAS": 1, - "JOINT_PARAM_MAX_FORCE": 2, - "JOINT_PIN": 0, - "SHAPE_CAPSULE": 5, - "SHAPE_CIRCLE": 3, - "SHAPE_CONCAVE_POLYGON": 7, - "SHAPE_CONVEX_POLYGON": 6, - "SHAPE_CUSTOM": 8, - "SHAPE_LINE": 0, - "SHAPE_RAY": 1, - "SHAPE_RECTANGLE": 4, - "SHAPE_SEGMENT": 2, - "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD": 4, - "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD": 3, - "SPACE_PARAM_BODY_MAX_ALLOWED_PENETRATION": 2, - "SPACE_PARAM_BODY_TIME_TO_SLEEP": 5, - "SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS": 6, - "SPACE_PARAM_CONTACT_MAX_SEPARATION": 1, - "SPACE_PARAM_CONTACT_RECYCLE_RADIUS": 0 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "area_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": true, - "default_value": "((1, 0), (0, 1), (0, 0))" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "area_attach_canvas_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_attach_object_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_clear_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "area_get_canvas_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_object_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_param", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_shape", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_shape_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_space", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_space_override_mode", - "return_type": "enum.Physics2DServer::AreaSpaceOverrideMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_remove_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_area_monitor_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_monitor_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_monitorable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "monitorable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_shape_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_shape_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_space_override_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_central_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_collision_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "excepted_body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": true, - "default_value": "((1, 0), (0, 1), (0, 0))" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "body_add_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "torque", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_apply_torque_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_attach_canvas_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_attach_object_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_clear_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "body_get_canvas_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_continuous_collision_detection_mode", - "return_type": "enum.Physics2DServer::CCDMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_direct_state", - "return_type": "Physics2DDirectBodyState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_max_contacts_reported", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_mode", - "return_type": "enum.Physics2DServer::BodyMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_object_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_space", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_state", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "state", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_is_omitting_force_integration", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_remove_collision_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "excepted_body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_remove_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_axis_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_continuous_collision_detection_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_force_integration_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "body_set_max_contacts_reported", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_omit_force_integration", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape_as_one_way_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape_metadata", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "metadata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "state", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_test_motion", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": true, - "default_value": "0.08" - }, - { - "name": "result", - "type": "Physics2DTestMotionResult", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "exclude_raycast_shapes", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "capsule_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "circle_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "concave_polygon_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "convex_polygon_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "damped_spring_joint_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anchor_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anchor_b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_a", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_b", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "damped_string_joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "damped_string_joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "free_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_process_info", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "process_info", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "groove_joint_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "groove1_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "groove2_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "anchor_b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_a", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "body_b", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_get_type", - "return_type": "enum.Physics2DServer::JointType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "line_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "pin_joint_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anchor", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_a", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_b", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "ray_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rectangle_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "segment_shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_iterations", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "iterations", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_get_data", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_get_type", - "return_type": "enum.Physics2DServer::ShapeType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "space_get_direct_state", - "return_type": "Physics2DDirectSpaceState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ProcessInfo", - "values": { - "INFO_ACTIVE_OBJECTS": 0, - "INFO_COLLISION_PAIRS": 1, - "INFO_ISLAND_COUNT": 2 - } - }, - { - "name": "AreaBodyStatus", - "values": { - "AREA_BODY_ADDED": 0, - "AREA_BODY_REMOVED": 1 - } - }, - { - "name": "DampedStringParam", - "values": { - "DAMPED_STRING_REST_LENGTH": 0, - "DAMPED_STRING_STIFFNESS": 1, - "DAMPED_STRING_DAMPING": 2 - } - }, - { - "name": "BodyMode", - "values": { - "BODY_MODE_STATIC": 0, - "BODY_MODE_KINEMATIC": 1, - "BODY_MODE_RIGID": 2, - "BODY_MODE_CHARACTER": 3 - } - }, - { - "name": "ShapeType", - "values": { - "SHAPE_LINE": 0, - "SHAPE_RAY": 1, - "SHAPE_SEGMENT": 2, - "SHAPE_CIRCLE": 3, - "SHAPE_RECTANGLE": 4, - "SHAPE_CAPSULE": 5, - "SHAPE_CONVEX_POLYGON": 6, - "SHAPE_CONCAVE_POLYGON": 7, - "SHAPE_CUSTOM": 8 - } - }, - { - "name": "JointParam", - "values": { - "JOINT_PARAM_BIAS": 0, - "JOINT_PARAM_MAX_BIAS": 1, - "JOINT_PARAM_MAX_FORCE": 2 - } - }, - { - "name": "SpaceParameter", - "values": { - "SPACE_PARAM_CONTACT_RECYCLE_RADIUS": 0, - "SPACE_PARAM_CONTACT_MAX_SEPARATION": 1, - "SPACE_PARAM_BODY_MAX_ALLOWED_PENETRATION": 2, - "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD": 3, - "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD": 4, - "SPACE_PARAM_BODY_TIME_TO_SLEEP": 5, - "SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS": 6 - } - }, - { - "name": "JointType", - "values": { - "JOINT_PIN": 0, - "JOINT_GROOVE": 1, - "JOINT_DAMPED_SPRING": 2 - } - }, - { - "name": "CCDMode", - "values": { - "CCD_MODE_DISABLED": 0, - "CCD_MODE_CAST_RAY": 1, - "CCD_MODE_CAST_SHAPE": 2 - } - }, - { - "name": "BodyState", - "values": { - "BODY_STATE_TRANSFORM": 0, - "BODY_STATE_LINEAR_VELOCITY": 1, - "BODY_STATE_ANGULAR_VELOCITY": 2, - "BODY_STATE_SLEEPING": 3, - "BODY_STATE_CAN_SLEEP": 4 - } - }, - { - "name": "BodyParameter", - "values": { - "BODY_PARAM_BOUNCE": 0, - "BODY_PARAM_FRICTION": 1, - "BODY_PARAM_MASS": 2, - "BODY_PARAM_INERTIA": 3, - "BODY_PARAM_GRAVITY_SCALE": 4, - "BODY_PARAM_LINEAR_DAMP": 5, - "BODY_PARAM_ANGULAR_DAMP": 6, - "BODY_PARAM_MAX": 7 - } - }, - { - "name": "AreaSpaceOverrideMode", - "values": { - "AREA_SPACE_OVERRIDE_DISABLED": 0, - "AREA_SPACE_OVERRIDE_COMBINE": 1, - "AREA_SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "AREA_SPACE_OVERRIDE_REPLACE": 3, - "AREA_SPACE_OVERRIDE_REPLACE_COMBINE": 4 - } - }, - { - "name": "AreaParameter", - "values": { - "AREA_PARAM_GRAVITY": 0, - "AREA_PARAM_GRAVITY_VECTOR": 1, - "AREA_PARAM_GRAVITY_IS_POINT": 2, - "AREA_PARAM_GRAVITY_DISTANCE_SCALE": 3, - "AREA_PARAM_GRAVITY_POINT_ATTENUATION": 4, - "AREA_PARAM_LINEAR_DAMP": 5, - "AREA_PARAM_ANGULAR_DAMP": 6, - "AREA_PARAM_PRIORITY": 7 - } - } - ] - }, - { - "name": "Physics2DServerSW", - "base_class": "Physics2DServer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Physics2DShapeQueryParameters", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "collide_with_areas", - "type": "bool", - "getter": "is_collide_with_areas_enabled", - "setter": "set_collide_with_areas", - "index": -1 - }, - { - "name": "collide_with_bodies", - "type": "bool", - "getter": "is_collide_with_bodies_enabled", - "setter": "set_collide_with_bodies", - "index": -1 - }, - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "exclude", - "type": "Array", - "getter": "get_exclude", - "setter": "set_exclude", - "index": -1 - }, - { - "name": "margin", - "type": "float", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - }, - { - "name": "motion", - "type": "Vector2", - "getter": "get_motion", - "setter": "set_motion", - "index": -1 - }, - { - "name": "shape_rid", - "type": "RID", - "getter": "get_shape_rid", - "setter": "set_shape_rid", - "index": -1 - }, - { - "name": "transform", - "type": "Transform2D", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exclude", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_areas_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_collide_with_areas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collide_with_bodies", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "collision_layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exclude", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exclude", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_motion", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Physics2DTestMotionResult", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "collider", - "type": "Object", - "getter": "get_collider", - "setter": "", - "index": -1 - }, - { - "name": "collider_id", - "type": "int", - "getter": "get_collider_id", - "setter": "", - "index": -1 - }, - { - "name": "collider_rid", - "type": "RID", - "getter": "get_collider_rid", - "setter": "", - "index": -1 - }, - { - "name": "collider_shape", - "type": "int", - "getter": "get_collider_shape", - "setter": "", - "index": -1 - }, - { - "name": "collider_velocity", - "type": "Vector2", - "getter": "get_collider_velocity", - "setter": "", - "index": -1 - }, - { - "name": "collision_depth", - "type": "float", - "getter": "get_collision_depth", - "setter": "", - "index": -1 - }, - { - "name": "collision_normal", - "type": "Vector2", - "getter": "get_collision_normal", - "setter": "", - "index": -1 - }, - { - "name": "collision_point", - "type": "Vector2", - "getter": "get_collision_point", - "setter": "", - "index": -1 - }, - { - "name": "collision_safe_fraction", - "type": "float", - "getter": "get_collision_safe_fraction", - "setter": "", - "index": -1 - }, - { - "name": "collision_unsafe_fraction", - "type": "float", - "getter": "get_collision_unsafe_fraction", - "setter": "", - "index": -1 - }, - { - "name": "motion", - "type": "Vector2", - "getter": "get_motion", - "setter": "", - "index": -1 - }, - { - "name": "motion_remainder", - "type": "Vector2", - "getter": "get_motion_remainder", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_collider", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_velocity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_depth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_normal", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_point", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_safe_fraction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_unsafe_fraction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion_remainder", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsBody", - "base_class": "CollisionObject", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_layers", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_layers", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_collision_exception_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_exceptions", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_collision_exception_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsBody2D", - "base_class": "CollisionObject2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "layers", - "type": "int", - "getter": "_get_layers", - "setter": "_set_layers", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_layers", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_layers", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_collision_exception_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_exceptions", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_collision_exception_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsDirectBodyState", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "angular_velocity", - "type": "Vector3", - "getter": "get_angular_velocity", - "setter": "set_angular_velocity", - "index": -1 - }, - { - "name": "center_of_mass", - "type": "Vector3", - "getter": "get_center_of_mass", - "setter": "", - "index": -1 - }, - { - "name": "inverse_inertia", - "type": "Vector3", - "getter": "get_inverse_inertia", - "setter": "", - "index": -1 - }, - { - "name": "inverse_mass", - "type": "float", - "getter": "get_inverse_mass", - "setter": "", - "index": -1 - }, - { - "name": "linear_velocity", - "type": "Vector3", - "getter": "get_linear_velocity", - "setter": "set_linear_velocity", - "index": -1 - }, - { - "name": "principal_inertia_axes", - "type": "Basis", - "getter": "get_principal_inertia_axes", - "setter": "", - "index": -1 - }, - { - "name": "sleeping", - "type": "bool", - "getter": "is_sleeping", - "setter": "set_sleep_state", - "index": -1 - }, - { - "name": "step", - "type": "float", - "getter": "get_step", - "setter": "", - "index": -1 - }, - { - "name": "total_angular_damp", - "type": "float", - "getter": "get_total_angular_damp", - "setter": "", - "index": -1 - }, - { - "name": "total_gravity", - "type": "Vector3", - "getter": "get_total_gravity", - "setter": "", - "index": -1 - }, - { - "name": "total_linear_damp", - "type": "float", - "getter": "get_total_linear_damp", - "setter": "", - "index": -1 - }, - { - "name": "transform", - "type": "Transform2D", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_central_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "torque", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "j", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "j", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_torque_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "j", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angular_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_center_of_mass", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_contact_collider", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_object", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_collider_velocity_at_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_contact_impulse", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_local_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_local_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_contact_local_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "contact_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_inverse_inertia", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inverse_mass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_principal_inertia_axes", - "return_type": "Basis", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space_state", - "return_type": "PhysicsDirectSpaceState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_angular_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_gravity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_linear_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_velocity_at_local_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "integrate_forces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_sleeping", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_angular_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sleep_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsDirectSpaceState", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "cast_motion", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "PhysicsShapeQueryParameters", - "has_default_value": false, - "default_value": "" - }, - { - "name": "motion", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "collide_shape", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "PhysicsShapeQueryParameters", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - } - ] - }, - { - "name": "get_rest_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "PhysicsShapeQueryParameters", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "intersect_point", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "collision_layer", - "type": "int", - "has_default_value": true, - "default_value": "2147483647" - }, - { - "name": "collide_with_bodies", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "collide_with_areas", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "intersect_ray", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "collision_mask", - "type": "int", - "has_default_value": true, - "default_value": "2147483647" - }, - { - "name": "collide_with_bodies", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "collide_with_areas", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "intersect_shape", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "PhysicsShapeQueryParameters", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_results", - "type": "int", - "has_default_value": true, - "default_value": "32" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsMaterial", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "absorbent", - "type": "bool", - "getter": "is_absorbent", - "setter": "set_absorbent", - "index": -1 - }, - { - "name": "bounce", - "type": "float", - "getter": "get_bounce", - "setter": "set_bounce", - "index": -1 - }, - { - "name": "friction", - "type": "float", - "getter": "get_friction", - "setter": "set_friction", - "index": -1 - }, - { - "name": "rough", - "type": "bool", - "getter": "is_rough", - "setter": "set_rough", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_absorbent", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_rough", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_absorbent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "absorbent", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "friction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rough", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rough", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "PhysicsServer", - "instanciable": false, - "is_reference": false, - "constants": { - "AREA_BODY_ADDED": 0, - "AREA_BODY_REMOVED": 1, - "AREA_PARAM_ANGULAR_DAMP": 6, - "AREA_PARAM_GRAVITY": 0, - "AREA_PARAM_GRAVITY_DISTANCE_SCALE": 3, - "AREA_PARAM_GRAVITY_IS_POINT": 2, - "AREA_PARAM_GRAVITY_POINT_ATTENUATION": 4, - "AREA_PARAM_GRAVITY_VECTOR": 1, - "AREA_PARAM_LINEAR_DAMP": 5, - "AREA_PARAM_PRIORITY": 7, - "AREA_SPACE_OVERRIDE_COMBINE": 1, - "AREA_SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "AREA_SPACE_OVERRIDE_DISABLED": 0, - "AREA_SPACE_OVERRIDE_REPLACE": 3, - "AREA_SPACE_OVERRIDE_REPLACE_COMBINE": 4, - "BODY_AXIS_ANGULAR_X": 8, - "BODY_AXIS_ANGULAR_Y": 16, - "BODY_AXIS_ANGULAR_Z": 32, - "BODY_AXIS_LINEAR_X": 1, - "BODY_AXIS_LINEAR_Y": 2, - "BODY_AXIS_LINEAR_Z": 4, - "BODY_MODE_CHARACTER": 3, - "BODY_MODE_KINEMATIC": 1, - "BODY_MODE_RIGID": 2, - "BODY_MODE_STATIC": 0, - "BODY_PARAM_ANGULAR_DAMP": 5, - "BODY_PARAM_BOUNCE": 0, - "BODY_PARAM_FRICTION": 1, - "BODY_PARAM_GRAVITY_SCALE": 3, - "BODY_PARAM_LINEAR_DAMP": 4, - "BODY_PARAM_MASS": 2, - "BODY_PARAM_MAX": 6, - "BODY_STATE_ANGULAR_VELOCITY": 2, - "BODY_STATE_CAN_SLEEP": 4, - "BODY_STATE_LINEAR_VELOCITY": 1, - "BODY_STATE_SLEEPING": 3, - "BODY_STATE_TRANSFORM": 0, - "CONE_TWIST_JOINT_BIAS": 2, - "CONE_TWIST_JOINT_RELAXATION": 4, - "CONE_TWIST_JOINT_SOFTNESS": 3, - "CONE_TWIST_JOINT_SWING_SPAN": 0, - "CONE_TWIST_JOINT_TWIST_SPAN": 1, - "G6DOF_JOINT_ANGULAR_DAMPING": 13, - "G6DOF_JOINT_ANGULAR_ERP": 16, - "G6DOF_JOINT_ANGULAR_FORCE_LIMIT": 15, - "G6DOF_JOINT_ANGULAR_LIMIT_SOFTNESS": 12, - "G6DOF_JOINT_ANGULAR_LOWER_LIMIT": 10, - "G6DOF_JOINT_ANGULAR_MOTOR_FORCE_LIMIT": 18, - "G6DOF_JOINT_ANGULAR_MOTOR_TARGET_VELOCITY": 17, - "G6DOF_JOINT_ANGULAR_RESTITUTION": 14, - "G6DOF_JOINT_ANGULAR_UPPER_LIMIT": 11, - "G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT": 1, - "G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT": 0, - "G6DOF_JOINT_FLAG_ENABLE_LINEAR_MOTOR": 5, - "G6DOF_JOINT_FLAG_ENABLE_MOTOR": 4, - "G6DOF_JOINT_LINEAR_DAMPING": 4, - "G6DOF_JOINT_LINEAR_LIMIT_SOFTNESS": 2, - "G6DOF_JOINT_LINEAR_LOWER_LIMIT": 0, - "G6DOF_JOINT_LINEAR_MOTOR_FORCE_LIMIT": 6, - "G6DOF_JOINT_LINEAR_MOTOR_TARGET_VELOCITY": 5, - "G6DOF_JOINT_LINEAR_RESTITUTION": 3, - "G6DOF_JOINT_LINEAR_UPPER_LIMIT": 1, - "HINGE_JOINT_BIAS": 0, - "HINGE_JOINT_FLAG_ENABLE_MOTOR": 1, - "HINGE_JOINT_FLAG_USE_LIMIT": 0, - "HINGE_JOINT_LIMIT_BIAS": 3, - "HINGE_JOINT_LIMIT_LOWER": 2, - "HINGE_JOINT_LIMIT_RELAXATION": 5, - "HINGE_JOINT_LIMIT_SOFTNESS": 4, - "HINGE_JOINT_LIMIT_UPPER": 1, - "HINGE_JOINT_MOTOR_MAX_IMPULSE": 7, - "HINGE_JOINT_MOTOR_TARGET_VELOCITY": 6, - "INFO_ACTIVE_OBJECTS": 0, - "INFO_COLLISION_PAIRS": 1, - "INFO_ISLAND_COUNT": 2, - "JOINT_6DOF": 4, - "JOINT_CONE_TWIST": 3, - "JOINT_HINGE": 1, - "JOINT_PIN": 0, - "JOINT_SLIDER": 2, - "PIN_JOINT_BIAS": 0, - "PIN_JOINT_DAMPING": 1, - "PIN_JOINT_IMPULSE_CLAMP": 2, - "SHAPE_BOX": 3, - "SHAPE_CAPSULE": 4, - "SHAPE_CONCAVE_POLYGON": 7, - "SHAPE_CONVEX_POLYGON": 6, - "SHAPE_CUSTOM": 9, - "SHAPE_CYLINDER": 5, - "SHAPE_HEIGHTMAP": 8, - "SHAPE_PLANE": 0, - "SHAPE_RAY": 1, - "SHAPE_SPHERE": 2, - "SLIDER_JOINT_ANGULAR_LIMIT_DAMPING": 15, - "SLIDER_JOINT_ANGULAR_LIMIT_LOWER": 12, - "SLIDER_JOINT_ANGULAR_LIMIT_RESTITUTION": 14, - "SLIDER_JOINT_ANGULAR_LIMIT_SOFTNESS": 13, - "SLIDER_JOINT_ANGULAR_LIMIT_UPPER": 11, - "SLIDER_JOINT_ANGULAR_MOTION_DAMPING": 18, - "SLIDER_JOINT_ANGULAR_MOTION_RESTITUTION": 17, - "SLIDER_JOINT_ANGULAR_MOTION_SOFTNESS": 16, - "SLIDER_JOINT_ANGULAR_ORTHOGONAL_DAMPING": 21, - "SLIDER_JOINT_ANGULAR_ORTHOGONAL_RESTITUTION": 20, - "SLIDER_JOINT_ANGULAR_ORTHOGONAL_SOFTNESS": 19, - "SLIDER_JOINT_LINEAR_LIMIT_DAMPING": 4, - "SLIDER_JOINT_LINEAR_LIMIT_LOWER": 1, - "SLIDER_JOINT_LINEAR_LIMIT_RESTITUTION": 3, - "SLIDER_JOINT_LINEAR_LIMIT_SOFTNESS": 2, - "SLIDER_JOINT_LINEAR_LIMIT_UPPER": 0, - "SLIDER_JOINT_LINEAR_MOTION_DAMPING": 7, - "SLIDER_JOINT_LINEAR_MOTION_RESTITUTION": 6, - "SLIDER_JOINT_LINEAR_MOTION_SOFTNESS": 5, - "SLIDER_JOINT_LINEAR_ORTHOGONAL_DAMPING": 10, - "SLIDER_JOINT_LINEAR_ORTHOGONAL_RESTITUTION": 9, - "SLIDER_JOINT_LINEAR_ORTHOGONAL_SOFTNESS": 8, - "SLIDER_JOINT_MAX": 22, - "SPACE_PARAM_BODY_ANGULAR_VELOCITY_DAMP_RATIO": 6, - "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD": 4, - "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD": 3, - "SPACE_PARAM_BODY_MAX_ALLOWED_PENETRATION": 2, - "SPACE_PARAM_BODY_TIME_TO_SLEEP": 5, - "SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS": 7, - "SPACE_PARAM_CONTACT_MAX_SEPARATION": 1, - "SPACE_PARAM_CONTACT_RECYCLE_RADIUS": 0 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "area_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": true, - "default_value": "1, 0, 0, 0, 1, 0, 0, 0, 1 - 0, 0, 0" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "area_attach_object_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_clear_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "area_get_object_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_param", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_shape", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_shape_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_space", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_space_override_mode", - "return_type": "enum.PhysicsServer::AreaSpaceOverrideMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_is_ray_pickable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_remove_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_area_monitor_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_monitor_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_monitorable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "monitorable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_ray_pickable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_shape_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_shape_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_space_override_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "area_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "area", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_central_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_collision_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "excepted_body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": true, - "default_value": "1, 0, 0, 0, 1, 0, 0, 0, 1 - 0, 0, 0" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "body_add_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "torque", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_apply_torque_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_attach_object_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_clear_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "init_sleeping", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "body_get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_direct_state", - "return_type": "PhysicsDirectBodyState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_kinematic_safe_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_max_contacts_reported", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_mode", - "return_type": "enum.PhysicsServer::BodyMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_object_instance_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_shape_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_space", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_get_state", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "state", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_is_axis_locked", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_is_continuous_collision_detection_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_is_omitting_force_integration", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_is_ray_pickable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_remove_collision_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "excepted_body", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_remove_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_axis_lock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lock", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_axis_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_enable_continuous_collision_detection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_force_integration_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "receiver", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "body_set_kinematic_safe_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_max_contacts_reported", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_omit_force_integration", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_ray_pickable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_shape_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_space", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_set_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "state", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_test_motion", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "motion", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "result", - "type": "PhysicsTestMotionResult", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "exclude_raycast_shapes", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "exclude", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "cone_twist_joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cone_twist_joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "free_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generic_6dof_joint_get_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generic_6dof_joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generic_6dof_joint_set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "generic_6dof_joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_process_info", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "process_info", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "hinge_joint_get_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "hinge_joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "hinge_joint_set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "hinge_joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_create_cone_twist", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body_A", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ref_A", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_B", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ref_B", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_create_generic_6dof", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body_A", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ref_A", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_B", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ref_B", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_create_hinge", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body_A", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hinge_A", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_B", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hinge_B", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_create_pin", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body_A", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_A", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_B", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_B", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_create_slider", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body_A", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ref_A", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_B", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_ref_B", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_get_solver_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_get_type", - "return_type": "enum.PhysicsServer::JointType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "joint_set_solver_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pin_joint_get_local_a", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pin_joint_get_local_b", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pin_joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pin_joint_set_local_a", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_A", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pin_joint_set_local_b", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_B", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pin_joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_iterations", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "iterations", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_get_data", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_get_type", - "return_type": "enum.PhysicsServer::ShapeType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shape_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "slider_joint_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "slider_joint_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "joint", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "space_get_direct_state", - "return_type": "PhysicsDirectSpaceState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "space_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "space", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BodyAxis", - "values": { - "BODY_AXIS_LINEAR_X": 1, - "BODY_AXIS_LINEAR_Y": 2, - "BODY_AXIS_LINEAR_Z": 4, - "BODY_AXIS_ANGULAR_X": 8, - "BODY_AXIS_ANGULAR_Y": 16, - "BODY_AXIS_ANGULAR_Z": 32 - } - }, - { - "name": "ProcessInfo", - "values": { - "INFO_ACTIVE_OBJECTS": 0, - "INFO_COLLISION_PAIRS": 1, - "INFO_ISLAND_COUNT": 2 - } - }, - { - "name": "AreaBodyStatus", - "values": { - "AREA_BODY_ADDED": 0, - "AREA_BODY_REMOVED": 1 - } - }, - { - "name": "BodyMode", - "values": { - "BODY_MODE_STATIC": 0, - "BODY_MODE_KINEMATIC": 1, - "BODY_MODE_RIGID": 2, - "BODY_MODE_CHARACTER": 3 - } - }, - { - "name": "ShapeType", - "values": { - "SHAPE_PLANE": 0, - "SHAPE_RAY": 1, - "SHAPE_SPHERE": 2, - "SHAPE_BOX": 3, - "SHAPE_CAPSULE": 4, - "SHAPE_CYLINDER": 5, - "SHAPE_CONVEX_POLYGON": 6, - "SHAPE_CONCAVE_POLYGON": 7, - "SHAPE_HEIGHTMAP": 8, - "SHAPE_CUSTOM": 9 - } - }, - { - "name": "PinJointParam", - "values": { - "PIN_JOINT_BIAS": 0, - "PIN_JOINT_DAMPING": 1, - "PIN_JOINT_IMPULSE_CLAMP": 2 - } - }, - { - "name": "SpaceParameter", - "values": { - "SPACE_PARAM_CONTACT_RECYCLE_RADIUS": 0, - "SPACE_PARAM_CONTACT_MAX_SEPARATION": 1, - "SPACE_PARAM_BODY_MAX_ALLOWED_PENETRATION": 2, - "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD": 3, - "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD": 4, - "SPACE_PARAM_BODY_TIME_TO_SLEEP": 5, - "SPACE_PARAM_BODY_ANGULAR_VELOCITY_DAMP_RATIO": 6, - "SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS": 7 - } - }, - { - "name": "ConeTwistJointParam", - "values": { - "CONE_TWIST_JOINT_SWING_SPAN": 0, - "CONE_TWIST_JOINT_TWIST_SPAN": 1, - "CONE_TWIST_JOINT_BIAS": 2, - "CONE_TWIST_JOINT_SOFTNESS": 3, - "CONE_TWIST_JOINT_RELAXATION": 4 - } - }, - { - "name": "JointType", - "values": { - "JOINT_PIN": 0, - "JOINT_HINGE": 1, - "JOINT_SLIDER": 2, - "JOINT_CONE_TWIST": 3, - "JOINT_6DOF": 4 - } - }, - { - "name": "BodyState", - "values": { - "BODY_STATE_TRANSFORM": 0, - "BODY_STATE_LINEAR_VELOCITY": 1, - "BODY_STATE_ANGULAR_VELOCITY": 2, - "BODY_STATE_SLEEPING": 3, - "BODY_STATE_CAN_SLEEP": 4 - } - }, - { - "name": "BodyParameter", - "values": { - "BODY_PARAM_BOUNCE": 0, - "BODY_PARAM_FRICTION": 1, - "BODY_PARAM_MASS": 2, - "BODY_PARAM_GRAVITY_SCALE": 3, - "BODY_PARAM_LINEAR_DAMP": 4, - "BODY_PARAM_ANGULAR_DAMP": 5, - "BODY_PARAM_MAX": 6 - } - }, - { - "name": "G6DOFJointAxisParam", - "values": { - "G6DOF_JOINT_LINEAR_LOWER_LIMIT": 0, - "G6DOF_JOINT_LINEAR_UPPER_LIMIT": 1, - "G6DOF_JOINT_LINEAR_LIMIT_SOFTNESS": 2, - "G6DOF_JOINT_LINEAR_RESTITUTION": 3, - "G6DOF_JOINT_LINEAR_DAMPING": 4, - "G6DOF_JOINT_LINEAR_MOTOR_TARGET_VELOCITY": 5, - "G6DOF_JOINT_LINEAR_MOTOR_FORCE_LIMIT": 6, - "G6DOF_JOINT_ANGULAR_LOWER_LIMIT": 10, - "G6DOF_JOINT_ANGULAR_UPPER_LIMIT": 11, - "G6DOF_JOINT_ANGULAR_LIMIT_SOFTNESS": 12, - "G6DOF_JOINT_ANGULAR_DAMPING": 13, - "G6DOF_JOINT_ANGULAR_RESTITUTION": 14, - "G6DOF_JOINT_ANGULAR_FORCE_LIMIT": 15, - "G6DOF_JOINT_ANGULAR_ERP": 16, - "G6DOF_JOINT_ANGULAR_MOTOR_TARGET_VELOCITY": 17, - "G6DOF_JOINT_ANGULAR_MOTOR_FORCE_LIMIT": 18 - } - }, - { - "name": "SliderJointParam", - "values": { - "SLIDER_JOINT_LINEAR_LIMIT_UPPER": 0, - "SLIDER_JOINT_LINEAR_LIMIT_LOWER": 1, - "SLIDER_JOINT_LINEAR_LIMIT_SOFTNESS": 2, - "SLIDER_JOINT_LINEAR_LIMIT_RESTITUTION": 3, - "SLIDER_JOINT_LINEAR_LIMIT_DAMPING": 4, - "SLIDER_JOINT_LINEAR_MOTION_SOFTNESS": 5, - "SLIDER_JOINT_LINEAR_MOTION_RESTITUTION": 6, - "SLIDER_JOINT_LINEAR_MOTION_DAMPING": 7, - "SLIDER_JOINT_LINEAR_ORTHOGONAL_SOFTNESS": 8, - "SLIDER_JOINT_LINEAR_ORTHOGONAL_RESTITUTION": 9, - "SLIDER_JOINT_LINEAR_ORTHOGONAL_DAMPING": 10, - "SLIDER_JOINT_ANGULAR_LIMIT_UPPER": 11, - "SLIDER_JOINT_ANGULAR_LIMIT_LOWER": 12, - "SLIDER_JOINT_ANGULAR_LIMIT_SOFTNESS": 13, - "SLIDER_JOINT_ANGULAR_LIMIT_RESTITUTION": 14, - "SLIDER_JOINT_ANGULAR_LIMIT_DAMPING": 15, - "SLIDER_JOINT_ANGULAR_MOTION_SOFTNESS": 16, - "SLIDER_JOINT_ANGULAR_MOTION_RESTITUTION": 17, - "SLIDER_JOINT_ANGULAR_MOTION_DAMPING": 18, - "SLIDER_JOINT_ANGULAR_ORTHOGONAL_SOFTNESS": 19, - "SLIDER_JOINT_ANGULAR_ORTHOGONAL_RESTITUTION": 20, - "SLIDER_JOINT_ANGULAR_ORTHOGONAL_DAMPING": 21, - "SLIDER_JOINT_MAX": 22 - } - }, - { - "name": "HingeJointParam", - "values": { - "HINGE_JOINT_BIAS": 0, - "HINGE_JOINT_LIMIT_UPPER": 1, - "HINGE_JOINT_LIMIT_LOWER": 2, - "HINGE_JOINT_LIMIT_BIAS": 3, - "HINGE_JOINT_LIMIT_SOFTNESS": 4, - "HINGE_JOINT_LIMIT_RELAXATION": 5, - "HINGE_JOINT_MOTOR_TARGET_VELOCITY": 6, - "HINGE_JOINT_MOTOR_MAX_IMPULSE": 7 - } - }, - { - "name": "G6DOFJointAxisFlag", - "values": { - "G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT": 0, - "G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT": 1, - "G6DOF_JOINT_FLAG_ENABLE_MOTOR": 4, - "G6DOF_JOINT_FLAG_ENABLE_LINEAR_MOTOR": 5 - } - }, - { - "name": "HingeJointFlag", - "values": { - "HINGE_JOINT_FLAG_USE_LIMIT": 0, - "HINGE_JOINT_FLAG_ENABLE_MOTOR": 1 - } - }, - { - "name": "AreaSpaceOverrideMode", - "values": { - "AREA_SPACE_OVERRIDE_DISABLED": 0, - "AREA_SPACE_OVERRIDE_COMBINE": 1, - "AREA_SPACE_OVERRIDE_COMBINE_REPLACE": 2, - "AREA_SPACE_OVERRIDE_REPLACE": 3, - "AREA_SPACE_OVERRIDE_REPLACE_COMBINE": 4 - } - }, - { - "name": "AreaParameter", - "values": { - "AREA_PARAM_GRAVITY": 0, - "AREA_PARAM_GRAVITY_VECTOR": 1, - "AREA_PARAM_GRAVITY_IS_POINT": 2, - "AREA_PARAM_GRAVITY_DISTANCE_SCALE": 3, - "AREA_PARAM_GRAVITY_POINT_ATTENUATION": 4, - "AREA_PARAM_LINEAR_DAMP": 5, - "AREA_PARAM_ANGULAR_DAMP": 6, - "AREA_PARAM_PRIORITY": 7 - } - } - ] - }, - { - "name": "PhysicsShapeQueryParameters", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "collide_with_areas", - "type": "bool", - "getter": "is_collide_with_areas_enabled", - "setter": "set_collide_with_areas", - "index": -1 - }, - { - "name": "collide_with_bodies", - "type": "bool", - "getter": "is_collide_with_bodies_enabled", - "setter": "set_collide_with_bodies", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "exclude", - "type": "Array", - "getter": "get_exclude", - "setter": "set_exclude", - "index": -1 - }, - { - "name": "margin", - "type": "float", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - }, - { - "name": "shape_rid", - "type": "RID", - "getter": "get_shape_rid", - "setter": "set_shape_rid", - "index": -1 - }, - { - "name": "transform", - "type": "Transform", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exclude", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_areas_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_collide_with_areas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collide_with_bodies", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exclude", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exclude", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PhysicsTestMotionResult", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "collider", - "type": "Object", - "getter": "get_collider", - "setter": "", - "index": -1 - }, - { - "name": "collider_id", - "type": "int", - "getter": "get_collider_id", - "setter": "", - "index": -1 - }, - { - "name": "collider_rid", - "type": "RID", - "getter": "get_collider_rid", - "setter": "", - "index": -1 - }, - { - "name": "collider_shape", - "type": "int", - "getter": "get_collider_shape", - "setter": "", - "index": -1 - }, - { - "name": "collider_velocity", - "type": "Vector3", - "getter": "get_collider_velocity", - "setter": "", - "index": -1 - }, - { - "name": "collision_depth", - "type": "float", - "getter": "get_collision_depth", - "setter": "", - "index": -1 - }, - { - "name": "collision_normal", - "type": "Vector3", - "getter": "get_collision_normal", - "setter": "", - "index": -1 - }, - { - "name": "collision_point", - "type": "Vector3", - "getter": "get_collision_point", - "setter": "", - "index": -1 - }, - { - "name": "collision_safe_fraction", - "type": "float", - "getter": "get_collision_safe_fraction", - "setter": "", - "index": -1 - }, - { - "name": "collision_unsafe_fraction", - "type": "float", - "getter": "get_collision_unsafe_fraction", - "setter": "", - "index": -1 - }, - { - "name": "motion", - "type": "Vector3", - "getter": "get_motion", - "setter": "", - "index": -1 - }, - { - "name": "motion_remainder", - "type": "Vector3", - "getter": "get_motion_remainder", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_collider", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_depth", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_point", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_safe_fraction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_unsafe_fraction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_motion_remainder", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "PinJoint", - "base_class": "Joint", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "PARAM_BIAS": 0, - "PARAM_DAMPING": 1, - "PARAM_IMPULSE_CLAMP": 2 - }, - "properties": [ - { - "name": "params/bias", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - }, - { - "name": "params/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 1 - }, - { - "name": "params/impulse_clamp", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Param", - "values": { - "PARAM_BIAS": 0, - "PARAM_DAMPING": 1, - "PARAM_IMPULSE_CLAMP": 2 - } - } - ] - }, - { - "name": "PinJoint2D", - "base_class": "Joint2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "softness", - "type": "float", - "getter": "get_softness", - "setter": "set_softness", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_softness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_softness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "softness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PlaneMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "center_offset", - "type": "Vector3", - "getter": "get_center_offset", - "setter": "set_center_offset", - "index": -1 - }, - { - "name": "size", - "type": "Vector2", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "subdivide_depth", - "type": "int", - "getter": "get_subdivide_depth", - "setter": "set_subdivide_depth", - "index": -1 - }, - { - "name": "subdivide_width", - "type": "int", - "getter": "get_subdivide_width", - "setter": "set_subdivide_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_center_offset", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_depth", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_center_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subdivide", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subdivide", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PlaneShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "plane", - "type": "Plane", - "getter": "get_plane", - "setter": "set_plane", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_plane", - "return_type": "Plane", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_plane", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "plane", - "type": "Plane", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PluginScript", - "base_class": "Script", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "new", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "PointMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Polygon2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "antialiased", - "type": "bool", - "getter": "get_antialiased", - "setter": "set_antialiased", - "index": -1 - }, - { - "name": "bones", - "type": "Array", - "getter": "_get_bones", - "setter": "_set_bones", - "index": -1 - }, - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "internal_vertex_count", - "type": "int", - "getter": "get_internal_vertex_count", - "setter": "set_internal_vertex_count", - "index": -1 - }, - { - "name": "invert_border", - "type": "float", - "getter": "get_invert_border", - "setter": "set_invert_border", - "index": -1 - }, - { - "name": "invert_enable", - "type": "bool", - "getter": "get_invert", - "setter": "set_invert", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "getter": "get_polygon", - "setter": "set_polygon", - "index": -1 - }, - { - "name": "polygons", - "type": "Array", - "getter": "get_polygons", - "setter": "set_polygons", - "index": -1 - }, - { - "name": "skeleton", - "type": "NodePath", - "getter": "get_skeleton", - "setter": "set_skeleton", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "texture_offset", - "type": "Vector2", - "getter": "get_texture_offset", - "setter": "set_texture_offset", - "index": -1 - }, - { - "name": "texture_rotation", - "type": "float", - "getter": "get_texture_rotation", - "setter": "set_texture_rotation", - "index": -1 - }, - { - "name": "texture_rotation_degrees", - "type": "float", - "getter": "get_texture_rotation_degrees", - "setter": "set_texture_rotation_degrees", - "index": -1 - }, - { - "name": "texture_scale", - "type": "Vector2", - "getter": "get_texture_scale", - "setter": "set_texture_scale", - "index": -1 - }, - { - "name": "uv", - "type": "PoolVector2Array", - "getter": "get_uv", - "setter": "set_uv", - "index": -1 - }, - { - "name": "vertex_colors", - "type": "PoolColorArray", - "getter": "get_vertex_colors", - "setter": "set_vertex_colors", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_bones", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_bones", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bones", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_skeleton_bone_setup_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weights", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_bones", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "erase_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_antialiased", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bone_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bone_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_weights", - "return_type": "PoolRealArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_internal_vertex_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_invert", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_invert_border", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygon", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_polygons", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_rotation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_rotation_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_scale", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vertex_colors", - "return_type": "PoolColorArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_antialiased", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "antialiased", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_weights", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weights", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_internal_vertex_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "internal_vertex_count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_invert", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "invert", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_invert_border", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "invert_border", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_polygons", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygons", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_skeleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_rotation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_rotation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_scale", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uv", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertex_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vertex_colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PolygonPathFinder", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data", - "type": "Dictionary", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_path", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bounds", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_closest_point", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_intersections", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_point_penalty", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_point_inside", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_penalty", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "penalty", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "setup", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "connections", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Popup", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "NOTIFICATION_POPUP_HIDE": 81, - "NOTIFICATION_POST_POPUP": 80 - }, - "properties": [ - { - "name": "popup_exclusive", - "type": "bool", - "getter": "is_exclusive", - "setter": "set_exclusive", - "index": -1 - } - ], - "signals": [ - { - "name": "about_to_show", - "arguments": [ - ] - }, - { - "name": "popup_hide", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "is_exclusive", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "popup", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounds", - "type": "Rect2", - "has_default_value": true, - "default_value": "(0, 0, 0, 0)" - } - ] - }, - { - "name": "popup_centered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "popup_centered_clamped", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "fallback_ratio", - "type": "float", - "has_default_value": true, - "default_value": "0.75" - } - ] - }, - { - "name": "popup_centered_minsize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "minsize", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "popup_centered_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ratio", - "type": "float", - "has_default_value": true, - "default_value": "0.75" - } - ] - }, - { - "name": "set_as_minsize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_exclusive", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PopupDialog", - "base_class": "Popup", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "PopupMenu", - "base_class": "Popup", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "allow_search", - "type": "bool", - "getter": "get_allow_search", - "setter": "set_allow_search", - "index": -1 - }, - { - "name": "hide_on_checkable_item_selection", - "type": "bool", - "getter": "is_hide_on_checkable_item_selection", - "setter": "set_hide_on_checkable_item_selection", - "index": -1 - }, - { - "name": "hide_on_item_selection", - "type": "bool", - "getter": "is_hide_on_item_selection", - "setter": "set_hide_on_item_selection", - "index": -1 - }, - { - "name": "hide_on_state_item_selection", - "type": "bool", - "getter": "is_hide_on_state_item_selection", - "setter": "set_hide_on_state_item_selection", - "index": -1 - }, - { - "name": "items", - "type": "Array", - "getter": "_get_items", - "setter": "_set_items", - "index": -1 - }, - { - "name": "submenu_popup_delay", - "type": "float", - "getter": "get_submenu_popup_delay", - "setter": "set_submenu_popup_delay", - "index": -1 - } - ], - "signals": [ - { - "name": "id_focused", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "id_pressed", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "index_pressed", - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_get_items", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_items", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_submenu_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_check_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_check_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_icon_check_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_icon_check_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_icon_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_icon_radio_check_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_icon_radio_check_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_icon_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_multistate_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_states", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "default_state", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_radio_check_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "accel", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_radio_check_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_separator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "add_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_submenu_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "submenu", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_allow_search", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_accelerator", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_shortcut", - "return_type": "ShortCut", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_submenu", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_submenu_popup_delay", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_hide_on_checkable_item_selection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_hide_on_item_selection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_hide_on_state_item_selection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_hide_on_window_lose_focus", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_item_checkable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_checked", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_radio_checkable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_separator", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_item_shortcut_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_allow_search", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_on_checkable_item_selection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_on_item_selection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_on_state_item_selection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_on_window_lose_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_accelerator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "accel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_as_checkable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_as_radio_checkable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_as_separator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_checked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "checked", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_metadata", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "metadata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_multistate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "state", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shortcut", - "type": "ShortCut", - "has_default_value": false, - "default_value": "" - }, - { - "name": "global", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_item_shortcut_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_submenu", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "submenu", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_item_tooltip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tooltip", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_submenu_popup_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seconds", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "toggle_item_checked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "toggle_item_multistate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PopupPanel", - "base_class": "Popup", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Portal", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "linked_room", - "type": "NodePath", - "getter": "get_linked_room", - "setter": "set_linked_room", - "index": -1 - }, - { - "name": "points", - "type": "PoolVector2Array", - "getter": "get_points", - "setter": "set_points", - "index": -1 - }, - { - "name": "portal_active", - "type": "bool", - "getter": "get_portal_active", - "setter": "set_portal_active", - "index": -1 - }, - { - "name": "portal_margin", - "type": "float", - "getter": "get_portal_margin", - "setter": "set_portal_margin", - "index": -1 - }, - { - "name": "two_way", - "type": "bool", - "getter": "is_two_way", - "setter": "set_two_way", - "index": -1 - }, - { - "name": "use_default_margin", - "type": "bool", - "getter": "get_use_default_margin", - "setter": "set_use_default_margin", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_linked_room", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_points", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_portal_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_portal_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_default_margin", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_two_way", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_linked_room", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_room", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_portal_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_portal_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_two_way", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_two_way", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_default_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_use", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Position2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "gizmo_extents", - "type": "float", - "getter": "_get_gizmo_extents", - "setter": "_set_gizmo_extents", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_gizmo_extents", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_gizmo_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Position3D", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "PrimitiveMesh", - "base_class": "Mesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "custom_aabb", - "type": "AABB", - "getter": "get_custom_aabb", - "setter": "set_custom_aabb", - "index": -1 - }, - { - "name": "flip_faces", - "type": "bool", - "getter": "get_flip_faces", - "setter": "set_flip_faces", - "index": -1 - }, - { - "name": "material", - "type": "SpatialMaterial,ShaderMaterial", - "getter": "get_material", - "setter": "set_material", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_flip_faces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_material", - "return_type": "Material", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mesh_arrays", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_custom_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_faces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_faces", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "PrismMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "left_to_right", - "type": "float", - "getter": "get_left_to_right", - "setter": "set_left_to_right", - "index": -1 - }, - { - "name": "size", - "type": "Vector3", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "subdivide_depth", - "type": "int", - "getter": "get_subdivide_depth", - "setter": "set_subdivide_depth", - "index": -1 - }, - { - "name": "subdivide_height", - "type": "int", - "getter": "get_subdivide_height", - "setter": "set_subdivide_height", - "index": -1 - }, - { - "name": "subdivide_width", - "type": "int", - "getter": "get_subdivide_width", - "setter": "set_subdivide_width", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_left_to_right", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_depth", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subdivide_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_left_to_right", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "left_to_right", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subdivide_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ProceduralSky", - "base_class": "Sky", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "TEXTURE_SIZE_1024": 2, - "TEXTURE_SIZE_2048": 3, - "TEXTURE_SIZE_256": 0, - "TEXTURE_SIZE_4096": 4, - "TEXTURE_SIZE_512": 1, - "TEXTURE_SIZE_MAX": 5 - }, - "properties": [ - { - "name": "ground_bottom_color", - "type": "Color", - "getter": "get_ground_bottom_color", - "setter": "set_ground_bottom_color", - "index": -1 - }, - { - "name": "ground_curve", - "type": "float", - "getter": "get_ground_curve", - "setter": "set_ground_curve", - "index": -1 - }, - { - "name": "ground_energy", - "type": "float", - "getter": "get_ground_energy", - "setter": "set_ground_energy", - "index": -1 - }, - { - "name": "ground_horizon_color", - "type": "Color", - "getter": "get_ground_horizon_color", - "setter": "set_ground_horizon_color", - "index": -1 - }, - { - "name": "sky_curve", - "type": "float", - "getter": "get_sky_curve", - "setter": "set_sky_curve", - "index": -1 - }, - { - "name": "sky_energy", - "type": "float", - "getter": "get_sky_energy", - "setter": "set_sky_energy", - "index": -1 - }, - { - "name": "sky_horizon_color", - "type": "Color", - "getter": "get_sky_horizon_color", - "setter": "set_sky_horizon_color", - "index": -1 - }, - { - "name": "sky_top_color", - "type": "Color", - "getter": "get_sky_top_color", - "setter": "set_sky_top_color", - "index": -1 - }, - { - "name": "sun_angle_max", - "type": "float", - "getter": "get_sun_angle_max", - "setter": "set_sun_angle_max", - "index": -1 - }, - { - "name": "sun_angle_min", - "type": "float", - "getter": "get_sun_angle_min", - "setter": "set_sun_angle_min", - "index": -1 - }, - { - "name": "sun_color", - "type": "Color", - "getter": "get_sun_color", - "setter": "set_sun_color", - "index": -1 - }, - { - "name": "sun_curve", - "type": "float", - "getter": "get_sun_curve", - "setter": "set_sun_curve", - "index": -1 - }, - { - "name": "sun_energy", - "type": "float", - "getter": "get_sun_energy", - "setter": "set_sun_energy", - "index": -1 - }, - { - "name": "sun_latitude", - "type": "float", - "getter": "get_sun_latitude", - "setter": "set_sun_latitude", - "index": -1 - }, - { - "name": "sun_longitude", - "type": "float", - "getter": "get_sun_longitude", - "setter": "set_sun_longitude", - "index": -1 - }, - { - "name": "texture_size", - "type": "int", - "getter": "get_texture_size", - "setter": "set_texture_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_thread_done", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_sky", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ground_bottom_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ground_curve", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ground_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ground_horizon_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_curve", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_horizon_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sky_top_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_angle_max", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_angle_min", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_curve", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_latitude", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sun_longitude", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_size", - "return_type": "enum.ProceduralSky::TextureSize", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_ground_bottom_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ground_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ground_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ground_horizon_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_horizon_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sky_top_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_angle_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_angle_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_curve", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_latitude", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sun_longitude", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TextureSize", - "values": { - "TEXTURE_SIZE_256": 0, - "TEXTURE_SIZE_512": 1, - "TEXTURE_SIZE_1024": 2, - "TEXTURE_SIZE_2048": 3, - "TEXTURE_SIZE_4096": 4, - "TEXTURE_SIZE_MAX": 5 - } - } - ] - }, - { - "name": "ProgressBar", - "base_class": "Range", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "percent_visible", - "type": "bool", - "getter": "is_percent_visible", - "setter": "set_percent_visible", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_percent_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_percent_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ProjectSettings", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "ProjectSettings", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_property_info", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hint", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_order", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_setting", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "globalize_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_setting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load_resource_pack", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pack", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "replace_files", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "offset", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "localize_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_can_revert", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_get_revert", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "save_custom", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_initial_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_order", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_setting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ProximityGroup", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MODE_PROXY": 0, - "MODE_SIGNAL": 1 - }, - "properties": [ - { - "name": "dispatch_mode", - "type": "int", - "getter": "get_dispatch_mode", - "setter": "set_dispatch_mode", - "index": -1 - }, - { - "name": "grid_radius", - "type": "Vector3", - "getter": "get_grid_radius", - "setter": "set_grid_radius", - "index": -1 - }, - { - "name": "group_name", - "type": "String", - "getter": "get_group_name", - "setter": "set_group_name", - "index": -1 - } - ], - "signals": [ - { - "name": "broadcast", - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parameters", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_proximity_group_broadcast", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parameters", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "broadcast", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parameters", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_dispatch_mode", - "return_type": "enum.ProximityGroup::DispatchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_grid_radius", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_group_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_dispatch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_grid_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_group_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DispatchMode", - "values": { - "MODE_PROXY": 0, - "MODE_SIGNAL": 1 - } - } - ] - }, - { - "name": "ProxyTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "base", - "type": "Texture", - "getter": "get_base", - "setter": "set_base", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_base", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "QuadMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "center_offset", - "type": "Vector3", - "getter": "get_center_offset", - "setter": "set_center_offset", - "index": -1 - }, - { - "name": "size", - "type": "Vector2", - "getter": "get_size", - "setter": "set_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_center_offset", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_center_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "center_offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RandomNumberGenerator", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "seed", - "type": "int", - "getter": "get_seed", - "setter": "set_seed", - "index": -1 - }, - { - "name": "state", - "type": "int", - "getter": "get_state", - "setter": "set_state", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_seed", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_state", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "randf", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "randf_range", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "randfn", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mean", - "type": "float", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "deviation", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "randi", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "randi_range", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "randomize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_seed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "seed", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_state", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "state", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Range", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "allow_greater", - "type": "bool", - "getter": "is_greater_allowed", - "setter": "set_allow_greater", - "index": -1 - }, - { - "name": "allow_lesser", - "type": "bool", - "getter": "is_lesser_allowed", - "setter": "set_allow_lesser", - "index": -1 - }, - { - "name": "exp_edit", - "type": "bool", - "getter": "is_ratio_exp", - "setter": "set_exp_ratio", - "index": -1 - }, - { - "name": "max_value", - "type": "float", - "getter": "get_max", - "setter": "set_max", - "index": -1 - }, - { - "name": "min_value", - "type": "float", - "getter": "get_min", - "setter": "set_min", - "index": -1 - }, - { - "name": "page", - "type": "float", - "getter": "get_page", - "setter": "set_page", - "index": -1 - }, - { - "name": "ratio", - "type": "float", - "getter": "get_as_ratio", - "setter": "set_as_ratio", - "index": -1 - }, - { - "name": "rounded", - "type": "bool", - "getter": "is_using_rounded_values", - "setter": "set_use_rounded_values", - "index": -1 - }, - { - "name": "step", - "type": "float", - "getter": "get_step", - "setter": "set_step", - "index": -1 - }, - { - "name": "value", - "type": "float", - "getter": "get_value", - "setter": "set_value", - "index": -1 - } - ], - "signals": [ - { - "name": "changed", - "arguments": [ - ] - }, - { - "name": "value_changed", - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_as_ratio", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_page", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_value", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_greater_allowed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_lesser_allowed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ratio_exp", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_rounded_values", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_allow_greater", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_allow_lesser", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_as_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exp_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "maximum", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "minimum", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_page", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pagesize", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_step", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "step", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_rounded_values", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "share", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "with", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unshare", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "RayCast", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "cast_to", - "type": "Vector3", - "getter": "get_cast_to", - "setter": "set_cast_to", - "index": -1 - }, - { - "name": "collide_with_areas", - "type": "bool", - "getter": "is_collide_with_areas_enabled", - "setter": "set_collide_with_areas", - "index": -1 - }, - { - "name": "collide_with_bodies", - "type": "bool", - "getter": "is_collide_with_bodies_enabled", - "setter": "set_collide_with_bodies", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "debug_shape_custom_color", - "type": "Color", - "getter": "get_debug_shape_custom_color", - "setter": "set_debug_shape_custom_color", - "index": -1 - }, - { - "name": "debug_shape_thickness", - "type": "int", - "getter": "get_debug_shape_thickness", - "setter": "set_debug_shape_thickness", - "index": -1 - }, - { - "name": "enabled", - "type": "bool", - "getter": "is_enabled", - "setter": "set_enabled", - "index": -1 - }, - { - "name": "exclude_parent", - "type": "bool", - "getter": "get_exclude_parent_body", - "setter": "set_exclude_parent_body", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_exception_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_exceptions", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "force_raycast_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cast_to", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_normal", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_point", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_debug_shape_custom_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_debug_shape_thickness", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exclude_parent_body", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_areas_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_colliding", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_exception_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cast_to", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collide_with_areas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collide_with_bodies", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_debug_shape_custom_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "debug_shape_custom_color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_debug_shape_thickness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "debug_shape_thickness", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exclude_parent_body", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RayCast2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "cast_to", - "type": "Vector2", - "getter": "get_cast_to", - "setter": "set_cast_to", - "index": -1 - }, - { - "name": "collide_with_areas", - "type": "bool", - "getter": "is_collide_with_areas_enabled", - "setter": "set_collide_with_areas", - "index": -1 - }, - { - "name": "collide_with_bodies", - "type": "bool", - "getter": "is_collide_with_bodies_enabled", - "setter": "set_collide_with_bodies", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "enabled", - "type": "bool", - "getter": "is_enabled", - "setter": "set_enabled", - "index": -1 - }, - { - "name": "exclude_parent", - "type": "bool", - "getter": "get_exclude_parent_body", - "setter": "set_exclude_parent_body", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_exception_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_exceptions", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "force_raycast_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cast_to", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collider_shape", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_normal", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_point", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exclude_parent_body", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_areas_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collide_with_bodies_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_colliding", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_exception_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cast_to", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collide_with_areas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collide_with_bodies", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exclude_parent_body", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RayShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "length", - "type": "float", - "getter": "get_length", - "setter": "set_length", - "index": -1 - }, - { - "name": "slips_on_slope", - "type": "bool", - "getter": "get_slips_on_slope", - "setter": "set_slips_on_slope", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_slips_on_slope", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slips_on_slope", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RayShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "length", - "type": "float", - "getter": "get_length", - "setter": "set_length", - "index": -1 - }, - { - "name": "slips_on_slope", - "type": "bool", - "getter": "get_slips_on_slope", - "setter": "set_slips_on_slope", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_slips_on_slope", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_slips_on_slope", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RectangleShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "extents", - "type": "Vector2", - "getter": "get_extents", - "setter": "set_extents", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_extents", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Reference", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "init_ref", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reference", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "unreference", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "ReferenceRect", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "border_color", - "type": "Color", - "getter": "get_border_color", - "setter": "set_border_color", - "index": -1 - }, - { - "name": "border_width", - "type": "float", - "getter": "get_border_width", - "setter": "set_border_width", - "index": -1 - }, - { - "name": "editor_only", - "type": "bool", - "getter": "get_editor_only", - "setter": "set_editor_only", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_border_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_border_width", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_editor_only", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_border_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_border_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editor_only", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ReflectionProbe", - "base_class": "VisualInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "UPDATE_ALWAYS": 1, - "UPDATE_ONCE": 0 - }, - "properties": [ - { - "name": "box_projection", - "type": "bool", - "getter": "is_box_projection_enabled", - "setter": "set_enable_box_projection", - "index": -1 - }, - { - "name": "cull_mask", - "type": "int", - "getter": "get_cull_mask", - "setter": "set_cull_mask", - "index": -1 - }, - { - "name": "enable_shadows", - "type": "bool", - "getter": "are_shadows_enabled", - "setter": "set_enable_shadows", - "index": -1 - }, - { - "name": "extents", - "type": "Vector3", - "getter": "get_extents", - "setter": "set_extents", - "index": -1 - }, - { - "name": "intensity", - "type": "float", - "getter": "get_intensity", - "setter": "set_intensity", - "index": -1 - }, - { - "name": "interior_ambient_color", - "type": "Color", - "getter": "get_interior_ambient", - "setter": "set_interior_ambient", - "index": -1 - }, - { - "name": "interior_ambient_contrib", - "type": "float", - "getter": "get_interior_ambient_probe_contribution", - "setter": "set_interior_ambient_probe_contribution", - "index": -1 - }, - { - "name": "interior_ambient_energy", - "type": "float", - "getter": "get_interior_ambient_energy", - "setter": "set_interior_ambient_energy", - "index": -1 - }, - { - "name": "interior_enable", - "type": "bool", - "getter": "is_set_as_interior", - "setter": "set_as_interior", - "index": -1 - }, - { - "name": "max_distance", - "type": "float", - "getter": "get_max_distance", - "setter": "set_max_distance", - "index": -1 - }, - { - "name": "origin_offset", - "type": "Vector3", - "getter": "get_origin_offset", - "setter": "set_origin_offset", - "index": -1 - }, - { - "name": "update_mode", - "type": "int", - "getter": "get_update_mode", - "setter": "set_update_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "are_shadows_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cull_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_extents", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_intensity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_interior_ambient", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_interior_ambient_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_interior_ambient_probe_contribution", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_origin_offset", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_mode", - "return_type": "enum.ReflectionProbe::UpdateMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_box_projection_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_set_as_interior", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_as_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layers", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enable_box_projection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enable_shadows", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_interior_ambient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ambient", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_interior_ambient_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ambient_energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_interior_ambient_probe_contribution", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ambient_probe_contribution", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_origin_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "origin_offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "UpdateMode", - "values": { - "UPDATE_ONCE": 0, - "UPDATE_ALWAYS": 1 - } - } - ] - }, - { - "name": "RegEx", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "compile", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pattern", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_group_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_names", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pattern", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_valid", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "search", - "return_type": "RegExMatch", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subject", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "end", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "search_all", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subject", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "end", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "sub", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subject", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "replacement", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "all", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "offset", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "end", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RegExMatch", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "names", - "type": "Dictionary", - "getter": "get_names", - "setter": "", - "index": -1 - }, - { - "name": "strings", - "type": "Array", - "getter": "get_strings", - "setter": "", - "index": -1 - }, - { - "name": "subject", - "type": "String", - "getter": "get_subject", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_end", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "Variant", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_group_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_names", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_start", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "Variant", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "Variant", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_strings", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subject", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "RemoteTransform", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "remote_path", - "type": "NodePath", - "getter": "get_remote_node", - "setter": "set_remote_node", - "index": -1 - }, - { - "name": "update_position", - "type": "bool", - "getter": "get_update_position", - "setter": "set_update_position", - "index": -1 - }, - { - "name": "update_rotation", - "type": "bool", - "getter": "get_update_rotation", - "setter": "set_update_rotation", - "index": -1 - }, - { - "name": "update_scale", - "type": "bool", - "getter": "get_update_scale", - "setter": "set_update_scale", - "index": -1 - }, - { - "name": "use_global_coordinates", - "type": "bool", - "getter": "get_use_global_coordinates", - "setter": "set_use_global_coordinates", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "force_update_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_remote_node", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_position", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_rotation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_scale", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_global_coordinates", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_remote_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "update_remote_position", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "update_remote_rotation", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "update_remote_scale", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_global_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_global_coordinates", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RemoteTransform2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "remote_path", - "type": "NodePath", - "getter": "get_remote_node", - "setter": "set_remote_node", - "index": -1 - }, - { - "name": "update_position", - "type": "bool", - "getter": "get_update_position", - "setter": "set_update_position", - "index": -1 - }, - { - "name": "update_rotation", - "type": "bool", - "getter": "get_update_rotation", - "setter": "set_update_rotation", - "index": -1 - }, - { - "name": "update_scale", - "type": "bool", - "getter": "get_update_scale", - "setter": "set_update_scale", - "index": -1 - }, - { - "name": "use_global_coordinates", - "type": "bool", - "getter": "get_use_global_coordinates", - "setter": "set_use_global_coordinates", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "force_update_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_remote_node", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_position", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_rotation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_scale", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_global_coordinates", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_remote_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "update_remote_position", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "update_remote_rotation", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "update_remote_scale", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_global_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_global_coordinates", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Resource", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "resource_local_to_scene", - "type": "bool", - "getter": "is_local_to_scene", - "setter": "set_local_to_scene", - "index": -1 - }, - { - "name": "resource_name", - "type": "String", - "getter": "get_name", - "setter": "set_name", - "index": -1 - }, - { - "name": "resource_path", - "type": "String", - "getter": "get_path", - "setter": "set_path", - "index": -1 - } - ], - "signals": [ - { - "name": "changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_setup_local_to_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "duplicate", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "subresources", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "emit_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_local_scene", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_local_to_scene", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_local_to_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "setup_local_to_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "take_over_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ResourceFormatLoader", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_dependencies", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "add_types", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_recognized_extensions", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resource_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "handles_type", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "typename", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "original_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_dependencies", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "renames", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ResourceFormatSaver", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_recognized_extensions", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "recognize", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ResourceImporter", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "IMPORT_ORDER_DEFAULT": 0, - "IMPORT_ORDER_SCENE": 100 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - { - "name": "ImportOrder", - "values": { - "IMPORT_ORDER_DEFAULT": 0, - "IMPORT_ORDER_SCENE": 100 - } - } - ] - }, - { - "name": "ResourceInteractiveLoader", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_resource", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stage", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stage_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "wait", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "ResourcePreloader", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "resources", - "type": "Array", - "getter": "_get_resources", - "setter": "_set_resources", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_resources", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_resources", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_resource", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_resource", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_resource_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_resource", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_resource", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_resource", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "newname", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RichTextEffect", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_process_custom_fx", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "char_fx", - "type": "CharFXTransform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RichTextLabel", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_FILL": 3, - "ALIGN_LEFT": 0, - "ALIGN_RIGHT": 2, - "ITEM_ALIGN": 8, - "ITEM_COLOR": 5, - "ITEM_CUSTOMFX": 18, - "ITEM_FADE": 12, - "ITEM_FONT": 4, - "ITEM_FRAME": 0, - "ITEM_IMAGE": 2, - "ITEM_INDENT": 9, - "ITEM_LIST": 10, - "ITEM_META": 17, - "ITEM_NEWLINE": 3, - "ITEM_RAINBOW": 16, - "ITEM_SHAKE": 13, - "ITEM_STRIKETHROUGH": 7, - "ITEM_TABLE": 11, - "ITEM_TEXT": 1, - "ITEM_TORNADO": 15, - "ITEM_UNDERLINE": 6, - "ITEM_WAVE": 14, - "LIST_DOTS": 2, - "LIST_LETTERS": 1, - "LIST_NUMBERS": 0 - }, - "properties": [ - { - "name": "bbcode_enabled", - "type": "bool", - "getter": "is_using_bbcode", - "setter": "set_use_bbcode", - "index": -1 - }, - { - "name": "bbcode_text", - "type": "String", - "getter": "get_bbcode", - "setter": "set_bbcode", - "index": -1 - }, - { - "name": "custom_effects", - "type": "17/17:RichTextEffect", - "getter": "get_effects", - "setter": "set_effects", - "index": -1 - }, - { - "name": "fit_content_height", - "type": "bool", - "getter": "is_fit_content_height_enabled", - "setter": "set_fit_content_height", - "index": -1 - }, - { - "name": "meta_underlined", - "type": "bool", - "getter": "is_meta_underlined", - "setter": "set_meta_underline", - "index": -1 - }, - { - "name": "override_selected_font_color", - "type": "bool", - "getter": "is_overriding_selected_font_color", - "setter": "set_override_selected_font_color", - "index": -1 - }, - { - "name": "percent_visible", - "type": "float", - "getter": "get_percent_visible", - "setter": "set_percent_visible", - "index": -1 - }, - { - "name": "scroll_active", - "type": "bool", - "getter": "is_scroll_active", - "setter": "set_scroll_active", - "index": -1 - }, - { - "name": "scroll_following", - "type": "bool", - "getter": "is_scroll_following", - "setter": "set_scroll_follow", - "index": -1 - }, - { - "name": "selection_enabled", - "type": "bool", - "getter": "is_selection_enabled", - "setter": "set_selection_enabled", - "index": -1 - }, - { - "name": "tab_size", - "type": "int", - "getter": "get_tab_size", - "setter": "set_tab_size", - "index": -1 - }, - { - "name": "text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - }, - { - "name": "visible_characters", - "type": "int", - "getter": "get_visible_characters", - "setter": "set_visible_characters", - "index": -1 - } - ], - "signals": [ - { - "name": "meta_clicked", - "arguments": [ - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "meta_hover_ended", - "arguments": [ - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "meta_hover_started", - "arguments": [ - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_scroll_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_image", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "height", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "add_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "append_bbcode", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bbcode", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bbcode", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_content_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_effects", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_percent_visible", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_character_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_scroll", - "return_type": "VScrollBar", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_characters", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_line_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "install_effect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "effect", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_fit_content_height_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_meta_underlined", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_overriding_selected_font_color", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_scroll_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_scroll_following", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selection_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_bbcode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "newline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "parse_bbcode", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bbcode", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "parse_expressions_for_values", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "expressions", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "pop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_bold", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_bold_italics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_cell", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_font", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "font", - "type": "Font", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_indent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "level", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_italics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_list", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_meta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_mono", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_normal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_strikethrough", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "push_table", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "columns", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "push_underline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_line", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scroll_to_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bbcode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_effects", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "effects", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fit_content_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_meta_underline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_override_selected_font_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "override", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_percent_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "percent_visible", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scroll_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scroll_follow", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "follow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_selection_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "spaces", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_table_column_expand", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "expand", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ratio", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_bbcode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visible_characters", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Align", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2, - "ALIGN_FILL": 3 - } - }, - { - "name": "ListType", - "values": { - "LIST_NUMBERS": 0, - "LIST_LETTERS": 1, - "LIST_DOTS": 2 - } - }, - { - "name": "ItemType", - "values": { - "ITEM_FRAME": 0, - "ITEM_TEXT": 1, - "ITEM_IMAGE": 2, - "ITEM_NEWLINE": 3, - "ITEM_FONT": 4, - "ITEM_COLOR": 5, - "ITEM_UNDERLINE": 6, - "ITEM_STRIKETHROUGH": 7, - "ITEM_ALIGN": 8, - "ITEM_INDENT": 9, - "ITEM_LIST": 10, - "ITEM_TABLE": 11, - "ITEM_FADE": 12, - "ITEM_SHAKE": 13, - "ITEM_WAVE": 14, - "ITEM_TORNADO": 15, - "ITEM_RAINBOW": 16, - "ITEM_META": 17, - "ITEM_CUSTOMFX": 18 - } - } - ] - }, - { - "name": "RigidBody", - "base_class": "PhysicsBody", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MODE_CHARACTER": 2, - "MODE_KINEMATIC": 3, - "MODE_RIGID": 0, - "MODE_STATIC": 1 - }, - "properties": [ - { - "name": "angular_damp", - "type": "float", - "getter": "get_angular_damp", - "setter": "set_angular_damp", - "index": -1 - }, - { - "name": "angular_velocity", - "type": "Vector3", - "getter": "get_angular_velocity", - "setter": "set_angular_velocity", - "index": -1 - }, - { - "name": "axis_lock_angular_x", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 8 - }, - { - "name": "axis_lock_angular_y", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 16 - }, - { - "name": "axis_lock_angular_z", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 32 - }, - { - "name": "axis_lock_linear_x", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 1 - }, - { - "name": "axis_lock_linear_y", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 2 - }, - { - "name": "axis_lock_linear_z", - "type": "bool", - "getter": "get_axis_lock", - "setter": "set_axis_lock", - "index": 4 - }, - { - "name": "bounce", - "type": "float", - "getter": "get_bounce", - "setter": "set_bounce", - "index": -1 - }, - { - "name": "can_sleep", - "type": "bool", - "getter": "is_able_to_sleep", - "setter": "set_can_sleep", - "index": -1 - }, - { - "name": "contact_monitor", - "type": "bool", - "getter": "is_contact_monitor_enabled", - "setter": "set_contact_monitor", - "index": -1 - }, - { - "name": "contacts_reported", - "type": "int", - "getter": "get_max_contacts_reported", - "setter": "set_max_contacts_reported", - "index": -1 - }, - { - "name": "continuous_cd", - "type": "bool", - "getter": "is_using_continuous_collision_detection", - "setter": "set_use_continuous_collision_detection", - "index": -1 - }, - { - "name": "custom_integrator", - "type": "bool", - "getter": "is_using_custom_integrator", - "setter": "set_use_custom_integrator", - "index": -1 - }, - { - "name": "friction", - "type": "float", - "getter": "get_friction", - "setter": "set_friction", - "index": -1 - }, - { - "name": "gravity_scale", - "type": "float", - "getter": "get_gravity_scale", - "setter": "set_gravity_scale", - "index": -1 - }, - { - "name": "linear_damp", - "type": "float", - "getter": "get_linear_damp", - "setter": "set_linear_damp", - "index": -1 - }, - { - "name": "linear_velocity", - "type": "Vector3", - "getter": "get_linear_velocity", - "setter": "set_linear_velocity", - "index": -1 - }, - { - "name": "mass", - "type": "float", - "getter": "get_mass", - "setter": "set_mass", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "getter": "get_physics_material_override", - "setter": "set_physics_material_override", - "index": -1 - }, - { - "name": "sleeping", - "type": "bool", - "getter": "is_sleeping", - "setter": "set_sleeping", - "index": -1 - }, - { - "name": "weight", - "type": "float", - "getter": "get_weight", - "setter": "set_weight", - "index": -1 - } - ], - "signals": [ - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sleeping_state_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_body_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_direct_state_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_integrate_forces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "state", - "type": "PhysicsDirectBodyState", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_reload_physics_characteristics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_central_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "torque", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_torque_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "impulse", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angular_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_angular_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_axis_lock", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_colliding_bodies", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inverse_inertia_tensor", - "return_type": "Basis", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_contacts_reported", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.RigidBody::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_material_override", - "return_type": "PhysicsMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_weight", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_able_to_sleep", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_contact_monitor_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_sleeping", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_continuous_collision_detection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_custom_integrator", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_angular_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_angular_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angular_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_axis_lock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lock", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_axis_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_can_sleep", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "able_to_sleep", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_contact_monitor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "friction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gravity_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mass", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_contacts_reported", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_material_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sleeping", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sleeping", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_continuous_collision_detection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_custom_integrator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_weight", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "weight", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_RIGID": 0, - "MODE_STATIC": 1, - "MODE_CHARACTER": 2, - "MODE_KINEMATIC": 3 - } - } - ] - }, - { - "name": "RigidBody2D", - "base_class": "PhysicsBody2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "CCD_MODE_CAST_RAY": 1, - "CCD_MODE_CAST_SHAPE": 2, - "CCD_MODE_DISABLED": 0, - "MODE_CHARACTER": 2, - "MODE_KINEMATIC": 3, - "MODE_RIGID": 0, - "MODE_STATIC": 1 - }, - "properties": [ - { - "name": "angular_damp", - "type": "float", - "getter": "get_angular_damp", - "setter": "set_angular_damp", - "index": -1 - }, - { - "name": "angular_velocity", - "type": "float", - "getter": "get_angular_velocity", - "setter": "set_angular_velocity", - "index": -1 - }, - { - "name": "applied_force", - "type": "Vector2", - "getter": "get_applied_force", - "setter": "set_applied_force", - "index": -1 - }, - { - "name": "applied_torque", - "type": "float", - "getter": "get_applied_torque", - "setter": "set_applied_torque", - "index": -1 - }, - { - "name": "bounce", - "type": "float", - "getter": "get_bounce", - "setter": "set_bounce", - "index": -1 - }, - { - "name": "can_sleep", - "type": "bool", - "getter": "is_able_to_sleep", - "setter": "set_can_sleep", - "index": -1 - }, - { - "name": "contact_monitor", - "type": "bool", - "getter": "is_contact_monitor_enabled", - "setter": "set_contact_monitor", - "index": -1 - }, - { - "name": "contacts_reported", - "type": "int", - "getter": "get_max_contacts_reported", - "setter": "set_max_contacts_reported", - "index": -1 - }, - { - "name": "continuous_cd", - "type": "int", - "getter": "get_continuous_collision_detection_mode", - "setter": "set_continuous_collision_detection_mode", - "index": -1 - }, - { - "name": "custom_integrator", - "type": "bool", - "getter": "is_using_custom_integrator", - "setter": "set_use_custom_integrator", - "index": -1 - }, - { - "name": "friction", - "type": "float", - "getter": "get_friction", - "setter": "set_friction", - "index": -1 - }, - { - "name": "gravity_scale", - "type": "float", - "getter": "get_gravity_scale", - "setter": "set_gravity_scale", - "index": -1 - }, - { - "name": "inertia", - "type": "float", - "getter": "get_inertia", - "setter": "set_inertia", - "index": -1 - }, - { - "name": "linear_damp", - "type": "float", - "getter": "get_linear_damp", - "setter": "set_linear_damp", - "index": -1 - }, - { - "name": "linear_velocity", - "type": "Vector2", - "getter": "get_linear_velocity", - "setter": "set_linear_velocity", - "index": -1 - }, - { - "name": "mass", - "type": "float", - "getter": "get_mass", - "setter": "set_mass", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "getter": "get_physics_material_override", - "setter": "set_physics_material_override", - "index": -1 - }, - { - "name": "sleeping", - "type": "bool", - "getter": "is_sleeping", - "setter": "set_sleeping", - "index": -1 - }, - { - "name": "weight", - "type": "float", - "getter": "get_weight", - "setter": "set_weight", - "index": -1 - } - ], - "signals": [ - { - "name": "body_entered", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_exited", - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_entered", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "body_shape_exited", - "arguments": [ - { - "name": "body_rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - }, - { - "name": "body_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_shape_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sleeping_state_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_body_enter_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_body_exit_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_direct_state_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_integrate_forces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "state", - "type": "Physics2DDirectBodyState", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_reload_physics_characteristics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_central_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "torque", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_central_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "impulse", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "impulse", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply_torque_impulse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "torque", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_angular_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_angular_velocity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_applied_force", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_applied_torque", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_colliding_bodies", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_continuous_collision_detection_mode", - "return_type": "enum.RigidBody2D::CCDMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gravity_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inertia", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_damp", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_velocity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_contacts_reported", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.RigidBody2D::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_material_override", - "return_type": "PhysicsMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_weight", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_able_to_sleep", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_contact_monitor_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_sleeping", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_custom_integrator", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_angular_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angular_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_angular_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angular_velocity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_applied_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "force", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_applied_torque", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "torque", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_axis_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_can_sleep", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "able_to_sleep", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_contact_monitor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_continuous_collision_detection_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "friction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gravity_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gravity_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_inertia", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inertia", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_damp", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_damp", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_velocity", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mass", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_contacts_reported", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_material_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sleeping", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sleeping", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_custom_integrator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_weight", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "weight", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "test_motion", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "infinite_inertia", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "margin", - "type": "float", - "has_default_value": true, - "default_value": "0.08" - }, - { - "name": "result", - "type": "Physics2DTestMotionResult", - "has_default_value": true, - "default_value": "Null" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_RIGID": 0, - "MODE_STATIC": 1, - "MODE_CHARACTER": 2, - "MODE_KINEMATIC": 3 - } - }, - { - "name": "CCDMode", - "values": { - "CCD_MODE_DISABLED": 0, - "CCD_MODE_CAST_RAY": 1, - "CCD_MODE_CAST_SHAPE": 2 - } - } - ] - }, - { - "name": "Room", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "points", - "type": "PoolVector3Array", - "getter": "get_points", - "setter": "set_points", - "index": -1 - }, - { - "name": "room_simplify", - "type": "float", - "getter": "get_room_simplify", - "setter": "set_room_simplify", - "index": -1 - }, - { - "name": "use_default_simplify", - "type": "bool", - "getter": "get_use_default_simplify", - "setter": "set_use_default_simplify", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_points", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_room_simplify", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_default_simplify", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_point", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_points", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_room_simplify", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_default_simplify", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_use", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RoomGroup", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "roomgroup_priority", - "type": "int", - "getter": "get_roomgroup_priority", - "setter": "set_roomgroup_priority", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_roomgroup_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_roomgroup_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "RoomManager", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "PVS_MODE_DISABLED": 0, - "PVS_MODE_FULL": 2, - "PVS_MODE_PARTIAL": 1 - }, - "properties": [ - { - "name": "active", - "type": "bool", - "getter": "rooms_get_active", - "setter": "rooms_set_active", - "index": -1 - }, - { - "name": "debug_sprawl", - "type": "bool", - "getter": "get_debug_sprawl", - "setter": "set_debug_sprawl", - "index": -1 - }, - { - "name": "default_portal_margin", - "type": "float", - "getter": "get_default_portal_margin", - "setter": "set_default_portal_margin", - "index": -1 - }, - { - "name": "gameplay_monitor", - "type": "bool", - "getter": "get_gameplay_monitor_enabled", - "setter": "set_gameplay_monitor_enabled", - "index": -1 - }, - { - "name": "merge_meshes", - "type": "bool", - "getter": "get_merge_meshes", - "setter": "set_merge_meshes", - "index": -1 - }, - { - "name": "overlap_warning_threshold", - "type": "int", - "getter": "get_overlap_warning_threshold", - "setter": "set_overlap_warning_threshold", - "index": -1 - }, - { - "name": "portal_depth_limit", - "type": "int", - "getter": "get_portal_depth_limit", - "setter": "set_portal_depth_limit", - "index": -1 - }, - { - "name": "preview_camera", - "type": "NodePath", - "getter": "get_preview_camera_path", - "setter": "set_preview_camera_path", - "index": -1 - }, - { - "name": "pvs_mode", - "type": "int", - "getter": "get_pvs_mode", - "setter": "set_pvs_mode", - "index": -1 - }, - { - "name": "roaming_expansion_margin", - "type": "float", - "getter": "get_roaming_expansion_margin", - "setter": "set_roaming_expansion_margin", - "index": -1 - }, - { - "name": "room_simplify", - "type": "float", - "getter": "get_room_simplify", - "setter": "set_room_simplify", - "index": -1 - }, - { - "name": "roomlist", - "type": "NodePath", - "getter": "get_roomlist_path", - "setter": "set_roomlist_path", - "index": -1 - }, - { - "name": "show_margins", - "type": "bool", - "getter": "get_show_margins", - "setter": "set_show_margins", - "index": -1 - }, - { - "name": "use_secondary_pvs", - "type": "bool", - "getter": "get_use_secondary_pvs", - "setter": "set_use_secondary_pvs", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_debug_sprawl", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_portal_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gameplay_monitor_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_merge_meshes", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_overlap_warning_threshold", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_portal_depth_limit", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_preview_camera_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pvs_mode", - "return_type": "enum.RoomManager::PVSMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roaming_expansion_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_room_simplify", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roomlist_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_show_margins", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_secondary_pvs", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rooms_clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rooms_convert", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rooms_get_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rooms_set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_debug_sprawl", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "debug_sprawl", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_portal_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "default_portal_margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gameplay_monitor_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gameplay_monitor", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_merge_meshes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "merge_meshes", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_overlap_warning_threshold", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "overlap_warning_threshold", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_portal_depth_limit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "portal_depth_limit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_preview_camera_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "preview_camera", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pvs_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pvs_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roaming_expansion_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "roaming_expansion_margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_room_simplify", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "room_simplify", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roomlist_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_margins", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "show_margins", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_secondary_pvs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_secondary_pvs", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "PVSMode", - "values": { - "PVS_MODE_DISABLED": 0, - "PVS_MODE_PARTIAL": 1, - "PVS_MODE_FULL": 2 - } - } - ] - }, - { - "name": "RootMotionView", - "base_class": "VisualInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "animation_path", - "type": "NodePath", - "getter": "get_animation_path", - "setter": "set_animation_path", - "index": -1 - }, - { - "name": "cell_size", - "type": "float", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "zero_y", - "type": "bool", - "getter": "get_zero_y", - "setter": "set_zero_y", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "SceneState", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "GEN_EDIT_STATE_DISABLED": 0, - "GEN_EDIT_STATE_INSTANCE": 1, - "GEN_EDIT_STATE_MAIN": 2, - "GEN_EDIT_STATE_MAIN_INHERITED": 3 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_connection_binds", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connection_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_method", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_signal", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_source", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_connection_target", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_groups", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_instance", - "return_type": "PackedScene", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_instance_placeholder", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_owner_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "for_parent", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_node_property_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_property_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "prop_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_property_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "prop_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_node_instance_placeholder", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "GenEditState", - "values": { - "GEN_EDIT_STATE_DISABLED": 0, - "GEN_EDIT_STATE_INSTANCE": 1, - "GEN_EDIT_STATE_MAIN": 2, - "GEN_EDIT_STATE_MAIN_INHERITED": 3 - } - } - ] - }, - { - "name": "SceneTree", - "base_class": "MainLoop", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "GROUP_CALL_DEFAULT": 0, - "GROUP_CALL_REALTIME": 2, - "GROUP_CALL_REVERSE": 1, - "GROUP_CALL_UNIQUE": 4, - "STRETCH_ASPECT_EXPAND": 4, - "STRETCH_ASPECT_IGNORE": 0, - "STRETCH_ASPECT_KEEP": 1, - "STRETCH_ASPECT_KEEP_HEIGHT": 3, - "STRETCH_ASPECT_KEEP_WIDTH": 2, - "STRETCH_MODE_2D": 1, - "STRETCH_MODE_DISABLED": 0, - "STRETCH_MODE_VIEWPORT": 2 - }, - "properties": [ - { - "name": "current_scene", - "type": "Node", - "getter": "get_current_scene", - "setter": "set_current_scene", - "index": -1 - }, - { - "name": "debug_collisions_hint", - "type": "bool", - "getter": "is_debugging_collisions_hint", - "setter": "set_debug_collisions_hint", - "index": -1 - }, - { - "name": "debug_navigation_hint", - "type": "bool", - "getter": "is_debugging_navigation_hint", - "setter": "set_debug_navigation_hint", - "index": -1 - }, - { - "name": "edited_scene_root", - "type": "Node", - "getter": "get_edited_scene_root", - "setter": "set_edited_scene_root", - "index": -1 - }, - { - "name": "multiplayer", - "type": "MultiplayerAPI", - "getter": "get_multiplayer", - "setter": "set_multiplayer", - "index": -1 - }, - { - "name": "multiplayer_poll", - "type": "bool", - "getter": "is_multiplayer_poll_enabled", - "setter": "set_multiplayer_poll_enabled", - "index": -1 - }, - { - "name": "network_peer", - "type": "NetworkedMultiplayerPeer", - "getter": "get_network_peer", - "setter": "set_network_peer", - "index": -1 - }, - { - "name": "paused", - "type": "bool", - "getter": "is_paused", - "setter": "set_pause", - "index": -1 - }, - { - "name": "refuse_new_network_connections", - "type": "bool", - "getter": "is_refusing_new_network_connections", - "setter": "set_refuse_new_network_connections", - "index": -1 - }, - { - "name": "root", - "type": "Node", - "getter": "get_root", - "setter": "", - "index": -1 - }, - { - "name": "use_font_oversampling", - "type": "bool", - "getter": "is_using_font_oversampling", - "setter": "set_use_font_oversampling", - "index": -1 - } - ], - "signals": [ - { - "name": "connected_to_server", - "arguments": [ - ] - }, - { - "name": "connection_failed", - "arguments": [ - ] - }, - { - "name": "files_dropped", - "arguments": [ - { - "name": "files", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "screen", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "global_menu_action", - "arguments": [ - { - "name": "id", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "idle_frame", - "arguments": [ - ] - }, - { - "name": "network_peer_connected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "network_peer_disconnected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_added", - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_configuration_warning_changed", - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_removed", - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "node_renamed", - "arguments": [ - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "physics_frame", - "arguments": [ - ] - }, - { - "name": "screen_resized", - "arguments": [ - ] - }, - { - "name": "server_disconnected", - "arguments": [ - ] - }, - { - "name": "tree_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_change_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_connected_to_server", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_connection_failed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_network_peer_connected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_network_peer_disconnected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_server_disconnected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "call_group", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "call_group_flags", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "change_scene", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "change_scene_to", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "packed_scene", - "type": "PackedScene", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_timer", - "return_type": "SceneTreeTimer", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pause_mode_process", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_current_scene", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edited_scene_root", - "return_type": "Node", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_multiplayer", - "return_type": "MultiplayerAPI", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_connected_peers", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_peer", - "return_type": "NetworkedMultiplayerPeer", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_network_unique_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nodes_in_group", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_root", - "return_type": "Viewport", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rpc_sender_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_group", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_network_peer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_debugging_collisions_hint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_debugging_navigation_hint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_input_handled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_multiplayer_poll_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_network_server", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_paused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_refusing_new_network_connections", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_font_oversampling", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "notify_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "notification", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "notify_group_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "call_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "notification", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "queue_delete", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "obj", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "quit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exit_code", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "reload_current_scene", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_auto_accept_quit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "child_node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_debug_collisions_hint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_debug_navigation_hint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_edited_scene_root", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scene", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_group_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "call_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "group", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_as_handled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_multiplayer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multiplayer", - "type": "MultiplayerAPI", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_multiplayer_poll_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_network_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer", - "type": "NetworkedMultiplayerPeer", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pause", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_quit_on_go_back", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_refuse_new_network_connections", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "refuse", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_screen_stretch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "aspect", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "minsize", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "float", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "set_use_font_oversampling", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "StretchAspect", - "values": { - "STRETCH_ASPECT_IGNORE": 0, - "STRETCH_ASPECT_KEEP": 1, - "STRETCH_ASPECT_KEEP_WIDTH": 2, - "STRETCH_ASPECT_KEEP_HEIGHT": 3, - "STRETCH_ASPECT_EXPAND": 4 - } - }, - { - "name": "GroupCallFlags", - "values": { - "GROUP_CALL_DEFAULT": 0, - "GROUP_CALL_REVERSE": 1, - "GROUP_CALL_REALTIME": 2, - "GROUP_CALL_UNIQUE": 4 - } - }, - { - "name": "StretchMode", - "values": { - "STRETCH_MODE_DISABLED": 0, - "STRETCH_MODE_2D": 1, - "STRETCH_MODE_VIEWPORT": 2 - } - } - ] - }, - { - "name": "SceneTreeTimer", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "time_left", - "type": "float", - "getter": "get_time_left", - "setter": "set_time_left", - "index": -1 - } - ], - "signals": [ - { - "name": "timeout", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_time_left", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_time_left", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Script", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "source_code", - "type": "String", - "getter": "get_source_code", - "setter": "set_source_code", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "can_instance", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_script", - "return_type": "Script", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_instance_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_property_default_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_script_constant_map", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script_method_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script_property_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_script_signal_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_source_code", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_script_signal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_source_code", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "instance_has", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_tool", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reload", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keep_state", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_source_code", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "source", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ScriptCreateDialog", - "base_class": "ConfirmationDialog", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "script_created", - "arguments": [ - { - "name": "script", - "type": "Script", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_browse_class_in_tree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_browse_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_built_in_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_class_name_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_create", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_file_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_lang_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_parent_name_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_path_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_path_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_path_hbox_sorted", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_template_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "config", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inherits", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "built_in_enabled", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "load_enabled", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ScriptEditor", - "base_class": "PanelContainer", - "api_type": "tools", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "editor_script_changed", - "arguments": [ - { - "name": "script", - "type": "Script", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "script_close", - "arguments": [ - { - "name": "script", - "type": "Script", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_add_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_autosave_scripts", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_breaked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_clear_execution", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Reference", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_close_all_tabs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_close_current_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_close_discard_current_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_close_docs_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_close_other_tabs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_copy_script_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_editor_pause", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_editor_play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_editor_settings_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_editor_stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_file_dialog_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_filter_methods_text_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_filter_scripts_text_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_debug_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_goto_script_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Reference", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_goto_script_line2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_help_class_goto", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_help_class_open", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_help_overview_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_help_search", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_history_back", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_history_forward", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_live_auto_reload_running_scripts", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_members_overview_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_menu_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_on_find_in_files_modified_files", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_on_find_in_files_requested", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_on_find_in_files_result_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg2", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg3", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_on_replace_in_files_requested", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_open_recent_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_queue_close_tabs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_request_help", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_res_saved_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_resave_scripts", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_save_history", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_scene_saved_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_script_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_script_created", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Script", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_script_list_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_script_selected", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_script_split_dragged", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_execution", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Reference", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_show_debugger", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_start_find_in_files", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tab_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_theme_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_toggle_members_overview_alpha_sort", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_tree_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_autosave_timer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_members_overview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_recent_scripts", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_script_connections", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_script_names", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "can_drop_data_fw", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "drop_data_fw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_current_script", - "return_type": "Script", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_data_fw", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_open_scripts", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "goto_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line_number", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "open_script_create_dialog", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "base_path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reload_scripts", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "ScrollBar", - "base_class": "Range", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "custom_step", - "type": "float", - "getter": "get_custom_step", - "setter": "set_custom_step", - "index": -1 - } - ], - "signals": [ - { - "name": "scrolling", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_drag_node_exit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_drag_node_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_custom_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_custom_step", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "step", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ScrollContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "follow_focus", - "type": "bool", - "getter": "is_following_focus", - "setter": "set_follow_focus", - "index": -1 - }, - { - "name": "scroll_deadzone", - "type": "int", - "getter": "get_deadzone", - "setter": "set_deadzone", - "index": -1 - }, - { - "name": "scroll_horizontal", - "type": "int", - "getter": "get_h_scroll", - "setter": "set_h_scroll", - "index": -1 - }, - { - "name": "scroll_horizontal_enabled", - "type": "bool", - "getter": "is_h_scroll_enabled", - "setter": "set_enable_h_scroll", - "index": -1 - }, - { - "name": "scroll_vertical", - "type": "int", - "getter": "get_v_scroll", - "setter": "set_v_scroll", - "index": -1 - }, - { - "name": "scroll_vertical_enabled", - "type": "bool", - "getter": "is_v_scroll_enabled", - "setter": "set_enable_v_scroll", - "index": -1 - } - ], - "signals": [ - { - "name": "scroll_ended", - "arguments": [ - ] - }, - { - "name": "scroll_started", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_gui_focus_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_scroll_moved", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_update_scrollbar_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "ensure_control_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "control", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_deadzone", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_scroll", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_scrollbar", - "return_type": "HScrollBar", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_scroll", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_scrollbar", - "return_type": "VScrollBar", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_following_focus", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_h_scroll_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_v_scroll_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_deadzone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "deadzone", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enable_h_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enable_v_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_follow_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SegmentShape2D", - "base_class": "Shape2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "a", - "type": "Vector2", - "getter": "get_a", - "setter": "set_a", - "index": -1 - }, - { - "name": "b", - "type": "Vector2", - "getter": "get_b", - "setter": "set_b", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_a", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_b", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_a", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_b", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Separator", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Shader", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MODE_CANVAS_ITEM": 1, - "MODE_PARTICLES": 2, - "MODE_SPATIAL": 0 - }, - "properties": [ - { - "name": "code", - "type": "String", - "getter": "get_code", - "setter": "set_code", - "index": -1 - }, - { - "name": "custom_defines", - "type": "String", - "getter": "get_custom_defines", - "setter": "set_custom_defines", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_code", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_defines", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_texture_param", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_mode", - "return_type": "enum.Shader::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_param", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_code", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_defines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "custom_defines", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_texture_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_SPATIAL": 0, - "MODE_CANVAS_ITEM": 1, - "MODE_PARTICLES": 2 - } - } - ] - }, - { - "name": "ShaderMaterial", - "base_class": "Material", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "shader", - "type": "Shader", - "getter": "get_shader", - "setter": "set_shader", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_shader_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shader", - "return_type": "Shader", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shader_param", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_can_revert", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "property_get_revert", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shader", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader", - "type": "Shader", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shader_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Shape", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "margin", - "type": "float", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_debug_mesh", - "return_type": "ArrayMesh", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Shape2D", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "custom_solver_bias", - "type": "float", - "getter": "get_custom_solver_bias", - "setter": "set_custom_solver_bias", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "collide", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "with_shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "collide_and_get_contacts", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "with_shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "collide_with_motion", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "with_shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "collide_with_motion_and_get_contacts", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "local_motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "with_shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_motion", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_custom_solver_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_custom_solver_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ShortCut", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "shortcut", - "type": "InputEvent", - "getter": "get_shortcut", - "setter": "set_shortcut", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_as_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shortcut", - "return_type": "InputEvent", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shortcut", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_valid", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_shortcut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Skeleton", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "NOTIFICATION_UPDATE_SKELETON": 50 - }, - "properties": [ - ], - "signals": [ - { - "name": "skeleton_updated", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "add_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "bind_child_node_to_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_bones", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_bones_global_pose_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "find_bone", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bone_custom_pose", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_global_pose", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_global_pose_no_override", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_parent", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_pose", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_rest", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bound_child_nodes_to_bone", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_bone_rest_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "localize_rests", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "physical_bones_add_collision_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exception", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "physical_bones_remove_collision_exception", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "exception", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "physical_bones_start_simulation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bones", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "physical_bones_stop_simulation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "register_skin", - "return_type": "SkinReference", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skin", - "type": "Skin", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_custom_pose", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_pose", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_disable_rest", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_global_pose_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pose", - "type": "Transform", - "has_default_value": false, - "default_value": "" - }, - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "persistent", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_bone_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parent_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_pose", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pose", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bone_rest", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rest", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unbind_child_node_from_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unparent_bone_and_rest", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Skeleton2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "bone_setup_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_update_bone_setup", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bone", - "return_type": "Bone2D", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bone_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "SkeletonIK", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "interpolation", - "type": "float", - "getter": "get_interpolation", - "setter": "set_interpolation", - "index": -1 - }, - { - "name": "magnet", - "type": "Vector3", - "getter": "get_magnet_position", - "setter": "set_magnet_position", - "index": -1 - }, - { - "name": "max_iterations", - "type": "int", - "getter": "get_max_iterations", - "setter": "set_max_iterations", - "index": -1 - }, - { - "name": "min_distance", - "type": "float", - "getter": "get_min_distance", - "setter": "set_min_distance", - "index": -1 - }, - { - "name": "override_tip_basis", - "type": "bool", - "getter": "is_override_tip_basis", - "setter": "set_override_tip_basis", - "index": -1 - }, - { - "name": "root_bone", - "type": "String", - "getter": "get_root_bone", - "setter": "set_root_bone", - "index": -1 - }, - { - "name": "target", - "type": "Transform", - "getter": "get_target_transform", - "setter": "set_target_transform", - "index": -1 - }, - { - "name": "target_node", - "type": "NodePath", - "getter": "get_target_node", - "setter": "set_target_node", - "index": -1 - }, - { - "name": "tip_bone", - "type": "String", - "getter": "get_tip_bone", - "setter": "set_tip_bone", - "index": -1 - }, - { - "name": "use_magnet", - "type": "bool", - "getter": "is_using_magnet", - "setter": "set_use_magnet", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_interpolation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_magnet_position", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_iterations", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent_skeleton", - "return_type": "Skeleton", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root_bone", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_node", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_target_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tip_bone", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_override_tip_basis", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_running", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_magnet", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_interpolation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "interpolation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_magnet_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_iterations", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "iterations", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "min_distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_override_tip_basis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "override", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_root_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "root_bone", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tip_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tip_bone", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_magnet", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "start", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "one_time", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Skin", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_bind", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bone", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pose", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_binds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bind_bone", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bind_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bind_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_bind_pose", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bind_bone", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bone", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bind_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bind_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bind_pose", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bind_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pose", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SkinReference", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_skin_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skeleton", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skin", - "return_type": "Skin", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "Sky", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "RADIANCE_SIZE_1024": 5, - "RADIANCE_SIZE_128": 2, - "RADIANCE_SIZE_2048": 6, - "RADIANCE_SIZE_256": 3, - "RADIANCE_SIZE_32": 0, - "RADIANCE_SIZE_512": 4, - "RADIANCE_SIZE_64": 1, - "RADIANCE_SIZE_MAX": 7 - }, - "properties": [ - { - "name": "radiance_size", - "type": "int", - "getter": "get_radiance_size", - "setter": "set_radiance_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_radiance_size", - "return_type": "enum.Sky::RadianceSize", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_radiance_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "RadianceSize", - "values": { - "RADIANCE_SIZE_32": 0, - "RADIANCE_SIZE_64": 1, - "RADIANCE_SIZE_128": 2, - "RADIANCE_SIZE_256": 3, - "RADIANCE_SIZE_512": 4, - "RADIANCE_SIZE_1024": 5, - "RADIANCE_SIZE_2048": 6, - "RADIANCE_SIZE_MAX": 7 - } - } - ] - }, - { - "name": "Slider", - "base_class": "Range", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "editable", - "type": "bool", - "getter": "is_editable", - "setter": "set_editable", - "index": -1 - }, - { - "name": "scrollable", - "type": "bool", - "getter": "is_scrollable", - "setter": "set_scrollable", - "index": -1 - }, - { - "name": "tick_count", - "type": "int", - "getter": "get_ticks", - "setter": "set_ticks", - "index": -1 - }, - { - "name": "ticks_on_borders", - "type": "bool", - "getter": "get_ticks_on_borders", - "setter": "set_ticks_on_borders", - "index": -1 - } - ], - "signals": [ - { - "name": "drag_ended", - "arguments": [ - { - "name": "value_changed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "drag_started", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_ticks", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ticks_on_borders", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_scrollable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_editable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "editable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scrollable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scrollable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ticks", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ticks_on_borders", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ticks_on_border", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SliderJoint", - "base_class": "Joint", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "PARAM_ANGULAR_LIMIT_DAMPING": 15, - "PARAM_ANGULAR_LIMIT_LOWER": 12, - "PARAM_ANGULAR_LIMIT_RESTITUTION": 14, - "PARAM_ANGULAR_LIMIT_SOFTNESS": 13, - "PARAM_ANGULAR_LIMIT_UPPER": 11, - "PARAM_ANGULAR_MOTION_DAMPING": 18, - "PARAM_ANGULAR_MOTION_RESTITUTION": 17, - "PARAM_ANGULAR_MOTION_SOFTNESS": 16, - "PARAM_ANGULAR_ORTHOGONAL_DAMPING": 21, - "PARAM_ANGULAR_ORTHOGONAL_RESTITUTION": 20, - "PARAM_ANGULAR_ORTHOGONAL_SOFTNESS": 19, - "PARAM_LINEAR_LIMIT_DAMPING": 4, - "PARAM_LINEAR_LIMIT_LOWER": 1, - "PARAM_LINEAR_LIMIT_RESTITUTION": 3, - "PARAM_LINEAR_LIMIT_SOFTNESS": 2, - "PARAM_LINEAR_LIMIT_UPPER": 0, - "PARAM_LINEAR_MOTION_DAMPING": 7, - "PARAM_LINEAR_MOTION_RESTITUTION": 6, - "PARAM_LINEAR_MOTION_SOFTNESS": 5, - "PARAM_LINEAR_ORTHOGONAL_DAMPING": 10, - "PARAM_LINEAR_ORTHOGONAL_RESTITUTION": 9, - "PARAM_LINEAR_ORTHOGONAL_SOFTNESS": 8, - "PARAM_MAX": 22 - }, - "properties": [ - { - "name": "angular_limit/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 15 - }, - { - "name": "angular_limit/lower_angle", - "type": "float", - "getter": "_get_lower_limit_angular", - "setter": "_set_lower_limit_angular", - "index": -1 - }, - { - "name": "angular_limit/restitution", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 14 - }, - { - "name": "angular_limit/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 13 - }, - { - "name": "angular_limit/upper_angle", - "type": "float", - "getter": "_get_upper_limit_angular", - "setter": "_set_upper_limit_angular", - "index": -1 - }, - { - "name": "angular_motion/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 18 - }, - { - "name": "angular_motion/restitution", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 17 - }, - { - "name": "angular_motion/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 16 - }, - { - "name": "angular_ortho/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 21 - }, - { - "name": "angular_ortho/restitution", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 20 - }, - { - "name": "angular_ortho/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 19 - }, - { - "name": "linear_limit/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - }, - { - "name": "linear_limit/lower_distance", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 1 - }, - { - "name": "linear_limit/restitution", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 3 - }, - { - "name": "linear_limit/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 2 - }, - { - "name": "linear_limit/upper_distance", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 0 - }, - { - "name": "linear_motion/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 7 - }, - { - "name": "linear_motion/restitution", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 6 - }, - { - "name": "linear_motion/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "linear_ortho/damping", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 10 - }, - { - "name": "linear_ortho/restitution", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 9 - }, - { - "name": "linear_ortho/softness", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 8 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_lower_limit_angular", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_upper_limit_angular", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_lower_limit_angular", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "lower_limit_angular", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_upper_limit_angular", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "upper_limit_angular", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_param", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Param", - "values": { - "PARAM_LINEAR_LIMIT_UPPER": 0, - "PARAM_LINEAR_LIMIT_LOWER": 1, - "PARAM_LINEAR_LIMIT_SOFTNESS": 2, - "PARAM_LINEAR_LIMIT_RESTITUTION": 3, - "PARAM_LINEAR_LIMIT_DAMPING": 4, - "PARAM_LINEAR_MOTION_SOFTNESS": 5, - "PARAM_LINEAR_MOTION_RESTITUTION": 6, - "PARAM_LINEAR_MOTION_DAMPING": 7, - "PARAM_LINEAR_ORTHOGONAL_SOFTNESS": 8, - "PARAM_LINEAR_ORTHOGONAL_RESTITUTION": 9, - "PARAM_LINEAR_ORTHOGONAL_DAMPING": 10, - "PARAM_ANGULAR_LIMIT_UPPER": 11, - "PARAM_ANGULAR_LIMIT_LOWER": 12, - "PARAM_ANGULAR_LIMIT_SOFTNESS": 13, - "PARAM_ANGULAR_LIMIT_RESTITUTION": 14, - "PARAM_ANGULAR_LIMIT_DAMPING": 15, - "PARAM_ANGULAR_MOTION_SOFTNESS": 16, - "PARAM_ANGULAR_MOTION_RESTITUTION": 17, - "PARAM_ANGULAR_MOTION_DAMPING": 18, - "PARAM_ANGULAR_ORTHOGONAL_SOFTNESS": 19, - "PARAM_ANGULAR_ORTHOGONAL_RESTITUTION": 20, - "PARAM_ANGULAR_ORTHOGONAL_DAMPING": 21, - "PARAM_MAX": 22 - } - } - ] - }, - { - "name": "SoftBody", - "base_class": "MeshInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "areaAngular_stiffness", - "type": "float", - "getter": "get_areaAngular_stiffness", - "setter": "set_areaAngular_stiffness", - "index": -1 - }, - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "damping_coefficient", - "type": "float", - "getter": "get_damping_coefficient", - "setter": "set_damping_coefficient", - "index": -1 - }, - { - "name": "drag_coefficient", - "type": "float", - "getter": "get_drag_coefficient", - "setter": "set_drag_coefficient", - "index": -1 - }, - { - "name": "linear_stiffness", - "type": "float", - "getter": "get_linear_stiffness", - "setter": "set_linear_stiffness", - "index": -1 - }, - { - "name": "parent_collision_ignore", - "type": "NodePath", - "getter": "get_parent_collision_ignore", - "setter": "set_parent_collision_ignore", - "index": -1 - }, - { - "name": "physics_enabled", - "type": "bool", - "getter": "is_physics_enabled", - "setter": "set_physics_enabled", - "index": -1 - }, - { - "name": "pose_matching_coefficient", - "type": "float", - "getter": "get_pose_matching_coefficient", - "setter": "set_pose_matching_coefficient", - "index": -1 - }, - { - "name": "pressure_coefficient", - "type": "float", - "getter": "get_pressure_coefficient", - "setter": "set_pressure_coefficient", - "index": -1 - }, - { - "name": "ray_pickable", - "type": "bool", - "getter": "is_ray_pickable", - "setter": "set_ray_pickable", - "index": -1 - }, - { - "name": "simulation_precision", - "type": "int", - "getter": "get_simulation_precision", - "setter": "set_simulation_precision", - "index": -1 - }, - { - "name": "total_mass", - "type": "float", - "getter": "get_total_mass", - "setter": "set_total_mass", - "index": -1 - }, - { - "name": "volume_stiffness", - "type": "float", - "getter": "get_volume_stiffness", - "setter": "set_volume_stiffness", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_draw_soft_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_collision_exception_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_areaAngular_stiffness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_exceptions", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_damping_coefficient", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_coefficient", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_linear_stiffness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent_collision_ignore", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_transform", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pose_matching_coefficient", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pressure_coefficient", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_simulation_precision", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_mass", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_volume_stiffness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_physics_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_point_pinned", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_ray_pickable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_collision_exception_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "body", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_areaAngular_stiffness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "areaAngular_stiffness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "collision_layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "collision_mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_damping_coefficient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "damping_coefficient", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drag_coefficient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "drag_coefficient", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_linear_stiffness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "linear_stiffness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_parent_collision_ignore", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "parent_collision_ignore", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_pinned", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point_index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pinned", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "attachment_path", - "type": "NodePath", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "set_pose_matching_coefficient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pose_matching_coefficient", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressure_coefficient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pressure_coefficient", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ray_pickable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ray_pickable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_simulation_precision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "simulation_precision", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_total_mass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mass", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_volume_stiffness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "volume_stiffness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Spatial", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "NOTIFICATION_ENTER_GAMEPLAY": 45, - "NOTIFICATION_ENTER_WORLD": 41, - "NOTIFICATION_EXIT_GAMEPLAY": 46, - "NOTIFICATION_EXIT_WORLD": 42, - "NOTIFICATION_TRANSFORM_CHANGED": 2000, - "NOTIFICATION_VISIBILITY_CHANGED": 43 - }, - "properties": [ - { - "name": "gizmo", - "type": "SpatialGizmo", - "getter": "get_gizmo", - "setter": "set_gizmo", - "index": -1 - }, - { - "name": "global_transform", - "type": "Transform", - "getter": "get_global_transform", - "setter": "set_global_transform", - "index": -1 - }, - { - "name": "rotation", - "type": "Vector3", - "getter": "get_rotation", - "setter": "set_rotation", - "index": -1 - }, - { - "name": "rotation_degrees", - "type": "Vector3", - "getter": "get_rotation_degrees", - "setter": "set_rotation_degrees", - "index": -1 - }, - { - "name": "scale", - "type": "Vector3", - "getter": "get_scale", - "setter": "set_scale", - "index": -1 - }, - { - "name": "transform", - "type": "Transform", - "getter": "get_transform", - "setter": "set_transform", - "index": -1 - }, - { - "name": "translation", - "type": "Vector3", - "getter": "get_translation", - "setter": "set_translation", - "index": -1 - }, - { - "name": "visible", - "type": "bool", - "getter": "is_visible", - "setter": "set_visible", - "index": -1 - } - ], - "signals": [ - { - "name": "gameplay_entered", - "arguments": [ - ] - }, - { - "name": "gameplay_exited", - "arguments": [ - ] - }, - { - "name": "visibility_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_update_gizmo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "force_update_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gizmo", - "return_type": "SpatialGizmo", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_parent_spatial", - "return_type": "Spatial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rotation_degrees", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scale", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_translation", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_world", - "return_type": "World", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "global_rotate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "global_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "global_translate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "hide", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_local_transform_notification_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_scale_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_set_as_toplevel", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_transform_notification_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_visible_in_tree", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "look_at", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "look_at_from_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "up", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "orthonormalize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "rotate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rotate_object_local", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rotate_x", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rotate_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rotate_z", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "angle", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scale_object_local", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_as_toplevel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_gizmo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "gizmo", - "type": "SpatialGizmo", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "global", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_identity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_ignore_transform_notification", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_notify_local_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_notify_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "euler", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rotation_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "euler_degrees", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_translation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "translation", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "show", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "to_global", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "to_local", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "global_point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "translate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "translate_object_local", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_gizmo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "SpatialGizmo", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "SpatialMaterial", - "base_class": "Material", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "ASYNC_MODE_HIDDEN": 1, - "ASYNC_MODE_VISIBLE": 0, - "BILLBOARD_DISABLED": 0, - "BILLBOARD_ENABLED": 1, - "BILLBOARD_FIXED_Y": 2, - "BILLBOARD_PARTICLES": 3, - "BLEND_MODE_ADD": 1, - "BLEND_MODE_MIX": 0, - "BLEND_MODE_MUL": 3, - "BLEND_MODE_SUB": 2, - "CULL_BACK": 0, - "CULL_DISABLED": 2, - "CULL_FRONT": 1, - "DEPTH_DRAW_ALPHA_OPAQUE_PREPASS": 3, - "DEPTH_DRAW_ALWAYS": 1, - "DEPTH_DRAW_DISABLED": 2, - "DEPTH_DRAW_OPAQUE_ONLY": 0, - "DETAIL_UV_1": 0, - "DETAIL_UV_2": 1, - "DIFFUSE_BURLEY": 0, - "DIFFUSE_LAMBERT": 1, - "DIFFUSE_LAMBERT_WRAP": 2, - "DIFFUSE_OREN_NAYAR": 3, - "DIFFUSE_TOON": 4, - "DISTANCE_FADE_DISABLED": 0, - "DISTANCE_FADE_OBJECT_DITHER": 3, - "DISTANCE_FADE_PIXEL_ALPHA": 1, - "DISTANCE_FADE_PIXEL_DITHER": 2, - "EMISSION_OP_ADD": 0, - "EMISSION_OP_MULTIPLY": 1, - "FEATURE_AMBIENT_OCCLUSION": 6, - "FEATURE_ANISOTROPY": 5, - "FEATURE_CLEARCOAT": 4, - "FEATURE_DEPTH_MAPPING": 7, - "FEATURE_DETAIL": 11, - "FEATURE_EMISSION": 1, - "FEATURE_MAX": 12, - "FEATURE_NORMAL_MAPPING": 2, - "FEATURE_REFRACTION": 10, - "FEATURE_RIM": 3, - "FEATURE_SUBSURACE_SCATTERING": 8, - "FEATURE_TRANSMISSION": 9, - "FEATURE_TRANSPARENT": 0, - "FLAG_ALBEDO_FROM_VERTEX_COLOR": 3, - "FLAG_ALBEDO_TEXTURE_FORCE_SRGB": 14, - "FLAG_AO_ON_UV2": 11, - "FLAG_BILLBOARD_KEEP_SCALE": 7, - "FLAG_DISABLE_AMBIENT_LIGHT": 17, - "FLAG_DISABLE_DEPTH_TEST": 2, - "FLAG_DONT_RECEIVE_SHADOWS": 15, - "FLAG_EMISSION_ON_UV2": 12, - "FLAG_ENSURE_CORRECT_NORMALS": 16, - "FLAG_FIXED_SIZE": 6, - "FLAG_MAX": 19, - "FLAG_SRGB_VERTEX_COLOR": 4, - "FLAG_TRIPLANAR_USE_WORLD": 10, - "FLAG_UNSHADED": 0, - "FLAG_USE_ALPHA_SCISSOR": 13, - "FLAG_USE_POINT_SIZE": 5, - "FLAG_USE_SHADOW_TO_OPACITY": 18, - "FLAG_USE_VERTEX_LIGHTING": 1, - "FLAG_UV1_USE_TRIPLANAR": 8, - "FLAG_UV2_USE_TRIPLANAR": 9, - "SPECULAR_BLINN": 1, - "SPECULAR_DISABLED": 4, - "SPECULAR_PHONG": 2, - "SPECULAR_SCHLICK_GGX": 0, - "SPECULAR_TOON": 3, - "TEXTURE_ALBEDO": 0, - "TEXTURE_AMBIENT_OCCLUSION": 8, - "TEXTURE_CHANNEL_ALPHA": 3, - "TEXTURE_CHANNEL_BLUE": 2, - "TEXTURE_CHANNEL_GRAYSCALE": 4, - "TEXTURE_CHANNEL_GREEN": 1, - "TEXTURE_CHANNEL_RED": 0, - "TEXTURE_CLEARCOAT": 6, - "TEXTURE_DEPTH": 9, - "TEXTURE_DETAIL_ALBEDO": 14, - "TEXTURE_DETAIL_MASK": 13, - "TEXTURE_DETAIL_NORMAL": 15, - "TEXTURE_EMISSION": 3, - "TEXTURE_FLOWMAP": 7, - "TEXTURE_MAX": 16, - "TEXTURE_METALLIC": 1, - "TEXTURE_NORMAL": 4, - "TEXTURE_REFRACTION": 12, - "TEXTURE_RIM": 5, - "TEXTURE_ROUGHNESS": 2, - "TEXTURE_SUBSURFACE_SCATTERING": 10, - "TEXTURE_TRANSMISSION": 11 - }, - "properties": [ - { - "name": "albedo_color", - "type": "Color", - "getter": "get_albedo", - "setter": "set_albedo", - "index": -1 - }, - { - "name": "albedo_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 0 - }, - { - "name": "anisotropy", - "type": "float", - "getter": "get_anisotropy", - "setter": "set_anisotropy", - "index": -1 - }, - { - "name": "anisotropy_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 5 - }, - { - "name": "anisotropy_flowmap", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 7 - }, - { - "name": "ao_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 6 - }, - { - "name": "ao_light_affect", - "type": "float", - "getter": "get_ao_light_affect", - "setter": "set_ao_light_affect", - "index": -1 - }, - { - "name": "ao_on_uv2", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 11 - }, - { - "name": "ao_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 8 - }, - { - "name": "ao_texture_channel", - "type": "int", - "getter": "get_ao_texture_channel", - "setter": "set_ao_texture_channel", - "index": -1 - }, - { - "name": "async_mode", - "type": "int", - "getter": "get_async_mode", - "setter": "set_async_mode", - "index": -1 - }, - { - "name": "clearcoat", - "type": "float", - "getter": "get_clearcoat", - "setter": "set_clearcoat", - "index": -1 - }, - { - "name": "clearcoat_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 4 - }, - { - "name": "clearcoat_gloss", - "type": "float", - "getter": "get_clearcoat_gloss", - "setter": "set_clearcoat_gloss", - "index": -1 - }, - { - "name": "clearcoat_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 6 - }, - { - "name": "depth_deep_parallax", - "type": "bool", - "getter": "is_depth_deep_parallax_enabled", - "setter": "set_depth_deep_parallax", - "index": -1 - }, - { - "name": "depth_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 7 - }, - { - "name": "depth_flip_binormal", - "type": "bool", - "getter": "get_depth_deep_parallax_flip_binormal", - "setter": "set_depth_deep_parallax_flip_binormal", - "index": -1 - }, - { - "name": "depth_flip_tangent", - "type": "bool", - "getter": "get_depth_deep_parallax_flip_tangent", - "setter": "set_depth_deep_parallax_flip_tangent", - "index": -1 - }, - { - "name": "depth_max_layers", - "type": "int", - "getter": "get_depth_deep_parallax_max_layers", - "setter": "set_depth_deep_parallax_max_layers", - "index": -1 - }, - { - "name": "depth_min_layers", - "type": "int", - "getter": "get_depth_deep_parallax_min_layers", - "setter": "set_depth_deep_parallax_min_layers", - "index": -1 - }, - { - "name": "depth_scale", - "type": "float", - "getter": "get_depth_scale", - "setter": "set_depth_scale", - "index": -1 - }, - { - "name": "depth_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 9 - }, - { - "name": "detail_albedo", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 14 - }, - { - "name": "detail_blend_mode", - "type": "int", - "getter": "get_detail_blend_mode", - "setter": "set_detail_blend_mode", - "index": -1 - }, - { - "name": "detail_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 11 - }, - { - "name": "detail_mask", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 13 - }, - { - "name": "detail_normal", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 15 - }, - { - "name": "detail_uv_layer", - "type": "int", - "getter": "get_detail_uv", - "setter": "set_detail_uv", - "index": -1 - }, - { - "name": "distance_fade_max_distance", - "type": "float", - "getter": "get_distance_fade_max_distance", - "setter": "set_distance_fade_max_distance", - "index": -1 - }, - { - "name": "distance_fade_min_distance", - "type": "float", - "getter": "get_distance_fade_min_distance", - "setter": "set_distance_fade_min_distance", - "index": -1 - }, - { - "name": "distance_fade_mode", - "type": "int", - "getter": "get_distance_fade", - "setter": "set_distance_fade", - "index": -1 - }, - { - "name": "emission", - "type": "Color", - "getter": "get_emission", - "setter": "set_emission", - "index": -1 - }, - { - "name": "emission_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 1 - }, - { - "name": "emission_energy", - "type": "float", - "getter": "get_emission_energy", - "setter": "set_emission_energy", - "index": -1 - }, - { - "name": "emission_on_uv2", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 12 - }, - { - "name": "emission_operator", - "type": "int", - "getter": "get_emission_operator", - "setter": "set_emission_operator", - "index": -1 - }, - { - "name": "emission_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 3 - }, - { - "name": "flags_albedo_tex_force_srgb", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 14 - }, - { - "name": "flags_disable_ambient_light", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 17 - }, - { - "name": "flags_do_not_receive_shadows", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 15 - }, - { - "name": "flags_ensure_correct_normals", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 16 - }, - { - "name": "flags_fixed_size", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 6 - }, - { - "name": "flags_no_depth_test", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 2 - }, - { - "name": "flags_transparent", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 0 - }, - { - "name": "flags_unshaded", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 0 - }, - { - "name": "flags_use_point_size", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 5 - }, - { - "name": "flags_use_shadow_to_opacity", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 18 - }, - { - "name": "flags_vertex_lighting", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 1 - }, - { - "name": "flags_world_triplanar", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 10 - }, - { - "name": "metallic", - "type": "float", - "getter": "get_metallic", - "setter": "set_metallic", - "index": -1 - }, - { - "name": "metallic_specular", - "type": "float", - "getter": "get_specular", - "setter": "set_specular", - "index": -1 - }, - { - "name": "metallic_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 1 - }, - { - "name": "metallic_texture_channel", - "type": "int", - "getter": "get_metallic_texture_channel", - "setter": "set_metallic_texture_channel", - "index": -1 - }, - { - "name": "normal_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 2 - }, - { - "name": "normal_scale", - "type": "float", - "getter": "get_normal_scale", - "setter": "set_normal_scale", - "index": -1 - }, - { - "name": "normal_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 4 - }, - { - "name": "params_alpha_scissor_threshold", - "type": "float", - "getter": "get_alpha_scissor_threshold", - "setter": "set_alpha_scissor_threshold", - "index": -1 - }, - { - "name": "params_billboard_keep_scale", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 7 - }, - { - "name": "params_billboard_mode", - "type": "int", - "getter": "get_billboard_mode", - "setter": "set_billboard_mode", - "index": -1 - }, - { - "name": "params_blend_mode", - "type": "int", - "getter": "get_blend_mode", - "setter": "set_blend_mode", - "index": -1 - }, - { - "name": "params_cull_mode", - "type": "int", - "getter": "get_cull_mode", - "setter": "set_cull_mode", - "index": -1 - }, - { - "name": "params_depth_draw_mode", - "type": "int", - "getter": "get_depth_draw_mode", - "setter": "set_depth_draw_mode", - "index": -1 - }, - { - "name": "params_diffuse_mode", - "type": "int", - "getter": "get_diffuse_mode", - "setter": "set_diffuse_mode", - "index": -1 - }, - { - "name": "params_grow", - "type": "bool", - "getter": "is_grow_enabled", - "setter": "set_grow_enabled", - "index": -1 - }, - { - "name": "params_grow_amount", - "type": "float", - "getter": "get_grow", - "setter": "set_grow", - "index": -1 - }, - { - "name": "params_line_width", - "type": "float", - "getter": "get_line_width", - "setter": "set_line_width", - "index": -1 - }, - { - "name": "params_point_size", - "type": "float", - "getter": "get_point_size", - "setter": "set_point_size", - "index": -1 - }, - { - "name": "params_specular_mode", - "type": "int", - "getter": "get_specular_mode", - "setter": "set_specular_mode", - "index": -1 - }, - { - "name": "params_use_alpha_scissor", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 13 - }, - { - "name": "particles_anim_h_frames", - "type": "int", - "getter": "get_particles_anim_h_frames", - "setter": "set_particles_anim_h_frames", - "index": -1 - }, - { - "name": "particles_anim_loop", - "type": "bool", - "getter": "get_particles_anim_loop", - "setter": "set_particles_anim_loop", - "index": -1 - }, - { - "name": "particles_anim_v_frames", - "type": "int", - "getter": "get_particles_anim_v_frames", - "setter": "set_particles_anim_v_frames", - "index": -1 - }, - { - "name": "proximity_fade_distance", - "type": "float", - "getter": "get_proximity_fade_distance", - "setter": "set_proximity_fade_distance", - "index": -1 - }, - { - "name": "proximity_fade_enable", - "type": "bool", - "getter": "is_proximity_fade_enabled", - "setter": "set_proximity_fade", - "index": -1 - }, - { - "name": "refraction_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 10 - }, - { - "name": "refraction_scale", - "type": "float", - "getter": "get_refraction", - "setter": "set_refraction", - "index": -1 - }, - { - "name": "refraction_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 12 - }, - { - "name": "refraction_texture_channel", - "type": "int", - "getter": "get_refraction_texture_channel", - "setter": "set_refraction_texture_channel", - "index": -1 - }, - { - "name": "rim", - "type": "float", - "getter": "get_rim", - "setter": "set_rim", - "index": -1 - }, - { - "name": "rim_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 3 - }, - { - "name": "rim_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 5 - }, - { - "name": "rim_tint", - "type": "float", - "getter": "get_rim_tint", - "setter": "set_rim_tint", - "index": -1 - }, - { - "name": "roughness", - "type": "float", - "getter": "get_roughness", - "setter": "set_roughness", - "index": -1 - }, - { - "name": "roughness_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 2 - }, - { - "name": "roughness_texture_channel", - "type": "int", - "getter": "get_roughness_texture_channel", - "setter": "set_roughness_texture_channel", - "index": -1 - }, - { - "name": "subsurf_scatter_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 8 - }, - { - "name": "subsurf_scatter_strength", - "type": "float", - "getter": "get_subsurface_scattering_strength", - "setter": "set_subsurface_scattering_strength", - "index": -1 - }, - { - "name": "subsurf_scatter_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 10 - }, - { - "name": "transmission", - "type": "Color", - "getter": "get_transmission", - "setter": "set_transmission", - "index": -1 - }, - { - "name": "transmission_enabled", - "type": "bool", - "getter": "get_feature", - "setter": "set_feature", - "index": 9 - }, - { - "name": "transmission_texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": 11 - }, - { - "name": "uv1_offset", - "type": "Vector3", - "getter": "get_uv1_offset", - "setter": "set_uv1_offset", - "index": -1 - }, - { - "name": "uv1_scale", - "type": "Vector3", - "getter": "get_uv1_scale", - "setter": "set_uv1_scale", - "index": -1 - }, - { - "name": "uv1_triplanar", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 8 - }, - { - "name": "uv1_triplanar_sharpness", - "type": "float", - "getter": "get_uv1_triplanar_blend_sharpness", - "setter": "set_uv1_triplanar_blend_sharpness", - "index": -1 - }, - { - "name": "uv2_offset", - "type": "Vector3", - "getter": "get_uv2_offset", - "setter": "set_uv2_offset", - "index": -1 - }, - { - "name": "uv2_scale", - "type": "Vector3", - "getter": "get_uv2_scale", - "setter": "set_uv2_scale", - "index": -1 - }, - { - "name": "uv2_triplanar", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 9 - }, - { - "name": "uv2_triplanar_sharpness", - "type": "float", - "getter": "get_uv2_triplanar_blend_sharpness", - "setter": "set_uv2_triplanar_blend_sharpness", - "index": -1 - }, - { - "name": "vertex_color_is_srgb", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 4 - }, - { - "name": "vertex_color_use_as_albedo", - "type": "bool", - "getter": "get_flag", - "setter": "set_flag", - "index": 3 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_albedo", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_alpha_scissor_threshold", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_anisotropy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ao_light_affect", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ao_texture_channel", - "return_type": "enum.SpatialMaterial::TextureChannel", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_async_mode", - "return_type": "enum.SpatialMaterial::AsyncMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_billboard_mode", - "return_type": "enum.SpatialMaterial::BillboardMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_blend_mode", - "return_type": "enum.SpatialMaterial::BlendMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_clearcoat", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_clearcoat_gloss", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cull_mode", - "return_type": "enum.SpatialMaterial::CullMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth_deep_parallax_flip_binormal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth_deep_parallax_flip_tangent", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth_deep_parallax_max_layers", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth_deep_parallax_min_layers", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth_draw_mode", - "return_type": "enum.SpatialMaterial::DepthDrawMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_depth_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_detail_blend_mode", - "return_type": "enum.SpatialMaterial::BlendMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_detail_uv", - "return_type": "enum.SpatialMaterial::DetailUV", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_diffuse_mode", - "return_type": "enum.SpatialMaterial::DiffuseMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_distance_fade", - "return_type": "enum.SpatialMaterial::DistanceFadeMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_distance_fade_max_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_distance_fade_min_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_emission_operator", - "return_type": "enum.SpatialMaterial::EmissionOperator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_feature", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_grow", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_width", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_metallic", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_metallic_texture_channel", - "return_type": "enum.SpatialMaterial::TextureChannel", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_anim_h_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_anim_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_particles_anim_v_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_point_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_proximity_fade_distance", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_refraction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_refraction_texture_channel", - "return_type": "enum.SpatialMaterial::TextureChannel", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rim", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rim_tint", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roughness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roughness_texture_channel", - "return_type": "enum.SpatialMaterial::TextureChannel", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_specular", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_specular_mode", - "return_type": "enum.SpatialMaterial::SpecularMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_subsurface_scattering_strength", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_transmission", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv1_offset", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv1_scale", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv1_triplanar_blend_sharpness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv2_offset", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv2_scale", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_uv2_triplanar_blend_sharpness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_depth_deep_parallax_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_grow_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_proximity_fade_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_albedo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "albedo", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_alpha_scissor_threshold", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "threshold", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_anisotropy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anisotropy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ao_light_affect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ao_texture_channel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_async_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_billboard_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_blend_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "blend_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clearcoat", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "clearcoat", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clearcoat_gloss", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "clearcoat_gloss", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cull_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "cull_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_deep_parallax", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_deep_parallax_flip_binormal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_deep_parallax_flip_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_deep_parallax_max_layers", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_deep_parallax_min_layers", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_draw_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth_draw_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_depth_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "depth_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_detail_blend_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "detail_blend_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_detail_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "detail_uv", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_diffuse_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "diffuse_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_distance_fade", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_distance_fade_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_distance_fade_min_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "emission", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "emission_energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_emission_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "operator", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_feature", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_grow", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_grow_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_line_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line_width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_metallic", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "metallic", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_metallic_texture_channel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_anim_h_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_anim_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "loop", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_particles_anim_v_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frames", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_point_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_proximity_fade", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_proximity_fade_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_refraction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "refraction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_refraction_texture_channel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rim", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rim", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rim_tint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rim_tint", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roughness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "roughness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roughness_texture_channel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "channel", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_specular", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "specular", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_specular_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "specular_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_subsurface_scattering_strength", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "strength", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transmission", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "transmission", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv1_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv1_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv1_triplanar_blend_sharpness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sharpness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv2_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv2_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_uv2_triplanar_blend_sharpness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sharpness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AsyncMode", - "values": { - "ASYNC_MODE_VISIBLE": 0, - "ASYNC_MODE_HIDDEN": 1 - } - }, - { - "name": "EmissionOperator", - "values": { - "EMISSION_OP_ADD": 0, - "EMISSION_OP_MULTIPLY": 1 - } - }, - { - "name": "DiffuseMode", - "values": { - "DIFFUSE_BURLEY": 0, - "DIFFUSE_LAMBERT": 1, - "DIFFUSE_LAMBERT_WRAP": 2, - "DIFFUSE_OREN_NAYAR": 3, - "DIFFUSE_TOON": 4 - } - }, - { - "name": "SpecularMode", - "values": { - "SPECULAR_SCHLICK_GGX": 0, - "SPECULAR_BLINN": 1, - "SPECULAR_PHONG": 2, - "SPECULAR_TOON": 3, - "SPECULAR_DISABLED": 4 - } - }, - { - "name": "Feature", - "values": { - "FEATURE_TRANSPARENT": 0, - "FEATURE_EMISSION": 1, - "FEATURE_NORMAL_MAPPING": 2, - "FEATURE_RIM": 3, - "FEATURE_CLEARCOAT": 4, - "FEATURE_ANISOTROPY": 5, - "FEATURE_AMBIENT_OCCLUSION": 6, - "FEATURE_DEPTH_MAPPING": 7, - "FEATURE_SUBSURACE_SCATTERING": 8, - "FEATURE_TRANSMISSION": 9, - "FEATURE_REFRACTION": 10, - "FEATURE_DETAIL": 11, - "FEATURE_MAX": 12 - } - }, - { - "name": "Flags", - "values": { - "FLAG_UNSHADED": 0, - "FLAG_USE_VERTEX_LIGHTING": 1, - "FLAG_DISABLE_DEPTH_TEST": 2, - "FLAG_ALBEDO_FROM_VERTEX_COLOR": 3, - "FLAG_SRGB_VERTEX_COLOR": 4, - "FLAG_USE_POINT_SIZE": 5, - "FLAG_FIXED_SIZE": 6, - "FLAG_BILLBOARD_KEEP_SCALE": 7, - "FLAG_UV1_USE_TRIPLANAR": 8, - "FLAG_UV2_USE_TRIPLANAR": 9, - "FLAG_TRIPLANAR_USE_WORLD": 10, - "FLAG_AO_ON_UV2": 11, - "FLAG_EMISSION_ON_UV2": 12, - "FLAG_USE_ALPHA_SCISSOR": 13, - "FLAG_ALBEDO_TEXTURE_FORCE_SRGB": 14, - "FLAG_DONT_RECEIVE_SHADOWS": 15, - "FLAG_ENSURE_CORRECT_NORMALS": 16, - "FLAG_DISABLE_AMBIENT_LIGHT": 17, - "FLAG_USE_SHADOW_TO_OPACITY": 18, - "FLAG_MAX": 19 - } - }, - { - "name": "CullMode", - "values": { - "CULL_BACK": 0, - "CULL_FRONT": 1, - "CULL_DISABLED": 2 - } - }, - { - "name": "DetailUV", - "values": { - "DETAIL_UV_1": 0, - "DETAIL_UV_2": 1 - } - }, - { - "name": "DistanceFadeMode", - "values": { - "DISTANCE_FADE_DISABLED": 0, - "DISTANCE_FADE_PIXEL_ALPHA": 1, - "DISTANCE_FADE_PIXEL_DITHER": 2, - "DISTANCE_FADE_OBJECT_DITHER": 3 - } - }, - { - "name": "BillboardMode", - "values": { - "BILLBOARD_DISABLED": 0, - "BILLBOARD_ENABLED": 1, - "BILLBOARD_FIXED_Y": 2, - "BILLBOARD_PARTICLES": 3 - } - }, - { - "name": "DepthDrawMode", - "values": { - "DEPTH_DRAW_OPAQUE_ONLY": 0, - "DEPTH_DRAW_ALWAYS": 1, - "DEPTH_DRAW_DISABLED": 2, - "DEPTH_DRAW_ALPHA_OPAQUE_PREPASS": 3 - } - }, - { - "name": "TextureChannel", - "values": { - "TEXTURE_CHANNEL_RED": 0, - "TEXTURE_CHANNEL_GREEN": 1, - "TEXTURE_CHANNEL_BLUE": 2, - "TEXTURE_CHANNEL_ALPHA": 3, - "TEXTURE_CHANNEL_GRAYSCALE": 4 - } - }, - { - "name": "BlendMode", - "values": { - "BLEND_MODE_MIX": 0, - "BLEND_MODE_ADD": 1, - "BLEND_MODE_SUB": 2, - "BLEND_MODE_MUL": 3 - } - }, - { - "name": "TextureParam", - "values": { - "TEXTURE_ALBEDO": 0, - "TEXTURE_METALLIC": 1, - "TEXTURE_ROUGHNESS": 2, - "TEXTURE_EMISSION": 3, - "TEXTURE_NORMAL": 4, - "TEXTURE_RIM": 5, - "TEXTURE_CLEARCOAT": 6, - "TEXTURE_FLOWMAP": 7, - "TEXTURE_AMBIENT_OCCLUSION": 8, - "TEXTURE_DEPTH": 9, - "TEXTURE_SUBSURFACE_SCATTERING": 10, - "TEXTURE_TRANSMISSION": 11, - "TEXTURE_REFRACTION": 12, - "TEXTURE_DETAIL_MASK": 13, - "TEXTURE_DETAIL_ALBEDO": 14, - "TEXTURE_DETAIL_NORMAL": 15, - "TEXTURE_MAX": 16 - } - } - ] - }, - { - "name": "SpatialVelocityTracker", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "track_physics_step", - "type": "bool", - "getter": "is_tracking_physics_step", - "setter": "set_track_physics_step", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_tracked_linear_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_tracking_physics_step", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_track_physics_step", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SphereMesh", - "base_class": "PrimitiveMesh", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "height", - "type": "float", - "getter": "get_height", - "setter": "set_height", - "index": -1 - }, - { - "name": "is_hemisphere", - "type": "bool", - "getter": "get_is_hemisphere", - "setter": "set_is_hemisphere", - "index": -1 - }, - { - "name": "radial_segments", - "type": "int", - "getter": "get_radial_segments", - "setter": "set_radial_segments", - "index": -1 - }, - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "rings", - "type": "int", - "getter": "get_rings", - "setter": "set_rings", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_height", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_is_hemisphere", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radial_segments", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rings", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_is_hemisphere", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "is_hemisphere", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radial_segments", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radial_segments", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rings", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rings", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SphereShape", - "base_class": "Shape", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SpinBox", - "base_class": "Range", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "align", - "type": "int", - "getter": "get_align", - "setter": "set_align", - "index": -1 - }, - { - "name": "editable", - "type": "bool", - "getter": "is_editable", - "setter": "set_editable", - "index": -1 - }, - { - "name": "prefix", - "type": "String", - "getter": "get_prefix", - "setter": "set_prefix", - "index": -1 - }, - { - "name": "suffix", - "type": "String", - "getter": "get_suffix", - "setter": "set_suffix", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_line_edit_focus_exit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_line_edit_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_range_click_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_text_entered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "apply", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_align", - "return_type": "enum.LineEdit::Align", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_edit", - "return_type": "LineEdit", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_prefix", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_suffix", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_editable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "editable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_prefix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "prefix", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_suffix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "suffix", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SplitContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "DRAGGER_HIDDEN": 1, - "DRAGGER_HIDDEN_COLLAPSED": 2, - "DRAGGER_VISIBLE": 0 - }, - "properties": [ - { - "name": "collapsed", - "type": "bool", - "getter": "is_collapsed", - "setter": "set_collapsed", - "index": -1 - }, - { - "name": "dragger_visibility", - "type": "int", - "getter": "get_dragger_visibility", - "setter": "set_dragger_visibility", - "index": -1 - }, - { - "name": "split_offset", - "type": "int", - "getter": "get_split_offset", - "setter": "set_split_offset", - "index": -1 - } - ], - "signals": [ - { - "name": "dragged", - "arguments": [ - { - "name": "offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clamp_split_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_dragger_visibility", - "return_type": "enum.SplitContainer::DraggerVisibility", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_split_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_collapsed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_collapsed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "collapsed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_dragger_visibility", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_split_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DraggerVisibility", - "values": { - "DRAGGER_VISIBLE": 0, - "DRAGGER_HIDDEN": 1, - "DRAGGER_HIDDEN_COLLAPSED": 2 - } - } - ] - }, - { - "name": "SpotLight", - "base_class": "Light", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "spot_angle", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 6 - }, - { - "name": "spot_angle_attenuation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 7 - }, - { - "name": "spot_attenuation", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 5 - }, - { - "name": "spot_range", - "type": "float", - "getter": "get_param", - "setter": "set_param", - "index": 4 - } - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "SpringArm", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "margin", - "type": "float", - "getter": "get_margin", - "setter": "set_margin", - "index": -1 - }, - { - "name": "shape", - "type": "Shape", - "getter": "get_shape", - "setter": "set_shape", - "index": -1 - }, - { - "name": "spring_length", - "type": "float", - "getter": "get_length", - "setter": "set_length", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_excluded_object", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "RID", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_excluded_objects", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hit_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape", - "return_type": "Shape", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_excluded_object", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "RID", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Shape", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Sprite", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "centered", - "type": "bool", - "getter": "is_centered", - "setter": "set_centered", - "index": -1 - }, - { - "name": "flip_h", - "type": "bool", - "getter": "is_flipped_h", - "setter": "set_flip_h", - "index": -1 - }, - { - "name": "flip_v", - "type": "bool", - "getter": "is_flipped_v", - "setter": "set_flip_v", - "index": -1 - }, - { - "name": "frame", - "type": "int", - "getter": "get_frame", - "setter": "set_frame", - "index": -1 - }, - { - "name": "frame_coords", - "type": "Vector2", - "getter": "get_frame_coords", - "setter": "set_frame_coords", - "index": -1 - }, - { - "name": "hframes", - "type": "int", - "getter": "get_hframes", - "setter": "set_hframes", - "index": -1 - }, - { - "name": "normal_map", - "type": "Texture", - "getter": "get_normal_map", - "setter": "set_normal_map", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "region_enabled", - "type": "bool", - "getter": "is_region", - "setter": "set_region", - "index": -1 - }, - { - "name": "region_filter_clip", - "type": "bool", - "getter": "is_region_filter_clip_enabled", - "setter": "set_region_filter_clip", - "index": -1 - }, - { - "name": "region_rect", - "type": "Rect2", - "getter": "get_region_rect", - "setter": "set_region_rect", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "vframes", - "type": "int", - "getter": "get_vframes", - "setter": "set_vframes", - "index": -1 - } - ], - "signals": [ - { - "name": "frame_changed", - "arguments": [ - ] - }, - { - "name": "texture_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_texture_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame_coords", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hframes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_map", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_region_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vframes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_centered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_h", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_v", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_pixel_opaque", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pos", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_region", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_region_filter_clip_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_centered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "centered", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_h", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_h", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_v", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_v", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame_coords", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "coords", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hframes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hframes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal_map", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_filter_clip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vframes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vframes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Sprite3D", - "base_class": "SpriteBase3D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "frame", - "type": "int", - "getter": "get_frame", - "setter": "set_frame", - "index": -1 - }, - { - "name": "frame_coords", - "type": "Vector2", - "getter": "get_frame_coords", - "setter": "set_frame_coords", - "index": -1 - }, - { - "name": "hframes", - "type": "int", - "getter": "get_hframes", - "setter": "set_hframes", - "index": -1 - }, - { - "name": "region_enabled", - "type": "bool", - "getter": "is_region", - "setter": "set_region", - "index": -1 - }, - { - "name": "region_rect", - "type": "Rect2", - "getter": "get_region_rect", - "setter": "set_region_rect", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "vframes", - "type": "int", - "getter": "get_vframes", - "setter": "set_vframes", - "index": -1 - } - ], - "signals": [ - { - "name": "frame_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_frame", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frame_coords", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hframes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_region_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vframes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_region", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "frame", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame_coords", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "coords", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hframes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hframes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vframes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vframes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "SpriteBase3D", - "base_class": "GeometryInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "ALPHA_CUT_DISABLED": 0, - "ALPHA_CUT_DISCARD": 1, - "ALPHA_CUT_OPAQUE_PREPASS": 2, - "FLAG_DOUBLE_SIDED": 2, - "FLAG_MAX": 3, - "FLAG_SHADED": 1, - "FLAG_TRANSPARENT": 0 - }, - "properties": [ - { - "name": "alpha_cut", - "type": "int", - "getter": "get_alpha_cut_mode", - "setter": "set_alpha_cut_mode", - "index": -1 - }, - { - "name": "axis", - "type": "int", - "getter": "get_axis", - "setter": "set_axis", - "index": -1 - }, - { - "name": "billboard", - "type": "int", - "getter": "get_billboard_mode", - "setter": "set_billboard_mode", - "index": -1 - }, - { - "name": "centered", - "type": "bool", - "getter": "is_centered", - "setter": "set_centered", - "index": -1 - }, - { - "name": "double_sided", - "type": "bool", - "getter": "get_draw_flag", - "setter": "set_draw_flag", - "index": 2 - }, - { - "name": "flip_h", - "type": "bool", - "getter": "is_flipped_h", - "setter": "set_flip_h", - "index": -1 - }, - { - "name": "flip_v", - "type": "bool", - "getter": "is_flipped_v", - "setter": "set_flip_v", - "index": -1 - }, - { - "name": "modulate", - "type": "Color", - "getter": "get_modulate", - "setter": "set_modulate", - "index": -1 - }, - { - "name": "offset", - "type": "Vector2", - "getter": "get_offset", - "setter": "set_offset", - "index": -1 - }, - { - "name": "opacity", - "type": "float", - "getter": "get_opacity", - "setter": "set_opacity", - "index": -1 - }, - { - "name": "pixel_size", - "type": "float", - "getter": "get_pixel_size", - "setter": "set_pixel_size", - "index": -1 - }, - { - "name": "shaded", - "type": "bool", - "getter": "get_draw_flag", - "setter": "set_draw_flag", - "index": 1 - }, - { - "name": "transparent", - "type": "bool", - "getter": "get_draw_flag", - "setter": "set_draw_flag", - "index": 0 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_im_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_queue_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "generate_triangle_mesh", - "return_type": "TriangleMesh", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_alpha_cut_mode", - "return_type": "enum.SpriteBase3D::AlphaCutMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_axis", - "return_type": "enum.Vector3::Axis", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_billboard_mode", - "return_type": "enum.SpatialMaterial::BillboardMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_draw_flag", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_item_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_opacity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pixel_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_centered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_h", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_v", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_alpha_cut_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_axis", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "axis", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_billboard_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_centered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "centered", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_h", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_h", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_v", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip_v", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "modulate", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_opacity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "opacity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pixel_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pixel_size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DrawFlags", - "values": { - "FLAG_TRANSPARENT": 0, - "FLAG_SHADED": 1, - "FLAG_DOUBLE_SIDED": 2, - "FLAG_MAX": 3 - } - }, - { - "name": "AlphaCutMode", - "values": { - "ALPHA_CUT_DISABLED": 0, - "ALPHA_CUT_DISCARD": 1, - "ALPHA_CUT_OPAQUE_PREPASS": 2 - } - } - ] - }, - { - "name": "SpriteFrames", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "animations", - "type": "Array", - "getter": "_get_animations", - "setter": "_set_animations", - "index": -1 - }, - { - "name": "frames", - "type": "Array", - "getter": "_get_frames", - "setter": "_set_frames", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_animations", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_frames", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_animations", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_frames", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "frame", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "at_position", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_animation_loop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_animation_names", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_animation_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_frame", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_frame_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_animation", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_animation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "newname", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_animation_loop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "loop", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_animation_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_frame", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anim", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "txt", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StaticBody", - "base_class": "PhysicsBody", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "bounce", - "type": "float", - "getter": "get_bounce", - "setter": "set_bounce", - "index": -1 - }, - { - "name": "constant_angular_velocity", - "type": "Vector3", - "getter": "get_constant_angular_velocity", - "setter": "set_constant_angular_velocity", - "index": -1 - }, - { - "name": "constant_linear_velocity", - "type": "Vector3", - "getter": "get_constant_linear_velocity", - "setter": "set_constant_linear_velocity", - "index": -1 - }, - { - "name": "friction", - "type": "float", - "getter": "get_friction", - "setter": "set_friction", - "index": -1 - }, - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "getter": "get_physics_material_override", - "setter": "set_physics_material_override", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_reload_physics_characteristics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant_angular_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant_linear_velocity", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_material_override", - "return_type": "PhysicsMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constant_angular_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vel", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constant_linear_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vel", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "friction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_material_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StaticBody2D", - "base_class": "PhysicsBody2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "bounce", - "type": "float", - "getter": "get_bounce", - "setter": "set_bounce", - "index": -1 - }, - { - "name": "constant_angular_velocity", - "type": "float", - "getter": "get_constant_angular_velocity", - "setter": "set_constant_angular_velocity", - "index": -1 - }, - { - "name": "constant_linear_velocity", - "type": "Vector2", - "getter": "get_constant_linear_velocity", - "setter": "set_constant_linear_velocity", - "index": -1 - }, - { - "name": "friction", - "type": "float", - "getter": "get_friction", - "setter": "set_friction", - "index": -1 - }, - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "getter": "get_physics_material_override", - "setter": "set_physics_material_override", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_reload_physics_characteristics", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant_angular_velocity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant_linear_velocity", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_material_override", - "return_type": "PhysicsMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bounce", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constant_angular_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vel", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constant_linear_velocity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vel", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "friction", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_material_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "physics_material_override", - "type": "PhysicsMaterial", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StreamPeer", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "big_endian", - "type": "bool", - "getter": "is_big_endian_enabled", - "setter": "set_big_endian", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_16", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_32", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_64", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_8", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_available_bytes", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_double", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_float", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_partial_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_u16", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_u32", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_u64", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_u8", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_utf8_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bytes", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_var", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_big_endian_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "put_16", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_32", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_64", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_8", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_data", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_double", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_float", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_partial_data", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_string", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_u16", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_u32", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_u64", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_u8", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_utf8_string", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "put_var", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "full_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_big_endian", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StreamPeerBuffer", - "base_class": "StreamPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data_array", - "type": "PoolByteArray", - "getter": "get_data_array", - "setter": "set_data_array", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "duplicate", - "return_type": "StreamPeerBuffer", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_data_array", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "resize", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_data_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StreamPeerGDNative", - "base_class": "StreamPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "StreamPeerSSL", - "base_class": "StreamPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "STATUS_CONNECTED": 2, - "STATUS_DISCONNECTED": 0, - "STATUS_ERROR": 3, - "STATUS_ERROR_HOSTNAME_MISMATCH": 4, - "STATUS_HANDSHAKING": 1 - }, - "properties": [ - { - "name": "blocking_handshake", - "type": "bool", - "getter": "is_blocking_handshake_enabled", - "setter": "set_blocking_handshake_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "accept_stream", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "StreamPeer", - "has_default_value": false, - "default_value": "" - }, - { - "name": "private_key", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - }, - { - "name": "certificate", - "type": "X509Certificate", - "has_default_value": false, - "default_value": "" - }, - { - "name": "chain", - "type": "X509Certificate", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "connect_to_stream", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "StreamPeer", - "has_default_value": false, - "default_value": "" - }, - { - "name": "validate_certs", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "for_hostname", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "valid_certificate", - "type": "X509Certificate", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "disconnect_from_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_status", - "return_type": "enum.StreamPeerSSL::Status", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_blocking_handshake_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_blocking_handshake_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Status", - "values": { - "STATUS_DISCONNECTED": 0, - "STATUS_HANDSHAKING": 1, - "STATUS_CONNECTED": 2, - "STATUS_ERROR": 3, - "STATUS_ERROR_HOSTNAME_MISMATCH": 4 - } - } - ] - }, - { - "name": "StreamPeerTCP", - "base_class": "StreamPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "STATUS_CONNECTED": 2, - "STATUS_CONNECTING": 1, - "STATUS_ERROR": 3, - "STATUS_NONE": 0 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "connect_to_host", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "host", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "disconnect_from_host", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connected_host", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connected_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_status", - "return_type": "enum.StreamPeerTCP::Status", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_connected_to_host", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_no_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Status", - "values": { - "STATUS_NONE": 0, - "STATUS_CONNECTING": 1, - "STATUS_CONNECTED": 2, - "STATUS_ERROR": 3 - } - } - ] - }, - { - "name": "StreamTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "load_path", - "type": "String", - "getter": "get_load_path", - "setter": "load", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_load_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "load", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StyleBox", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "content_margin_bottom", - "type": "float", - "getter": "get_default_margin", - "setter": "set_default_margin", - "index": 3 - }, - { - "name": "content_margin_left", - "type": "float", - "getter": "get_default_margin", - "setter": "set_default_margin", - "index": 0 - }, - { - "name": "content_margin_right", - "type": "float", - "getter": "get_default_margin", - "setter": "set_default_margin", - "index": 2 - }, - { - "name": "content_margin_top", - "type": "float", - "getter": "get_default_margin", - "setter": "set_default_margin", - "index": 1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_center_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_item_drawn", - "return_type": "CanvasItem", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_minimum_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "test_mask", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StyleBoxEmpty", - "base_class": "StyleBox", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "StyleBoxFlat", - "base_class": "StyleBox", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "anti_aliasing", - "type": "bool", - "getter": "is_anti_aliased", - "setter": "set_anti_aliased", - "index": -1 - }, - { - "name": "anti_aliasing_size", - "type": "float", - "getter": "get_aa_size", - "setter": "set_aa_size", - "index": -1 - }, - { - "name": "bg_color", - "type": "Color", - "getter": "get_bg_color", - "setter": "set_bg_color", - "index": -1 - }, - { - "name": "border_blend", - "type": "bool", - "getter": "get_border_blend", - "setter": "set_border_blend", - "index": -1 - }, - { - "name": "border_color", - "type": "Color", - "getter": "get_border_color", - "setter": "set_border_color", - "index": -1 - }, - { - "name": "border_width_bottom", - "type": "int", - "getter": "get_border_width", - "setter": "set_border_width", - "index": 3 - }, - { - "name": "border_width_left", - "type": "int", - "getter": "get_border_width", - "setter": "set_border_width", - "index": 0 - }, - { - "name": "border_width_right", - "type": "int", - "getter": "get_border_width", - "setter": "set_border_width", - "index": 2 - }, - { - "name": "border_width_top", - "type": "int", - "getter": "get_border_width", - "setter": "set_border_width", - "index": 1 - }, - { - "name": "corner_detail", - "type": "int", - "getter": "get_corner_detail", - "setter": "set_corner_detail", - "index": -1 - }, - { - "name": "corner_radius_bottom_left", - "type": "int", - "getter": "get_corner_radius", - "setter": "set_corner_radius", - "index": 3 - }, - { - "name": "corner_radius_bottom_right", - "type": "int", - "getter": "get_corner_radius", - "setter": "set_corner_radius", - "index": 2 - }, - { - "name": "corner_radius_top_left", - "type": "int", - "getter": "get_corner_radius", - "setter": "set_corner_radius", - "index": 0 - }, - { - "name": "corner_radius_top_right", - "type": "int", - "getter": "get_corner_radius", - "setter": "set_corner_radius", - "index": 1 - }, - { - "name": "draw_center", - "type": "bool", - "getter": "is_draw_center_enabled", - "setter": "set_draw_center", - "index": -1 - }, - { - "name": "expand_margin_bottom", - "type": "float", - "getter": "get_expand_margin", - "setter": "set_expand_margin", - "index": 3 - }, - { - "name": "expand_margin_left", - "type": "float", - "getter": "get_expand_margin", - "setter": "set_expand_margin", - "index": 0 - }, - { - "name": "expand_margin_right", - "type": "float", - "getter": "get_expand_margin", - "setter": "set_expand_margin", - "index": 2 - }, - { - "name": "expand_margin_top", - "type": "float", - "getter": "get_expand_margin", - "setter": "set_expand_margin", - "index": 1 - }, - { - "name": "shadow_color", - "type": "Color", - "getter": "get_shadow_color", - "setter": "set_shadow_color", - "index": -1 - }, - { - "name": "shadow_offset", - "type": "Vector2", - "getter": "get_shadow_offset", - "setter": "set_shadow_offset", - "index": -1 - }, - { - "name": "shadow_size", - "type": "int", - "getter": "get_shadow_size", - "setter": "set_shadow_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_aa_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bg_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_border_blend", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_border_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_border_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_border_width_min", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_corner_detail", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_corner_radius", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "corner", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_expand_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_shadow_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shadow_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_anti_aliased", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_draw_center_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_aa_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_anti_aliased", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "anti_aliased", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_border_blend", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "blend", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_border_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_border_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_border_width_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_corner_detail", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "detail", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_corner_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "corner", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_corner_radius_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_corner_radius_individual", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius_top_left", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius_top_right", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius_bottom_right", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius_bottom_left", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_center", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "draw_center", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_margin_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_margin_individual", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size_left", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size_top", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size_right", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size_bottom", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StyleBoxLine", - "base_class": "StyleBox", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "color", - "type": "Color", - "getter": "get_color", - "setter": "set_color", - "index": -1 - }, - { - "name": "grow_begin", - "type": "float", - "getter": "get_grow_begin", - "setter": "set_grow_begin", - "index": -1 - }, - { - "name": "grow_end", - "type": "float", - "getter": "get_grow_end", - "setter": "set_grow_end", - "index": -1 - }, - { - "name": "thickness", - "type": "int", - "getter": "get_thickness", - "setter": "set_thickness", - "index": -1 - }, - { - "name": "vertical", - "type": "bool", - "getter": "is_vertical", - "setter": "set_vertical", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_grow_begin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_grow_end", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_thickness", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_vertical", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_grow_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_grow_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_thickness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "thickness", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vertical", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vertical", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "StyleBoxTexture", - "base_class": "StyleBox", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "AXIS_STRETCH_MODE_STRETCH": 0, - "AXIS_STRETCH_MODE_TILE": 1, - "AXIS_STRETCH_MODE_TILE_FIT": 2 - }, - "properties": [ - { - "name": "axis_stretch_horizontal", - "type": "int", - "getter": "get_h_axis_stretch_mode", - "setter": "set_h_axis_stretch_mode", - "index": -1 - }, - { - "name": "axis_stretch_vertical", - "type": "int", - "getter": "get_v_axis_stretch_mode", - "setter": "set_v_axis_stretch_mode", - "index": -1 - }, - { - "name": "draw_center", - "type": "bool", - "getter": "is_draw_center_enabled", - "setter": "set_draw_center", - "index": -1 - }, - { - "name": "expand_margin_bottom", - "type": "float", - "getter": "get_expand_margin_size", - "setter": "set_expand_margin_size", - "index": 3 - }, - { - "name": "expand_margin_left", - "type": "float", - "getter": "get_expand_margin_size", - "setter": "set_expand_margin_size", - "index": 0 - }, - { - "name": "expand_margin_right", - "type": "float", - "getter": "get_expand_margin_size", - "setter": "set_expand_margin_size", - "index": 2 - }, - { - "name": "expand_margin_top", - "type": "float", - "getter": "get_expand_margin_size", - "setter": "set_expand_margin_size", - "index": 1 - }, - { - "name": "margin_bottom", - "type": "float", - "getter": "get_margin_size", - "setter": "set_margin_size", - "index": 3 - }, - { - "name": "margin_left", - "type": "float", - "getter": "get_margin_size", - "setter": "set_margin_size", - "index": 0 - }, - { - "name": "margin_right", - "type": "float", - "getter": "get_margin_size", - "setter": "set_margin_size", - "index": 2 - }, - { - "name": "margin_top", - "type": "float", - "getter": "get_margin_size", - "setter": "set_margin_size", - "index": 1 - }, - { - "name": "modulate_color", - "type": "Color", - "getter": "get_modulate", - "setter": "set_modulate", - "index": -1 - }, - { - "name": "normal_map", - "type": "Texture", - "getter": "get_normal_map", - "setter": "set_normal_map", - "index": -1 - }, - { - "name": "region_rect", - "type": "Rect2", - "getter": "get_region_rect", - "setter": "set_region_rect", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - } - ], - "signals": [ - { - "name": "texture_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_expand_margin_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_h_axis_stretch_mode", - "return_type": "enum.StyleBoxTexture::AxisStretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_margin_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_map", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_region_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_axis_stretch_mode", - "return_type": "enum.StyleBoxTexture::AxisStretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_draw_center_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_draw_center", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_margin_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_margin_individual", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size_left", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size_top", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size_right", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size_bottom", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_margin_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_axis_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_margin_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal_map", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_region_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_axis_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AxisStretchMode", - "values": { - "AXIS_STRETCH_MODE_STRETCH": 0, - "AXIS_STRETCH_MODE_TILE": 1, - "AXIS_STRETCH_MODE_TILE_FIT": 2 - } - } - ] - }, - { - "name": "SurfaceTool", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_bones", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bones", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_normal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_smooth_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "smooth", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tangent", - "type": "Plane", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_triangle_fan", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vertices", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "uv2s", - "type": "PoolVector2Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "normals", - "type": "PoolVector3Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "tangents", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "add_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uv", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_uv2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uv2", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_vertex", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "vertex", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_weights", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "weights", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "append_from", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "existing", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "primitive", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "commit", - "return_type": "ArrayMesh", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "existing", - "type": "ArrayMesh", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "2194432" - } - ] - }, - { - "name": "commit_to_arrays", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_from", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "existing", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "create_from_blend_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "existing", - "type": "Mesh", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend_shape", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "deindex", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "generate_normals", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flip", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "generate_tangents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "Material", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "TCP_Server", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "is_connection_available", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_listening", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "listen", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bind_address", - "type": "String", - "has_default_value": true, - "default_value": "*" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "take_connection", - "return_type": "StreamPeerTCP", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "TabContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_LEFT": 0, - "ALIGN_RIGHT": 2 - }, - "properties": [ - { - "name": "all_tabs_in_front", - "type": "bool", - "getter": "is_all_tabs_in_front", - "setter": "set_all_tabs_in_front", - "index": -1 - }, - { - "name": "current_tab", - "type": "int", - "getter": "get_current_tab", - "setter": "set_current_tab", - "index": -1 - }, - { - "name": "drag_to_rearrange_enabled", - "type": "bool", - "getter": "get_drag_to_rearrange_enabled", - "setter": "set_drag_to_rearrange_enabled", - "index": -1 - }, - { - "name": "tab_align", - "type": "int", - "getter": "get_tab_align", - "setter": "set_tab_align", - "index": -1 - }, - { - "name": "tabs_visible", - "type": "bool", - "getter": "are_tabs_visible", - "setter": "set_tabs_visible", - "index": -1 - }, - { - "name": "use_hidden_tabs_for_min_size", - "type": "bool", - "getter": "get_use_hidden_tabs_for_min_size", - "setter": "set_use_hidden_tabs_for_min_size", - "index": -1 - } - ], - "signals": [ - { - "name": "pre_popup_pressed", - "arguments": [ - ] - }, - { - "name": "tab_changed", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tab_selected", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_child_renamed_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_on_mouse_exited", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_on_theme_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_repaint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_current_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "are_tabs_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_tab", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_tab_control", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_to_rearrange_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_popup", - "return_type": "Popup", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_previous_tab", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_align", - "return_type": "enum.TabContainer::TabAlign", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_control", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_hidden", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_idx_at_point", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_title", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tabs_rearrange_group", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_hidden_tabs_for_min_size", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_all_tabs_in_front", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_all_tabs_in_front", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "is_front", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drag_to_rearrange_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_popup", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "popup", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_hidden", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hidden", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tabs_rearrange_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tabs_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_hidden_tabs_for_min_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TabAlign", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2 - } - } - ] - }, - { - "name": "Tabs", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_LEFT": 0, - "ALIGN_MAX": 3, - "ALIGN_RIGHT": 2, - "CLOSE_BUTTON_MAX": 3, - "CLOSE_BUTTON_SHOW_ACTIVE_ONLY": 1, - "CLOSE_BUTTON_SHOW_ALWAYS": 2, - "CLOSE_BUTTON_SHOW_NEVER": 0 - }, - "properties": [ - { - "name": "current_tab", - "type": "int", - "getter": "get_current_tab", - "setter": "set_current_tab", - "index": -1 - }, - { - "name": "drag_to_rearrange_enabled", - "type": "bool", - "getter": "get_drag_to_rearrange_enabled", - "setter": "set_drag_to_rearrange_enabled", - "index": -1 - }, - { - "name": "scrolling_enabled", - "type": "bool", - "getter": "get_scrolling_enabled", - "setter": "set_scrolling_enabled", - "index": -1 - }, - { - "name": "tab_align", - "type": "int", - "getter": "get_tab_align", - "setter": "set_tab_align", - "index": -1 - }, - { - "name": "tab_close_display_policy", - "type": "int", - "getter": "get_tab_close_display_policy", - "setter": "set_tab_close_display_policy", - "index": -1 - } - ], - "signals": [ - { - "name": "reposition_active_tab_request", - "arguments": [ - { - "name": "idx_to", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "right_button_pressed", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tab_changed", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tab_clicked", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tab_close", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tab_hover", - "arguments": [ - { - "name": "tab", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_on_mouse_exited", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_hover", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "title", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": true, - "default_value": "[Object:null]" - } - ] - }, - { - "name": "ensure_tab_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_current_tab", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drag_to_rearrange_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_offset_buttons_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_previous_tab", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scrolling_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_select_with_rmb", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_align", - "return_type": "enum.Tabs::TabAlign", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_close_display_policy", - "return_type": "enum.Tabs::CloseButtonDisplayPolicy", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tab_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tab_title", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tabs_rearrange_group", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "move_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_tab", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drag_to_rearrange_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_scrolling_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_select_with_rmb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_close_display_policy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "policy", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "icon", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tab_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tabs_rearrange_group", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "group_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "CloseButtonDisplayPolicy", - "values": { - "CLOSE_BUTTON_SHOW_NEVER": 0, - "CLOSE_BUTTON_SHOW_ACTIVE_ONLY": 1, - "CLOSE_BUTTON_SHOW_ALWAYS": 2, - "CLOSE_BUTTON_MAX": 3 - } - }, - { - "name": "TabAlign", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2, - "ALIGN_MAX": 3 - } - } - ] - }, - { - "name": "TextEdit", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MENU_CLEAR": 3, - "MENU_COPY": 1, - "MENU_CUT": 0, - "MENU_MAX": 7, - "MENU_PASTE": 2, - "MENU_REDO": 6, - "MENU_SELECT_ALL": 4, - "MENU_UNDO": 5, - "SEARCH_BACKWARDS": 4, - "SEARCH_MATCH_CASE": 1, - "SEARCH_RESULT_COLUMN": 0, - "SEARCH_RESULT_LINE": 1, - "SEARCH_WHOLE_WORDS": 2 - }, - "properties": [ - { - "name": "bookmark_gutter", - "type": "bool", - "getter": "is_bookmark_gutter_enabled", - "setter": "set_bookmark_gutter_enabled", - "index": -1 - }, - { - "name": "breakpoint_gutter", - "type": "bool", - "getter": "is_breakpoint_gutter_enabled", - "setter": "set_breakpoint_gutter_enabled", - "index": -1 - }, - { - "name": "caret_blink", - "type": "bool", - "getter": "cursor_get_blink_enabled", - "setter": "cursor_set_blink_enabled", - "index": -1 - }, - { - "name": "caret_blink_speed", - "type": "float", - "getter": "cursor_get_blink_speed", - "setter": "cursor_set_blink_speed", - "index": -1 - }, - { - "name": "caret_block_mode", - "type": "bool", - "getter": "cursor_is_block_mode", - "setter": "cursor_set_block_mode", - "index": -1 - }, - { - "name": "caret_moving_by_right_click", - "type": "bool", - "getter": "is_right_click_moving_caret", - "setter": "set_right_click_moves_caret", - "index": -1 - }, - { - "name": "context_menu_enabled", - "type": "bool", - "getter": "is_context_menu_enabled", - "setter": "set_context_menu_enabled", - "index": -1 - }, - { - "name": "draw_spaces", - "type": "bool", - "getter": "is_drawing_spaces", - "setter": "set_draw_spaces", - "index": -1 - }, - { - "name": "draw_tabs", - "type": "bool", - "getter": "is_drawing_tabs", - "setter": "set_draw_tabs", - "index": -1 - }, - { - "name": "fold_gutter", - "type": "bool", - "getter": "is_drawing_fold_gutter", - "setter": "set_draw_fold_gutter", - "index": -1 - }, - { - "name": "hiding_enabled", - "type": "bool", - "getter": "is_hiding_enabled", - "setter": "set_hiding_enabled", - "index": -1 - }, - { - "name": "highlight_all_occurrences", - "type": "bool", - "getter": "is_highlight_all_occurrences_enabled", - "setter": "set_highlight_all_occurrences", - "index": -1 - }, - { - "name": "highlight_current_line", - "type": "bool", - "getter": "is_highlight_current_line_enabled", - "setter": "set_highlight_current_line", - "index": -1 - }, - { - "name": "minimap_draw", - "type": "bool", - "getter": "is_drawing_minimap", - "setter": "draw_minimap", - "index": -1 - }, - { - "name": "minimap_width", - "type": "int", - "getter": "get_minimap_width", - "setter": "set_minimap_width", - "index": -1 - }, - { - "name": "override_selected_font_color", - "type": "bool", - "getter": "is_overriding_selected_font_color", - "setter": "set_override_selected_font_color", - "index": -1 - }, - { - "name": "readonly", - "type": "bool", - "getter": "is_readonly", - "setter": "set_readonly", - "index": -1 - }, - { - "name": "scroll_horizontal", - "type": "int", - "getter": "get_h_scroll", - "setter": "set_h_scroll", - "index": -1 - }, - { - "name": "scroll_vertical", - "type": "float", - "getter": "get_v_scroll", - "setter": "set_v_scroll", - "index": -1 - }, - { - "name": "selecting_enabled", - "type": "bool", - "getter": "is_selecting_enabled", - "setter": "set_selecting_enabled", - "index": -1 - }, - { - "name": "shortcut_keys_enabled", - "type": "bool", - "getter": "is_shortcut_keys_enabled", - "setter": "set_shortcut_keys_enabled", - "index": -1 - }, - { - "name": "show_line_numbers", - "type": "bool", - "getter": "is_show_line_numbers_enabled", - "setter": "set_show_line_numbers", - "index": -1 - }, - { - "name": "smooth_scrolling", - "type": "bool", - "getter": "is_smooth_scroll_enabled", - "setter": "set_smooth_scroll_enable", - "index": -1 - }, - { - "name": "syntax_highlighting", - "type": "bool", - "getter": "is_syntax_coloring_enabled", - "setter": "set_syntax_coloring", - "index": -1 - }, - { - "name": "text", - "type": "String", - "getter": "get_text", - "setter": "set_text", - "index": -1 - }, - { - "name": "v_scroll_speed", - "type": "float", - "getter": "get_v_scroll_speed", - "setter": "set_v_scroll_speed", - "index": -1 - }, - { - "name": "virtual_keyboard_enabled", - "type": "bool", - "getter": "is_virtual_keyboard_enabled", - "setter": "set_virtual_keyboard_enabled", - "index": -1 - }, - { - "name": "wrap_enabled", - "type": "bool", - "getter": "is_wrap_enabled", - "setter": "set_wrap_enabled", - "index": -1 - } - ], - "signals": [ - { - "name": "breakpoint_toggled", - "arguments": [ - { - "name": "row", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cursor_changed", - "arguments": [ - ] - }, - { - "name": "info_clicked", - "arguments": [ - { - "name": "row", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "info", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "request_completion", - "arguments": [ - ] - }, - { - "name": "symbol_lookup", - "arguments": [ - { - "name": "symbol", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "row", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "text_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_click_selection_held", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_cursor_changed_emit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_push_current_op", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_scroll_moved", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_text_changed_emit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_toggle_draw_caret", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_wrap_at", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_v_scroll_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_color_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "begin_key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "end_key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "line_only", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "add_keyword_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keyword", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_fold", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "center_viewport_to_cursor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_colors", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_undo_history", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "copy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_get_blink_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_get_blink_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_get_column", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_get_line", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_is_block_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "cursor_set_blink_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cursor_set_blink_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "blink_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cursor_set_block_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cursor_set_column", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "adjust_viewport", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "cursor_set_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "adjust_viewport", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "can_be_hidden", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "wrap_index", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "cut", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "deselect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "draw_minimap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "draw", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "fold_all_lines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "fold_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_breakpoints", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_h_scroll", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_keyword_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keyword", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_line", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_line_column_at_pos", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_line_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "wrap_index", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_line_wrap_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_line_wrapped_text", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_menu", - "return_type": "PopupMenu", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_minimap_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pos_at_line_column", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_rect_at_line_column", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_selection_from_column", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selection_from_line", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selection_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selection_to_column", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selection_to_line", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_total_gutter_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_scroll", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_v_scroll_speed", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_word_under_cursor", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_keyword_color", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keyword", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_redo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_undo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "insert_text_at_cursor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_bookmark_gutter_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_breakpoint_gutter_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_context_menu_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_drawing_fold_gutter", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_drawing_minimap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_drawing_spaces", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_drawing_tabs", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_folded", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_hiding_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_highlight_all_occurrences_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_highlight_current_line_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_line_hidden", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_line_set_as_bookmark", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_line_set_as_breakpoint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_line_set_as_safe", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_line_wrapped", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_overriding_selected_font_color", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_readonly", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_right_click_moving_caret", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selecting_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selection_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shortcut_keys_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_show_line_numbers_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_smooth_scroll_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_syntax_coloring_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_virtual_keyboard_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_wrap_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "menu_option", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "option", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "paste", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "redo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_breakpoints", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "search", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "key", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "select_all", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_bookmark_gutter_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_breakpoint_gutter_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_context_menu_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_fold_gutter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_spaces", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_draw_tabs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_h_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hiding_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_highlight_all_occurrences", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_highlight_current_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_line_as_bookmark", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bookmark", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_line_as_breakpoint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "breakpoint", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_line_as_hidden", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_line_as_safe", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "safe", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_minimap_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_override_selected_font_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "override", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_readonly", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_right_click_moves_caret", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_selecting_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shortcut_keys_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_line_numbers", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_smooth_scroll_enable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_syntax_coloring", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_v_scroll_speed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_virtual_keyboard_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_wrap_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "toggle_fold_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "undo", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "unfold_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unhide_all_lines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "SearchFlags", - "values": { - "SEARCH_MATCH_CASE": 1, - "SEARCH_WHOLE_WORDS": 2, - "SEARCH_BACKWARDS": 4 - } - }, - { - "name": "SearchResult", - "values": { - "SEARCH_RESULT_COLUMN": 0, - "SEARCH_RESULT_LINE": 1 - } - }, - { - "name": "MenuItems", - "values": { - "MENU_CUT": 0, - "MENU_COPY": 1, - "MENU_PASTE": 2, - "MENU_CLEAR": 3, - "MENU_SELECT_ALL": 4, - "MENU_UNDO": 5, - "MENU_REDO": 6, - "MENU_MAX": 7 - } - } - ] - }, - { - "name": "TextFile", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Texture", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "FLAGS_DEFAULT": 7, - "FLAG_ANISOTROPIC_FILTER": 8, - "FLAG_CONVERT_TO_LINEAR": 16, - "FLAG_FILTER": 4, - "FLAG_MIPMAPS": 1, - "FLAG_MIRRORED_REPEAT": 32, - "FLAG_REPEAT": 2, - "FLAG_VIDEO_SURFACE": 2048 - }, - "properties": [ - { - "name": "flags", - "type": "int", - "getter": "get_flags", - "setter": "set_flags", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "draw_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "draw_rect_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas_item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "clip_uv", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_data", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_alpha", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_MIPMAPS": 1, - "FLAG_REPEAT": 2, - "FLAG_FILTER": 4, - "FLAGS_DEFAULT": 7, - "FLAG_ANISOTROPIC_FILTER": 8, - "FLAG_CONVERT_TO_LINEAR": 16, - "FLAG_MIRRORED_REPEAT": 32, - "FLAG_VIDEO_SURFACE": 2048 - } - } - ] - }, - { - "name": "Texture3D", - "base_class": "TextureLayered", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "create", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "4" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "TextureArray", - "base_class": "TextureLayered", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "create", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "7" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "TextureButton", - "base_class": "BaseButton", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "STRETCH_KEEP": 2, - "STRETCH_KEEP_ASPECT": 4, - "STRETCH_KEEP_ASPECT_CENTERED": 5, - "STRETCH_KEEP_ASPECT_COVERED": 6, - "STRETCH_KEEP_CENTERED": 3, - "STRETCH_SCALE": 0, - "STRETCH_TILE": 1 - }, - "properties": [ - { - "name": "expand", - "type": "bool", - "getter": "get_expand", - "setter": "set_expand", - "index": -1 - }, - { - "name": "flip_h", - "type": "bool", - "getter": "is_flipped_h", - "setter": "set_flip_h", - "index": -1 - }, - { - "name": "flip_v", - "type": "bool", - "getter": "is_flipped_v", - "setter": "set_flip_v", - "index": -1 - }, - { - "name": "stretch_mode", - "type": "int", - "getter": "get_stretch_mode", - "setter": "set_stretch_mode", - "index": -1 - }, - { - "name": "texture_click_mask", - "type": "BitMap", - "getter": "get_click_mask", - "setter": "set_click_mask", - "index": -1 - }, - { - "name": "texture_disabled", - "type": "Texture", - "getter": "get_disabled_texture", - "setter": "set_disabled_texture", - "index": -1 - }, - { - "name": "texture_focused", - "type": "Texture", - "getter": "get_focused_texture", - "setter": "set_focused_texture", - "index": -1 - }, - { - "name": "texture_hover", - "type": "Texture", - "getter": "get_hover_texture", - "setter": "set_hover_texture", - "index": -1 - }, - { - "name": "texture_normal", - "type": "Texture", - "getter": "get_normal_texture", - "setter": "set_normal_texture", - "index": -1 - }, - { - "name": "texture_pressed", - "type": "Texture", - "getter": "get_pressed_texture", - "setter": "set_pressed_texture", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_click_mask", - "return_type": "BitMap", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_disabled_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_expand", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_focused_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hover_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_normal_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_pressed_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stretch_mode", - "return_type": "enum.TextureButton::StretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_h", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_v", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_click_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "BitMap", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disabled_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_expand", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_h", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_v", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_focused_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hover_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_normal_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_pressed_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "StretchMode", - "values": { - "STRETCH_SCALE": 0, - "STRETCH_TILE": 1, - "STRETCH_KEEP": 2, - "STRETCH_KEEP_CENTERED": 3, - "STRETCH_KEEP_ASPECT": 4, - "STRETCH_KEEP_ASPECT_CENTERED": 5, - "STRETCH_KEEP_ASPECT_COVERED": 6 - } - } - ] - }, - { - "name": "TextureLayered", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "FLAGS_DEFAULT_TEXTURE_3D": 4, - "FLAGS_DEFAULT_TEXTURE_ARRAY": 7, - "FLAG_ANISOTROPIC_FILTER": 8, - "FLAG_FILTER": 4, - "FLAG_MIPMAPS": 1, - "FLAG_REPEAT": 2 - }, - "properties": [ - { - "name": "data", - "type": "Dictionary", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - }, - { - "name": "flags", - "type": "int", - "getter": "get_flags", - "setter": "set_flags", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_depth", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_format", - "return_type": "enum.Image::Format", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_layer_data", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_data_partial", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "x_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mipmap", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_layer_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Flags", - "values": { - "FLAG_MIPMAPS": 1, - "FLAG_REPEAT": 2, - "FLAGS_DEFAULT_TEXTURE_3D": 4, - "FLAG_FILTER": 4, - "FLAGS_DEFAULT_TEXTURE_ARRAY": 7, - "FLAG_ANISOTROPIC_FILTER": 8 - } - } - ] - }, - { - "name": "TextureProgress", - "base_class": "Range", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "FILL_BILINEAR_LEFT_AND_RIGHT": 6, - "FILL_BILINEAR_TOP_AND_BOTTOM": 7, - "FILL_BOTTOM_TO_TOP": 3, - "FILL_CLOCKWISE": 4, - "FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE": 8, - "FILL_COUNTER_CLOCKWISE": 5, - "FILL_LEFT_TO_RIGHT": 0, - "FILL_RIGHT_TO_LEFT": 1, - "FILL_TOP_TO_BOTTOM": 2 - }, - "properties": [ - { - "name": "fill_mode", - "type": "int", - "getter": "get_fill_mode", - "setter": "set_fill_mode", - "index": -1 - }, - { - "name": "nine_patch_stretch", - "type": "bool", - "getter": "get_nine_patch_stretch", - "setter": "set_nine_patch_stretch", - "index": -1 - }, - { - "name": "radial_center_offset", - "type": "Vector2", - "getter": "get_radial_center_offset", - "setter": "set_radial_center_offset", - "index": -1 - }, - { - "name": "radial_fill_degrees", - "type": "float", - "getter": "get_fill_degrees", - "setter": "set_fill_degrees", - "index": -1 - }, - { - "name": "radial_initial_angle", - "type": "float", - "getter": "get_radial_initial_angle", - "setter": "set_radial_initial_angle", - "index": -1 - }, - { - "name": "stretch_margin_bottom", - "type": "int", - "getter": "get_stretch_margin", - "setter": "set_stretch_margin", - "index": 3 - }, - { - "name": "stretch_margin_left", - "type": "int", - "getter": "get_stretch_margin", - "setter": "set_stretch_margin", - "index": 0 - }, - { - "name": "stretch_margin_right", - "type": "int", - "getter": "get_stretch_margin", - "setter": "set_stretch_margin", - "index": 2 - }, - { - "name": "stretch_margin_top", - "type": "int", - "getter": "get_stretch_margin", - "setter": "set_stretch_margin", - "index": 1 - }, - { - "name": "texture_over", - "type": "Texture", - "getter": "get_over_texture", - "setter": "set_over_texture", - "index": -1 - }, - { - "name": "texture_progress", - "type": "Texture", - "getter": "get_progress_texture", - "setter": "set_progress_texture", - "index": -1 - }, - { - "name": "texture_progress_offset", - "type": "Vector2", - "getter": "get_texture_progress_offset", - "setter": "set_texture_progress_offset", - "index": -1 - }, - { - "name": "texture_under", - "type": "Texture", - "getter": "get_under_texture", - "setter": "set_under_texture", - "index": -1 - }, - { - "name": "tint_over", - "type": "Color", - "getter": "get_tint_over", - "setter": "set_tint_over", - "index": -1 - }, - { - "name": "tint_progress", - "type": "Color", - "getter": "get_tint_progress", - "setter": "set_tint_progress", - "index": -1 - }, - { - "name": "tint_under", - "type": "Color", - "getter": "get_tint_under", - "setter": "set_tint_under", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_fill_degrees", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fill_mode", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_nine_patch_stretch", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_over_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_progress_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radial_center_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radial_initial_angle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stretch_margin", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_texture_progress_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tint_over", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tint_progress", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tint_under", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_under_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_fill_degrees", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fill_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_nine_patch_stretch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stretch", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_over_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tex", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_progress_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tex", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radial_center_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radial_initial_angle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stretch_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "margin", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_progress_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tint_over", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tint", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tint_progress", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tint", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tint_under", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tint", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_under_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tex", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "FillMode", - "values": { - "FILL_LEFT_TO_RIGHT": 0, - "FILL_RIGHT_TO_LEFT": 1, - "FILL_TOP_TO_BOTTOM": 2, - "FILL_BOTTOM_TO_TOP": 3, - "FILL_CLOCKWISE": 4, - "FILL_COUNTER_CLOCKWISE": 5, - "FILL_BILINEAR_LEFT_AND_RIGHT": 6, - "FILL_BILINEAR_TOP_AND_BOTTOM": 7, - "FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE": 8 - } - } - ] - }, - { - "name": "TextureRect", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "STRETCH_KEEP": 3, - "STRETCH_KEEP_ASPECT": 5, - "STRETCH_KEEP_ASPECT_CENTERED": 6, - "STRETCH_KEEP_ASPECT_COVERED": 7, - "STRETCH_KEEP_CENTERED": 4, - "STRETCH_SCALE": 1, - "STRETCH_SCALE_ON_EXPAND": 0, - "STRETCH_TILE": 2 - }, - "properties": [ - { - "name": "expand", - "type": "bool", - "getter": "has_expand", - "setter": "set_expand", - "index": -1 - }, - { - "name": "flip_h", - "type": "bool", - "getter": "is_flipped_h", - "setter": "set_flip_h", - "index": -1 - }, - { - "name": "flip_v", - "type": "bool", - "getter": "is_flipped_v", - "setter": "set_flip_v", - "index": -1 - }, - { - "name": "stretch_mode", - "type": "int", - "getter": "get_stretch_mode", - "setter": "set_stretch_mode", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_texture_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stretch_mode", - "return_type": "enum.TextureRect::StretchMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_expand", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_h", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_flipped_v", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_expand", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_h", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_flip_v", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stretch_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stretch_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "StretchMode", - "values": { - "STRETCH_SCALE_ON_EXPAND": 0, - "STRETCH_SCALE": 1, - "STRETCH_TILE": 2, - "STRETCH_KEEP": 3, - "STRETCH_KEEP_CENTERED": 4, - "STRETCH_KEEP_ASPECT": 5, - "STRETCH_KEEP_ASPECT_CENTERED": 6, - "STRETCH_KEEP_ASPECT_COVERED": 7 - } - } - ] - }, - { - "name": "Theme", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "DATA_TYPE_COLOR": 0, - "DATA_TYPE_CONSTANT": 1, - "DATA_TYPE_FONT": 2, - "DATA_TYPE_ICON": 3, - "DATA_TYPE_MAX": 5, - "DATA_TYPE_STYLEBOX": 4 - }, - "properties": [ - { - "name": "default_font", - "type": "Font", - "getter": "get_default_font", - "setter": "set_default_font", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_emit_theme_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "notify_list_changed", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_font", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_stylebox", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_theme_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "copy_default_theme", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "copy_theme", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "other", - "type": "Theme", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_color_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_color_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_constant_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_constant_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_default_font", - "return_type": "Font", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_font", - "return_type": "Font", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_font_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_font_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_icon_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_icon_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stylebox", - "return_type": "StyleBox", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_stylebox_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_stylebox_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_theme_item", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_theme_item_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_theme_item_types", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_type_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_color", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_constant", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_default_font", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_font", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_icon", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_stylebox", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_theme_item", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "merge_with", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "other", - "type": "Theme", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_font", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_stylebox", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_theme_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "old_name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "constant", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_font", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "font", - "type": "Font", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_font", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "font", - "type": "Font", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stylebox", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "StyleBox", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_theme_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data_type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node_type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "DataType", - "values": { - "DATA_TYPE_COLOR": 0, - "DATA_TYPE_CONSTANT": 1, - "DATA_TYPE_FONT": 2, - "DATA_TYPE_ICON": 3, - "DATA_TYPE_STYLEBOX": 4, - "DATA_TYPE_MAX": 5 - } - } - ] - }, - { - "name": "TileMap", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "HALF_OFFSET_DISABLED": 2, - "HALF_OFFSET_NEGATIVE_X": 3, - "HALF_OFFSET_NEGATIVE_Y": 4, - "HALF_OFFSET_X": 0, - "HALF_OFFSET_Y": 1, - "INVALID_CELL": -1, - "MODE_CUSTOM": 2, - "MODE_ISOMETRIC": 1, - "MODE_SQUARE": 0, - "TILE_ORIGIN_BOTTOM_LEFT": 2, - "TILE_ORIGIN_CENTER": 1, - "TILE_ORIGIN_TOP_LEFT": 0 - }, - "properties": [ - { - "name": "cell_clip_uv", - "type": "bool", - "getter": "get_clip_uv", - "setter": "set_clip_uv", - "index": -1 - }, - { - "name": "cell_custom_transform", - "type": "Transform2D", - "getter": "get_custom_transform", - "setter": "set_custom_transform", - "index": -1 - }, - { - "name": "cell_half_offset", - "type": "int", - "getter": "get_half_offset", - "setter": "set_half_offset", - "index": -1 - }, - { - "name": "cell_quadrant_size", - "type": "int", - "getter": "get_quadrant_size", - "setter": "set_quadrant_size", - "index": -1 - }, - { - "name": "cell_size", - "type": "Vector2", - "getter": "get_cell_size", - "setter": "set_cell_size", - "index": -1 - }, - { - "name": "cell_tile_origin", - "type": "int", - "getter": "get_tile_origin", - "setter": "set_tile_origin", - "index": -1 - }, - { - "name": "cell_y_sort", - "type": "bool", - "getter": "is_y_sort_mode_enabled", - "setter": "set_y_sort_mode", - "index": -1 - }, - { - "name": "centered_textures", - "type": "bool", - "getter": "is_centered_textures_enabled", - "setter": "set_centered_textures", - "index": -1 - }, - { - "name": "collision_bounce", - "type": "float", - "getter": "get_collision_bounce", - "setter": "set_collision_bounce", - "index": -1 - }, - { - "name": "collision_friction", - "type": "float", - "getter": "get_collision_friction", - "setter": "set_collision_friction", - "index": -1 - }, - { - "name": "collision_layer", - "type": "int", - "getter": "get_collision_layer", - "setter": "set_collision_layer", - "index": -1 - }, - { - "name": "collision_mask", - "type": "int", - "getter": "get_collision_mask", - "setter": "set_collision_mask", - "index": -1 - }, - { - "name": "collision_use_kinematic", - "type": "bool", - "getter": "get_collision_use_kinematic", - "setter": "set_collision_use_kinematic", - "index": -1 - }, - { - "name": "collision_use_parent", - "type": "bool", - "getter": "get_collision_use_parent", - "setter": "set_collision_use_parent", - "index": -1 - }, - { - "name": "compatibility_mode", - "type": "bool", - "getter": "is_compatibility_mode_enabled", - "setter": "set_compatibility_mode", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_mode", - "setter": "set_mode", - "index": -1 - }, - { - "name": "occluder_light_mask", - "type": "int", - "getter": "get_occluder_light_mask", - "setter": "set_occluder_light_mask", - "index": -1 - }, - { - "name": "show_collision", - "type": "bool", - "getter": "is_show_collision_enabled", - "setter": "set_show_collision", - "index": -1 - }, - { - "name": "tile_set", - "type": "TileSet", - "getter": "get_tileset", - "setter": "set_tileset", - "index": -1 - } - ], - "signals": [ - { - "name": "settings_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_clear_quadrants", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_old_cell_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_tile_data", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_recreate_quadrants", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_celld", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_old_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_tile_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "fix_invalid_tiles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cell", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_cell_autotile_coord", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_cell_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cellv", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_clip_uv", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_bounce", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_friction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_layer_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_collision_use_kinematic", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_collision_use_parent", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_half_offset", - "return_type": "enum.TileMap::HalfOffset", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mode", - "return_type": "enum.TileMap::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_occluder_light_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_quadrant_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tile_origin", - "return_type": "enum.TileMap::TileOrigin", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tileset", - "return_type": "TileSet", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_used_cells", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_used_cells_by_id", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_used_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_cell_transposed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_cell_x_flipped", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_cell_y_flipped", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_centered_textures_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_compatibility_mode_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_show_collision_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_y_sort_mode_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "map_to_world", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "map_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ignore_half_ofs", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_cell", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flip_x", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "flip_y", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "autotile_coord", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cellv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flip_x", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "flip_y", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "autotile_coord", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "set_centered_textures", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clip_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_bounce", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_friction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_layer_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bit", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_use_kinematic", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_kinematic", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collision_use_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use_parent", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_compatibility_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "custom_transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_half_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "half_offset", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_occluder_light_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_quadrant_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_show_collision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tile_origin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "origin", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tileset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tileset", - "type": "TileSet", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_y_sort_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_bitmask_area", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_bitmask_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "start", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - }, - { - "name": "end", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "update_dirty_quadrants", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "world_to_map", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "world_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_SQUARE": 0, - "MODE_ISOMETRIC": 1, - "MODE_CUSTOM": 2 - } - }, - { - "name": "TileOrigin", - "values": { - "TILE_ORIGIN_TOP_LEFT": 0, - "TILE_ORIGIN_CENTER": 1, - "TILE_ORIGIN_BOTTOM_LEFT": 2 - } - }, - { - "name": "HalfOffset", - "values": { - "HALF_OFFSET_X": 0, - "HALF_OFFSET_Y": 1, - "HALF_OFFSET_DISABLED": 2, - "HALF_OFFSET_NEGATIVE_X": 3, - "HALF_OFFSET_NEGATIVE_Y": 4 - } - } - ] - }, - { - "name": "TileSet", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "ATLAS_TILE": 2, - "AUTO_TILE": 1, - "BIND_BOTTOM": 128, - "BIND_BOTTOMLEFT": 64, - "BIND_BOTTOMRIGHT": 256, - "BIND_CENTER": 16, - "BIND_LEFT": 8, - "BIND_RIGHT": 32, - "BIND_TOP": 2, - "BIND_TOPLEFT": 1, - "BIND_TOPRIGHT": 4, - "BITMASK_2X2": 0, - "BITMASK_3X3": 2, - "BITMASK_3X3_MINIMAL": 1, - "SINGLE_TILE": 0 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_forward_atlas_subtile_selection", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "atlastile_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tilemap", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile_location", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_forward_subtile_selection", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "autotile_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bitmask", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tilemap", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile_location", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_is_tile_bound", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "drawn_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "neighbor_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_clear_bitmask_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_bitmask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_bitmask_mode", - "return_type": "enum.TileSet::BitmaskMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_icon_coordinate", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_light_occluder", - "return_type": "OccluderPolygon2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_navigation_polygon", - "return_type": "NavigationPolygon", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_spacing", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_subtile_priority", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_get_z_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_bitmask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bitmask", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_bitmask_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_icon_coordinate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_light_occluder", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "light_occluder", - "type": "OccluderPolygon2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_navigation_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "navigation_polygon", - "type": "NavigationPolygon", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_spacing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "spacing", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_subtile_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "autotile_set_z_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "coord", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_tile", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_tile_by_name", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_last_unused_tile_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tiles_ids", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_tile", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_add_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - }, - { - "name": "one_way", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "autotile_coord", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "tile_get_light_occluder", - "return_type": "OccluderPolygon2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_material", - "return_type": "ShaderMaterial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_navigation_polygon", - "return_type": "NavigationPolygon", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_navigation_polygon_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_normal_map", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_occluder_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_region", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shape", - "return_type": "Shape2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shape_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shape_one_way", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shape_one_way_margin", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shape_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_shapes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_texture_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_tile_mode", - "return_type": "enum.TileSet::TileMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_get_z_index", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_light_occluder", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "light_occluder", - "type": "OccluderPolygon2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "ShaderMaterial", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_navigation_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "navigation_polygon", - "type": "NavigationPolygon", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_navigation_polygon_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "navigation_polygon_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_normal_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal_map", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_occluder_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "occluder_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "region", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_shape_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_shape_one_way", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "one_way", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_shape_one_way_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "one_way", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_shape_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape_transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_shapes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shapes", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_texture_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture_offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_tile_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tilemode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tile_set_z_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TileMode", - "values": { - "SINGLE_TILE": 0, - "AUTO_TILE": 1, - "ATLAS_TILE": 2 - } - }, - { - "name": "AutotileBindings", - "values": { - "BIND_TOPLEFT": 1, - "BIND_TOP": 2, - "BIND_TOPRIGHT": 4, - "BIND_LEFT": 8, - "BIND_CENTER": 16, - "BIND_RIGHT": 32, - "BIND_BOTTOMLEFT": 64, - "BIND_BOTTOM": 128, - "BIND_BOTTOMRIGHT": 256 - } - }, - { - "name": "BitmaskMode", - "values": { - "BITMASK_2X2": 0, - "BITMASK_3X3_MINIMAL": 1, - "BITMASK_3X3": 2 - } - } - ] - }, - { - "name": "Time", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Time", - "instanciable": false, - "is_reference": false, - "constants": { - "MONTH_APRIL": 4, - "MONTH_AUGUST": 8, - "MONTH_DECEMBER": 12, - "MONTH_FEBRUARY": 2, - "MONTH_JANUARY": 1, - "MONTH_JULY": 7, - "MONTH_JUNE": 6, - "MONTH_MARCH": 3, - "MONTH_MAY": 5, - "MONTH_NOVEMBER": 11, - "MONTH_OCTOBER": 10, - "MONTH_SEPTEMBER": 9, - "WEEKDAY_FRIDAY": 5, - "WEEKDAY_MONDAY": 1, - "WEEKDAY_SATURDAY": 6, - "WEEKDAY_SUNDAY": 0, - "WEEKDAY_THURSDAY": 4, - "WEEKDAY_TUESDAY": 2, - "WEEKDAY_WEDNESDAY": 3 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_date_dict_from_system", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_date_dict_from_unix_time", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_date_string_from_system", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_date_string_from_unix_time", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_datetime_dict_from_string", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "datetime", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weekday", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_datetime_dict_from_system", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_datetime_dict_from_unix_time", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_datetime_string_from_dict", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "datetime", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_space", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_datetime_string_from_system", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "use_space", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_datetime_string_from_unix_time", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_space", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_ticks_msec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ticks_usec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_dict_from_system", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_time_dict_from_unix_time", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_time_string_from_system", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_time_string_from_unix_time", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_time_zone_from_system", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unix_time_from_datetime_dict", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "datetime", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_unix_time_from_datetime_string", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "datetime", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_unix_time_from_system", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "Month", - "values": { - "MONTH_JANUARY": 1, - "MONTH_FEBRUARY": 2, - "MONTH_MARCH": 3, - "MONTH_APRIL": 4, - "MONTH_MAY": 5, - "MONTH_JUNE": 6, - "MONTH_JULY": 7, - "MONTH_AUGUST": 8, - "MONTH_SEPTEMBER": 9, - "MONTH_OCTOBER": 10, - "MONTH_NOVEMBER": 11, - "MONTH_DECEMBER": 12 - } - }, - { - "name": "Weekday", - "values": { - "WEEKDAY_SUNDAY": 0, - "WEEKDAY_MONDAY": 1, - "WEEKDAY_TUESDAY": 2, - "WEEKDAY_WEDNESDAY": 3, - "WEEKDAY_THURSDAY": 4, - "WEEKDAY_FRIDAY": 5, - "WEEKDAY_SATURDAY": 6 - } - } - ] - }, - { - "name": "Timer", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "TIMER_PROCESS_IDLE": 1, - "TIMER_PROCESS_PHYSICS": 0 - }, - "properties": [ - { - "name": "autostart", - "type": "bool", - "getter": "has_autostart", - "setter": "set_autostart", - "index": -1 - }, - { - "name": "one_shot", - "type": "bool", - "getter": "is_one_shot", - "setter": "set_one_shot", - "index": -1 - }, - { - "name": "paused", - "type": "bool", - "getter": "is_paused", - "setter": "set_paused", - "index": -1 - }, - { - "name": "process_mode", - "type": "int", - "getter": "get_timer_process_mode", - "setter": "set_timer_process_mode", - "index": -1 - }, - { - "name": "time_left", - "type": "float", - "getter": "get_time_left", - "setter": "", - "index": -1 - }, - { - "name": "wait_time", - "type": "float", - "getter": "get_wait_time", - "setter": "set_wait_time", - "index": -1 - } - ], - "signals": [ - { - "name": "timeout", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_time_left", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_timer_process_mode", - "return_type": "enum.Timer::TimerProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_wait_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_autostart", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_one_shot", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_paused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_stopped", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_autostart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_one_shot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_paused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "paused", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_timer_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_wait_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "start", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_sec", - "type": "float", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "TimerProcessMode", - "values": { - "TIMER_PROCESS_PHYSICS": 0, - "TIMER_PROCESS_IDLE": 1 - } - } - ] - }, - { - "name": "ToolButton", - "base_class": "Button", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "TouchScreenButton", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "VISIBILITY_ALWAYS": 0, - "VISIBILITY_TOUCHSCREEN_ONLY": 1 - }, - "properties": [ - { - "name": "action", - "type": "String", - "getter": "get_action", - "setter": "set_action", - "index": -1 - }, - { - "name": "bitmask", - "type": "BitMap", - "getter": "get_bitmask", - "setter": "set_bitmask", - "index": -1 - }, - { - "name": "normal", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "passby_press", - "type": "bool", - "getter": "is_passby_press_enabled", - "setter": "set_passby_press", - "index": -1 - }, - { - "name": "pressed", - "type": "Texture", - "getter": "get_texture_pressed", - "setter": "set_texture_pressed", - "index": -1 - }, - { - "name": "shape", - "type": "Shape2D", - "getter": "get_shape", - "setter": "set_shape", - "index": -1 - }, - { - "name": "shape_centered", - "type": "bool", - "getter": "is_shape_centered", - "setter": "set_shape_centered", - "index": -1 - }, - { - "name": "shape_visible", - "type": "bool", - "getter": "is_shape_visible", - "setter": "set_shape_visible", - "index": -1 - }, - { - "name": "visibility_mode", - "type": "int", - "getter": "get_visibility_mode", - "setter": "set_visibility_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "pressed", - "arguments": [ - ] - }, - { - "name": "released", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_action", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bitmask", - "return_type": "BitMap", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_shape", - "return_type": "Shape2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_pressed", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visibility_mode", - "return_type": "enum.TouchScreenButton::VisibilityMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_passby_press_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_pressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shape_centered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_shape_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "action", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bitmask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bitmask", - "type": "BitMap", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_passby_press", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shape", - "type": "Shape2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape_centered", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bool", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shape_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bool", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_pressed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture_pressed", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_visibility_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "VisibilityMode", - "values": { - "VISIBILITY_ALWAYS": 0, - "VISIBILITY_TOUCHSCREEN_ONLY": 1 - } - } - ] - }, - { - "name": "Translation", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "locale", - "type": "String", - "getter": "get_locale", - "setter": "set_locale", - "index": -1 - }, - { - "name": "messages", - "type": "PoolStringArray", - "getter": "_get_messages", - "setter": "_set_messages", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_message", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src_message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_messages", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_messages", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_message", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src_message", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "xlated_message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "erase_message", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src_message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_locale", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_message", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "src_message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_message_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_message_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_locale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "locale", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "TranslationServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "TranslationServer", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_translation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "translation", - "type": "Translation", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_loaded_locales", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_locale", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_locale_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "locale", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_translation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "translation", - "type": "Translation", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_locale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "locale", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "translate", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Tree", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "DROP_MODE_DISABLED": 0, - "DROP_MODE_INBETWEEN": 2, - "DROP_MODE_ON_ITEM": 1, - "SELECT_MULTI": 2, - "SELECT_ROW": 1, - "SELECT_SINGLE": 0 - }, - "properties": [ - { - "name": "allow_reselect", - "type": "bool", - "getter": "get_allow_reselect", - "setter": "set_allow_reselect", - "index": -1 - }, - { - "name": "allow_rmb_select", - "type": "bool", - "getter": "get_allow_rmb_select", - "setter": "set_allow_rmb_select", - "index": -1 - }, - { - "name": "column_titles_visible", - "type": "bool", - "getter": "are_column_titles_visible", - "setter": "set_column_titles_visible", - "index": -1 - }, - { - "name": "columns", - "type": "int", - "getter": "get_columns", - "setter": "set_columns", - "index": -1 - }, - { - "name": "drop_mode_flags", - "type": "int", - "getter": "get_drop_mode_flags", - "setter": "set_drop_mode_flags", - "index": -1 - }, - { - "name": "hide_folding", - "type": "bool", - "getter": "is_folding_hidden", - "setter": "set_hide_folding", - "index": -1 - }, - { - "name": "hide_root", - "type": "bool", - "getter": "is_root_hidden", - "setter": "set_hide_root", - "index": -1 - }, - { - "name": "select_mode", - "type": "int", - "getter": "get_select_mode", - "setter": "set_select_mode", - "index": -1 - } - ], - "signals": [ - { - "name": "button_pressed", - "arguments": [ - { - "name": "item", - "type": "TreeItem", - "has_default_value": false, - "default_value": "" - }, - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "cell_selected", - "arguments": [ - ] - }, - { - "name": "column_title_pressed", - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_popup_edited", - "arguments": [ - { - "name": "arrow_clicked", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "empty_rmb", - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "empty_tree_rmb_selected", - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "item_activated", - "arguments": [ - ] - }, - { - "name": "item_collapsed", - "arguments": [ - { - "name": "item", - "type": "TreeItem", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "item_custom_button_pressed", - "arguments": [ - ] - }, - { - "name": "item_double_clicked", - "arguments": [ - ] - }, - { - "name": "item_edited", - "arguments": [ - ] - }, - { - "name": "item_rmb_edited", - "arguments": [ - ] - }, - { - "name": "item_rmb_selected", - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "item_selected", - "arguments": [ - ] - }, - { - "name": "multi_selected", - "arguments": [ - { - "name": "item", - "type": "TreeItem", - "has_default_value": false, - "default_value": "" - }, - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "selected", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "nothing_selected", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_popup_select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_range_click_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_scroll_moved", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_text_editor_enter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_text_editor_modal_close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_value_editor_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "are_column_titles_visible", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_item", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "parent", - "type": "Object", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "idx", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "edit_selected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "ensure_cursor_is_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_allow_reselect", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_allow_rmb_select", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_column_at_position", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_column_title", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_column_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_columns", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_popup_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drop_mode_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drop_section_at_position", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_edited", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_edited_column", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_item_area_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "column", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_item_at_position", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_next_selected", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pressed_button", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_root", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scroll", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_select_mode", - "return_type": "enum.Tree::SelectMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_selected_column", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_folding_hidden", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_root_hidden", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "scroll_to_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_allow_reselect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_allow_rmb_select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_column_expand", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "expand", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_column_min_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min_width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_column_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_column_titles_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_columns", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_drop_mode_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_folding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hide", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hide_root", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_select_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "SelectMode", - "values": { - "SELECT_SINGLE": 0, - "SELECT_ROW": 1, - "SELECT_MULTI": 2 - } - }, - { - "name": "DropModeFlags", - "values": { - "DROP_MODE_DISABLED": 0, - "DROP_MODE_ON_ITEM": 1, - "DROP_MODE_INBETWEEN": 2 - } - } - ] - }, - { - "name": "TreeItem", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - "ALIGN_CENTER": 1, - "ALIGN_LEFT": 0, - "ALIGN_RIGHT": 2, - "CELL_MODE_CHECK": 1, - "CELL_MODE_CUSTOM": 4, - "CELL_MODE_ICON": 3, - "CELL_MODE_RANGE": 2, - "CELL_MODE_STRING": 0 - }, - "properties": [ - { - "name": "collapsed", - "type": "bool", - "getter": "is_collapsed", - "setter": "set_collapsed", - "index": -1 - }, - { - "name": "custom_minimum_height", - "type": "int", - "getter": "get_custom_minimum_height", - "setter": "set_custom_minimum_height", - "index": -1 - }, - { - "name": "disable_folding", - "type": "bool", - "getter": "is_folding_disabled", - "setter": "set_disable_folding", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_button", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button", - "type": "Texture", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "tooltip", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "call_recursive", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_custom_bg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_custom_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "deselect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "erase_button", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_button", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_button_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_button_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_cell_mode", - "return_type": "enum.TreeItem::TreeCellMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_children", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_custom_bg_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_custom_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_custom_minimum_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_expand_right", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_icon", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_icon_max_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_icon_modulate", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_icon_region", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_metadata", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_next", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_next_visible", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "wrap", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_parent", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_prev", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_prev_visible", - "return_type": "TreeItem", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "wrap", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_range", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_range_config", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_suffix", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_text_align", - "return_type": "enum.TreeItem::TextAlign", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_tooltip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_button_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_checked", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_collapsed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_custom_set_as_button", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_editable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_folding_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_selectable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_selected", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "move_to_bottom", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "move_to_top", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_child", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "child", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "select", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_button", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_button_disabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "button_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_cell_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_checked", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "checked", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_collapsed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_as_button", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_bg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "just_outline", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_custom_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "callback", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_custom_minimum_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_folding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_editable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand_right", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon_max_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "region", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_metadata", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_range_config", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "step", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "expr", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_selectable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "selectable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_suffix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_text_align", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "text_align", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tooltip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "column", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tooltip", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TreeCellMode", - "values": { - "CELL_MODE_STRING": 0, - "CELL_MODE_CHECK": 1, - "CELL_MODE_RANGE": 2, - "CELL_MODE_ICON": 3, - "CELL_MODE_CUSTOM": 4 - } - }, - { - "name": "TextAlign", - "values": { - "ALIGN_LEFT": 0, - "ALIGN_CENTER": 1, - "ALIGN_RIGHT": 2 - } - } - ] - }, - { - "name": "TriangleMesh", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "Tween", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "EASE_IN": 0, - "EASE_IN_OUT": 2, - "EASE_OUT": 1, - "EASE_OUT_IN": 3, - "TRANS_BACK": 10, - "TRANS_BOUNCE": 9, - "TRANS_CIRC": 8, - "TRANS_CUBIC": 7, - "TRANS_ELASTIC": 6, - "TRANS_EXPO": 5, - "TRANS_LINEAR": 0, - "TRANS_QUAD": 4, - "TRANS_QUART": 3, - "TRANS_QUINT": 2, - "TRANS_SINE": 1, - "TWEEN_PROCESS_IDLE": 1, - "TWEEN_PROCESS_PHYSICS": 0 - }, - "properties": [ - { - "name": "playback_process_mode", - "type": "int", - "getter": "get_tween_process_mode", - "setter": "set_tween_process_mode", - "index": -1 - }, - { - "name": "playback_speed", - "type": "float", - "getter": "get_speed_scale", - "setter": "set_speed_scale", - "index": -1 - }, - { - "name": "repeat", - "type": "bool", - "getter": "is_repeat", - "setter": "set_repeat", - "index": -1 - } - ], - "signals": [ - { - "name": "tween_all_completed", - "arguments": [ - ] - }, - { - "name": "tween_completed", - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tween_started", - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "tween_step", - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "elapsed", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_remove_by_uid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uid", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "follow_method", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target_method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "trans_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "ease_type", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "delay", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "follow_property", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "target_property", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "trans_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "ease_type", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "delay", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_runtime", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_speed_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tween_process_mode", - "return_type": "enum.Tween::TweenProcessMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "interpolate_callback", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "callback", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg2", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg3", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg4", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg5", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "interpolate_deferred_callback", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "callback", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg2", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg3", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg4", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "arg5", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - } - ] - }, - { - "name": "interpolate_method", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "final_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "trans_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "ease_type", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "delay", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "interpolate_property", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "final_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "trans_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "ease_type", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "delay", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_repeat", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "remove_all", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reset", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "reset_all", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "resume", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "resume_all", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "seek", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_repeat", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "repeat", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "speed", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_tween_process_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "start", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "stop", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "stop_all", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "targeting_method", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial_method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "final_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "trans_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "ease_type", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "delay", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "targeting_property", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "initial_val", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - }, - { - "name": "final_val", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "duration", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "trans_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "ease_type", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "delay", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "tell", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "TransitionType", - "values": { - "TRANS_LINEAR": 0, - "TRANS_SINE": 1, - "TRANS_QUINT": 2, - "TRANS_QUART": 3, - "TRANS_QUAD": 4, - "TRANS_EXPO": 5, - "TRANS_ELASTIC": 6, - "TRANS_CUBIC": 7, - "TRANS_CIRC": 8, - "TRANS_BOUNCE": 9, - "TRANS_BACK": 10 - } - }, - { - "name": "TweenProcessMode", - "values": { - "TWEEN_PROCESS_PHYSICS": 0, - "TWEEN_PROCESS_IDLE": 1 - } - }, - { - "name": "EaseType", - "values": { - "EASE_IN": 0, - "EASE_OUT": 1, - "EASE_IN_OUT": 2, - "EASE_OUT_IN": 3 - } - } - ] - }, - { - "name": "UDPServer", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "max_pending_connections", - "type": "int", - "getter": "get_max_pending_connections", - "setter": "set_max_pending_connections", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_max_pending_connections", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_connection_available", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_listening", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "listen", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bind_address", - "type": "String", - "has_default_value": true, - "default_value": "*" - } - ] - }, - { - "name": "poll", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_max_pending_connections", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "max_pending_connections", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "take_connection", - "return_type": "PacketPeerUDP", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "UPNP", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "UPNP_RESULT_ACTION_FAILED": 5, - "UPNP_RESULT_CONFLICT_WITH_OTHER_MAPPING": 13, - "UPNP_RESULT_CONFLICT_WITH_OTHER_MECHANISM": 12, - "UPNP_RESULT_EXT_PORT_MUST_BE_WILDCARD": 10, - "UPNP_RESULT_EXT_PORT_WILDCARD_NOT_PERMITTED": 7, - "UPNP_RESULT_HTTP_ERROR": 23, - "UPNP_RESULT_INCONSISTENT_PARAMETERS": 3, - "UPNP_RESULT_INT_PORT_WILDCARD_NOT_PERMITTED": 8, - "UPNP_RESULT_INVALID_ARGS": 20, - "UPNP_RESULT_INVALID_DURATION": 19, - "UPNP_RESULT_INVALID_GATEWAY": 16, - "UPNP_RESULT_INVALID_PARAM": 22, - "UPNP_RESULT_INVALID_PORT": 17, - "UPNP_RESULT_INVALID_PROTOCOL": 18, - "UPNP_RESULT_INVALID_RESPONSE": 21, - "UPNP_RESULT_MEM_ALLOC_ERROR": 25, - "UPNP_RESULT_NOT_AUTHORIZED": 1, - "UPNP_RESULT_NO_DEVICES": 27, - "UPNP_RESULT_NO_GATEWAY": 26, - "UPNP_RESULT_NO_PORT_MAPS_AVAILABLE": 11, - "UPNP_RESULT_NO_SUCH_ENTRY_IN_ARRAY": 4, - "UPNP_RESULT_ONLY_PERMANENT_LEASE_SUPPORTED": 15, - "UPNP_RESULT_PORT_MAPPING_NOT_FOUND": 2, - "UPNP_RESULT_REMOTE_HOST_MUST_BE_WILDCARD": 9, - "UPNP_RESULT_SAME_PORT_VALUES_REQUIRED": 14, - "UPNP_RESULT_SOCKET_ERROR": 24, - "UPNP_RESULT_SRC_IP_WILDCARD_NOT_PERMITTED": 6, - "UPNP_RESULT_SUCCESS": 0, - "UPNP_RESULT_UNKNOWN_ERROR": 28 - }, - "properties": [ - { - "name": "discover_ipv6", - "type": "bool", - "getter": "is_discover_ipv6", - "setter": "set_discover_ipv6", - "index": -1 - }, - { - "name": "discover_local_port", - "type": "int", - "getter": "get_discover_local_port", - "setter": "set_discover_local_port", - "index": -1 - }, - { - "name": "discover_multicast_if", - "type": "String", - "getter": "get_discover_multicast_if", - "setter": "set_discover_multicast_if", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_device", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "device", - "type": "UPNPDevice", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_port_mapping", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port_internal", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "desc", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "proto", - "type": "String", - "has_default_value": true, - "default_value": "UDP" - }, - { - "name": "duration", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "clear_devices", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "delete_port_mapping", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "proto", - "type": "String", - "has_default_value": true, - "default_value": "UDP" - } - ] - }, - { - "name": "discover", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "timeout", - "type": "int", - "has_default_value": true, - "default_value": "2000" - }, - { - "name": "ttl", - "type": "int", - "has_default_value": true, - "default_value": "2" - }, - { - "name": "device_filter", - "type": "String", - "has_default_value": true, - "default_value": "InternetGatewayDevice" - } - ] - }, - { - "name": "get_device", - "return_type": "UPNPDevice", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_device_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_discover_local_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_discover_multicast_if", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_gateway", - "return_type": "UPNPDevice", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_discover_ipv6", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "query_external_address", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "remove_device", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_device", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "device", - "type": "UPNPDevice", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_discover_ipv6", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ipv6", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_discover_local_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_discover_multicast_if", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "m_if", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "UPNPResult", - "values": { - "UPNP_RESULT_SUCCESS": 0, - "UPNP_RESULT_NOT_AUTHORIZED": 1, - "UPNP_RESULT_PORT_MAPPING_NOT_FOUND": 2, - "UPNP_RESULT_INCONSISTENT_PARAMETERS": 3, - "UPNP_RESULT_NO_SUCH_ENTRY_IN_ARRAY": 4, - "UPNP_RESULT_ACTION_FAILED": 5, - "UPNP_RESULT_SRC_IP_WILDCARD_NOT_PERMITTED": 6, - "UPNP_RESULT_EXT_PORT_WILDCARD_NOT_PERMITTED": 7, - "UPNP_RESULT_INT_PORT_WILDCARD_NOT_PERMITTED": 8, - "UPNP_RESULT_REMOTE_HOST_MUST_BE_WILDCARD": 9, - "UPNP_RESULT_EXT_PORT_MUST_BE_WILDCARD": 10, - "UPNP_RESULT_NO_PORT_MAPS_AVAILABLE": 11, - "UPNP_RESULT_CONFLICT_WITH_OTHER_MECHANISM": 12, - "UPNP_RESULT_CONFLICT_WITH_OTHER_MAPPING": 13, - "UPNP_RESULT_SAME_PORT_VALUES_REQUIRED": 14, - "UPNP_RESULT_ONLY_PERMANENT_LEASE_SUPPORTED": 15, - "UPNP_RESULT_INVALID_GATEWAY": 16, - "UPNP_RESULT_INVALID_PORT": 17, - "UPNP_RESULT_INVALID_PROTOCOL": 18, - "UPNP_RESULT_INVALID_DURATION": 19, - "UPNP_RESULT_INVALID_ARGS": 20, - "UPNP_RESULT_INVALID_RESPONSE": 21, - "UPNP_RESULT_INVALID_PARAM": 22, - "UPNP_RESULT_HTTP_ERROR": 23, - "UPNP_RESULT_SOCKET_ERROR": 24, - "UPNP_RESULT_MEM_ALLOC_ERROR": 25, - "UPNP_RESULT_NO_GATEWAY": 26, - "UPNP_RESULT_NO_DEVICES": 27, - "UPNP_RESULT_UNKNOWN_ERROR": 28 - } - } - ] - }, - { - "name": "UPNPDevice", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "IGD_STATUS_DISCONNECTED": 5, - "IGD_STATUS_HTTP_EMPTY": 2, - "IGD_STATUS_HTTP_ERROR": 1, - "IGD_STATUS_INVALID_CONTROL": 7, - "IGD_STATUS_MALLOC_ERROR": 8, - "IGD_STATUS_NO_IGD": 4, - "IGD_STATUS_NO_URLS": 3, - "IGD_STATUS_OK": 0, - "IGD_STATUS_UNKNOWN_DEVICE": 6, - "IGD_STATUS_UNKNOWN_ERROR": 9 - }, - "properties": [ - { - "name": "description_url", - "type": "String", - "getter": "get_description_url", - "setter": "set_description_url", - "index": -1 - }, - { - "name": "igd_control_url", - "type": "String", - "getter": "get_igd_control_url", - "setter": "set_igd_control_url", - "index": -1 - }, - { - "name": "igd_our_addr", - "type": "String", - "getter": "get_igd_our_addr", - "setter": "set_igd_our_addr", - "index": -1 - }, - { - "name": "igd_service_type", - "type": "String", - "getter": "get_igd_service_type", - "setter": "set_igd_service_type", - "index": -1 - }, - { - "name": "igd_status", - "type": "int", - "getter": "get_igd_status", - "setter": "set_igd_status", - "index": -1 - }, - { - "name": "service_type", - "type": "String", - "getter": "get_service_type", - "setter": "set_service_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_port_mapping", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "port_internal", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "desc", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "proto", - "type": "String", - "has_default_value": true, - "default_value": "UDP" - }, - { - "name": "duration", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "delete_port_mapping", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "proto", - "type": "String", - "has_default_value": true, - "default_value": "UDP" - } - ] - }, - { - "name": "get_description_url", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_igd_control_url", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_igd_our_addr", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_igd_service_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_igd_status", - "return_type": "enum.UPNPDevice::IGDStatus", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_service_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_valid_gateway", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "query_external_address", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_description_url", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_igd_control_url", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_igd_our_addr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "addr", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_igd_service_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_igd_status", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "status", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_service_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "IGDStatus", - "values": { - "IGD_STATUS_OK": 0, - "IGD_STATUS_HTTP_ERROR": 1, - "IGD_STATUS_HTTP_EMPTY": 2, - "IGD_STATUS_NO_URLS": 3, - "IGD_STATUS_NO_IGD": 4, - "IGD_STATUS_DISCONNECTED": 5, - "IGD_STATUS_UNKNOWN_DEVICE": 6, - "IGD_STATUS_INVALID_CONTROL": 7, - "IGD_STATUS_MALLOC_ERROR": 8, - "IGD_STATUS_UNKNOWN_ERROR": 9 - } - } - ] - }, - { - "name": "UndoRedo", - "base_class": "Object", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "MERGE_ALL": 2, - "MERGE_DISABLE": 0, - "MERGE_ENDS": 1 - }, - "properties": [ - ], - "signals": [ - { - "name": "version_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "add_do_method", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_do_property", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_do_reference", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_undo_method", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_undo_property", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_undo_reference", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_history", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "increase_version", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "commit_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_action", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "merge_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "get_current_action_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_version", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_redo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_undo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_commiting_action", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "redo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "undo", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "MergeMode", - "values": { - "MERGE_DISABLE": 0, - "MERGE_ENDS": 1, - "MERGE_ALL": 2 - } - } - ] - }, - { - "name": "VBoxContainer", - "base_class": "BoxContainer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VScrollBar", - "base_class": "ScrollBar", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VSeparator", - "base_class": "Separator", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VSlider", - "base_class": "Slider", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VSplitContainer", - "base_class": "SplitContainer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VehicleBody", - "base_class": "RigidBody", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "brake", - "type": "float", - "getter": "get_brake", - "setter": "set_brake", - "index": -1 - }, - { - "name": "engine_force", - "type": "float", - "getter": "get_engine_force", - "setter": "set_engine_force", - "index": -1 - }, - { - "name": "steering", - "type": "float", - "getter": "get_steering", - "setter": "set_steering", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_brake", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_engine_force", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_steering", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_brake", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "brake", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_engine_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "engine_force", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_steering", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "steering", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VehicleWheel", - "base_class": "Spatial", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "brake", - "type": "float", - "getter": "get_brake", - "setter": "set_brake", - "index": -1 - }, - { - "name": "damping_compression", - "type": "float", - "getter": "get_damping_compression", - "setter": "set_damping_compression", - "index": -1 - }, - { - "name": "damping_relaxation", - "type": "float", - "getter": "get_damping_relaxation", - "setter": "set_damping_relaxation", - "index": -1 - }, - { - "name": "engine_force", - "type": "float", - "getter": "get_engine_force", - "setter": "set_engine_force", - "index": -1 - }, - { - "name": "steering", - "type": "float", - "getter": "get_steering", - "setter": "set_steering", - "index": -1 - }, - { - "name": "suspension_max_force", - "type": "float", - "getter": "get_suspension_max_force", - "setter": "set_suspension_max_force", - "index": -1 - }, - { - "name": "suspension_stiffness", - "type": "float", - "getter": "get_suspension_stiffness", - "setter": "set_suspension_stiffness", - "index": -1 - }, - { - "name": "suspension_travel", - "type": "float", - "getter": "get_suspension_travel", - "setter": "set_suspension_travel", - "index": -1 - }, - { - "name": "use_as_steering", - "type": "bool", - "getter": "is_used_as_steering", - "setter": "set_use_as_steering", - "index": -1 - }, - { - "name": "use_as_traction", - "type": "bool", - "getter": "is_used_as_traction", - "setter": "set_use_as_traction", - "index": -1 - }, - { - "name": "wheel_friction_slip", - "type": "float", - "getter": "get_friction_slip", - "setter": "set_friction_slip", - "index": -1 - }, - { - "name": "wheel_radius", - "type": "float", - "getter": "get_radius", - "setter": "set_radius", - "index": -1 - }, - { - "name": "wheel_rest_length", - "type": "float", - "getter": "get_suspension_rest_length", - "setter": "set_suspension_rest_length", - "index": -1 - }, - { - "name": "wheel_roll_influence", - "type": "float", - "getter": "get_roll_influence", - "setter": "set_roll_influence", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_brake", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_contact_body", - "return_type": "Spatial", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_damping_compression", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_damping_relaxation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_engine_force", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_friction_slip", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_radius", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_roll_influence", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rpm", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_skidinfo", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_steering", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_suspension_max_force", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_suspension_rest_length", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_suspension_stiffness", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_suspension_travel", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_in_contact", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_used_as_steering", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_used_as_traction", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_brake", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "brake", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_damping_compression", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_damping_relaxation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_engine_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "engine_force", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_friction_slip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_radius", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_roll_influence", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "roll_influence", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_steering", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "steering", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_suspension_max_force", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_suspension_rest_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_suspension_stiffness", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_suspension_travel", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_as_steering", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_as_traction", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VideoPlayer", - "base_class": "Control", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "audio_track", - "type": "int", - "getter": "get_audio_track", - "setter": "set_audio_track", - "index": -1 - }, - { - "name": "autoplay", - "type": "bool", - "getter": "has_autoplay", - "setter": "set_autoplay", - "index": -1 - }, - { - "name": "buffering_msec", - "type": "int", - "getter": "get_buffering_msec", - "setter": "set_buffering_msec", - "index": -1 - }, - { - "name": "bus", - "type": "String", - "getter": "get_bus", - "setter": "set_bus", - "index": -1 - }, - { - "name": "expand", - "type": "bool", - "getter": "has_expand", - "setter": "set_expand", - "index": -1 - }, - { - "name": "paused", - "type": "bool", - "getter": "is_paused", - "setter": "set_paused", - "index": -1 - }, - { - "name": "stream", - "type": "VideoStream", - "getter": "get_stream", - "setter": "set_stream", - "index": -1 - }, - { - "name": "stream_position", - "type": "float", - "getter": "get_stream_position", - "setter": "set_stream_position", - "index": -1 - }, - { - "name": "volume", - "type": "float", - "getter": "get_volume", - "setter": "set_volume", - "index": -1 - }, - { - "name": "volume_db", - "type": "float", - "getter": "get_volume_db", - "setter": "set_volume_db", - "index": -1 - } - ], - "signals": [ - { - "name": "finished", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_audio_track", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffering_msec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_bus", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream", - "return_type": "VideoStream", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_stream_position", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_video_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_volume", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_volume_db", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_autoplay", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_expand", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_paused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "play", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_audio_track", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "track", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_autoplay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_buffering_msec", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msec", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_bus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "bus", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_expand", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_paused", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "paused", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "stream", - "type": "VideoStream", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stream_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_volume", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "volume", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_volume_db", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "db", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "VideoStream", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VideoStreamGDNative", - "base_class": "VideoStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "file", - "type": "String", - "getter": "get_file", - "setter": "set_file", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VideoStreamTheora", - "base_class": "VideoStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "file", - "type": "String", - "getter": "get_file", - "setter": "set_file", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VideoStreamWebm", - "base_class": "VideoStream", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "file", - "type": "String", - "getter": "get_file", - "setter": "set_file", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_file", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "Viewport", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "CLEAR_MODE_ALWAYS": 0, - "CLEAR_MODE_NEVER": 1, - "CLEAR_MODE_ONLY_NEXT_FRAME": 2, - "DEBUG_DRAW_DISABLED": 0, - "DEBUG_DRAW_OVERDRAW": 2, - "DEBUG_DRAW_UNSHADED": 1, - "DEBUG_DRAW_WIREFRAME": 3, - "MSAA_16X": 4, - "MSAA_2X": 1, - "MSAA_4X": 2, - "MSAA_8X": 3, - "MSAA_DISABLED": 0, - "RENDER_INFO_2D_DRAW_CALLS_IN_FRAME": 7, - "RENDER_INFO_2D_ITEMS_IN_FRAME": 6, - "RENDER_INFO_DRAW_CALLS_IN_FRAME": 5, - "RENDER_INFO_MATERIAL_CHANGES_IN_FRAME": 2, - "RENDER_INFO_MAX": 8, - "RENDER_INFO_OBJECTS_IN_FRAME": 0, - "RENDER_INFO_SHADER_CHANGES_IN_FRAME": 3, - "RENDER_INFO_SURFACE_CHANGES_IN_FRAME": 4, - "RENDER_INFO_VERTICES_IN_FRAME": 1, - "SHADOW_ATLAS_QUADRANT_SUBDIV_1": 1, - "SHADOW_ATLAS_QUADRANT_SUBDIV_1024": 6, - "SHADOW_ATLAS_QUADRANT_SUBDIV_16": 3, - "SHADOW_ATLAS_QUADRANT_SUBDIV_256": 5, - "SHADOW_ATLAS_QUADRANT_SUBDIV_4": 2, - "SHADOW_ATLAS_QUADRANT_SUBDIV_64": 4, - "SHADOW_ATLAS_QUADRANT_SUBDIV_DISABLED": 0, - "SHADOW_ATLAS_QUADRANT_SUBDIV_MAX": 7, - "UPDATE_ALWAYS": 3, - "UPDATE_DISABLED": 0, - "UPDATE_ONCE": 1, - "UPDATE_WHEN_VISIBLE": 2, - "USAGE_2D": 0, - "USAGE_2D_NO_SAMPLING": 1, - "USAGE_3D": 2, - "USAGE_3D_NO_EFFECTS": 3 - }, - "properties": [ - { - "name": "arvr", - "type": "bool", - "getter": "use_arvr", - "setter": "set_use_arvr", - "index": -1 - }, - { - "name": "audio_listener_enable_2d", - "type": "bool", - "getter": "is_audio_listener_2d", - "setter": "set_as_audio_listener_2d", - "index": -1 - }, - { - "name": "audio_listener_enable_3d", - "type": "bool", - "getter": "is_audio_listener", - "setter": "set_as_audio_listener", - "index": -1 - }, - { - "name": "canvas_transform", - "type": "Transform2D", - "getter": "get_canvas_transform", - "setter": "set_canvas_transform", - "index": -1 - }, - { - "name": "debanding", - "type": "bool", - "getter": "get_use_debanding", - "setter": "set_use_debanding", - "index": -1 - }, - { - "name": "debug_draw", - "type": "int", - "getter": "get_debug_draw", - "setter": "set_debug_draw", - "index": -1 - }, - { - "name": "disable_3d", - "type": "bool", - "getter": "is_3d_disabled", - "setter": "set_disable_3d", - "index": -1 - }, - { - "name": "fxaa", - "type": "bool", - "getter": "get_use_fxaa", - "setter": "set_use_fxaa", - "index": -1 - }, - { - "name": "global_canvas_transform", - "type": "Transform2D", - "getter": "get_global_canvas_transform", - "setter": "set_global_canvas_transform", - "index": -1 - }, - { - "name": "gui_disable_input", - "type": "bool", - "getter": "is_input_disabled", - "setter": "set_disable_input", - "index": -1 - }, - { - "name": "gui_snap_controls_to_pixels", - "type": "bool", - "getter": "is_snap_controls_to_pixels_enabled", - "setter": "set_snap_controls_to_pixels", - "index": -1 - }, - { - "name": "handle_input_locally", - "type": "bool", - "getter": "is_handling_input_locally", - "setter": "set_handle_input_locally", - "index": -1 - }, - { - "name": "hdr", - "type": "bool", - "getter": "get_hdr", - "setter": "set_hdr", - "index": -1 - }, - { - "name": "keep_3d_linear", - "type": "bool", - "getter": "get_keep_3d_linear", - "setter": "set_keep_3d_linear", - "index": -1 - }, - { - "name": "msaa", - "type": "int", - "getter": "get_msaa", - "setter": "set_msaa", - "index": -1 - }, - { - "name": "own_world", - "type": "bool", - "getter": "is_using_own_world", - "setter": "set_use_own_world", - "index": -1 - }, - { - "name": "physics_object_picking", - "type": "bool", - "getter": "get_physics_object_picking", - "setter": "set_physics_object_picking", - "index": -1 - }, - { - "name": "render_direct_to_screen", - "type": "bool", - "getter": "is_using_render_direct_to_screen", - "setter": "set_use_render_direct_to_screen", - "index": -1 - }, - { - "name": "render_target_clear_mode", - "type": "int", - "getter": "get_clear_mode", - "setter": "set_clear_mode", - "index": -1 - }, - { - "name": "render_target_update_mode", - "type": "int", - "getter": "get_update_mode", - "setter": "set_update_mode", - "index": -1 - }, - { - "name": "render_target_v_flip", - "type": "bool", - "getter": "get_vflip", - "setter": "set_vflip", - "index": -1 - }, - { - "name": "shadow_atlas_quad_0", - "type": "int", - "getter": "get_shadow_atlas_quadrant_subdiv", - "setter": "set_shadow_atlas_quadrant_subdiv", - "index": 0 - }, - { - "name": "shadow_atlas_quad_1", - "type": "int", - "getter": "get_shadow_atlas_quadrant_subdiv", - "setter": "set_shadow_atlas_quadrant_subdiv", - "index": 1 - }, - { - "name": "shadow_atlas_quad_2", - "type": "int", - "getter": "get_shadow_atlas_quadrant_subdiv", - "setter": "set_shadow_atlas_quadrant_subdiv", - "index": 2 - }, - { - "name": "shadow_atlas_quad_3", - "type": "int", - "getter": "get_shadow_atlas_quadrant_subdiv", - "setter": "set_shadow_atlas_quadrant_subdiv", - "index": 3 - }, - { - "name": "shadow_atlas_size", - "type": "int", - "getter": "get_shadow_atlas_size", - "setter": "set_shadow_atlas_size", - "index": -1 - }, - { - "name": "sharpen_intensity", - "type": "float", - "getter": "get_sharpen_intensity", - "setter": "set_sharpen_intensity", - "index": -1 - }, - { - "name": "size", - "type": "Vector2", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "size_override_stretch", - "type": "bool", - "getter": "is_size_override_stretch_enabled", - "setter": "set_size_override_stretch", - "index": -1 - }, - { - "name": "transparent_bg", - "type": "bool", - "getter": "has_transparent_background", - "setter": "set_transparent_background", - "index": -1 - }, - { - "name": "usage", - "type": "int", - "getter": "get_usage", - "setter": "set_usage", - "index": -1 - }, - { - "name": "use_32_bpc_depth", - "type": "bool", - "getter": "get_use_32_bpc_depth", - "setter": "set_use_32_bpc_depth", - "index": -1 - }, - { - "name": "world", - "type": "World", - "getter": "get_world", - "setter": "set_world", - "index": -1 - }, - { - "name": "world_2d", - "type": "World2D", - "getter": "get_world_2d", - "setter": "set_world_2d", - "index": -1 - } - ], - "signals": [ - { - "name": "gui_focus_changed", - "arguments": [ - { - "name": "node", - "type": "Control", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "size_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_gui_remove_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_show_tooltip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_own_world_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_post_gui_grab_click_focus", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_process_picking", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "ignore_paused", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_subwindow_visibility_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_vp_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_vp_input_text", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_vp_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "find_world", - "return_type": "World", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "find_world_2d", - "return_type": "World2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_camera", - "return_type": "Camera", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_canvas_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_clear_mode", - "return_type": "enum.Viewport::ClearMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_debug_draw", - "return_type": "enum.Viewport::DebugDraw", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_final_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_global_canvas_transform", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hdr", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_keep_3d_linear", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_modal_stack_top", - "return_type": "Control", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_mouse_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_msaa", - "return_type": "enum.Viewport::MSAA", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_object_picking", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_render_info", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "info", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_shadow_atlas_quadrant_subdiv", - "return_type": "enum.Viewport::ShadowAtlasQuadrantSubdiv", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "quadrant", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_shadow_atlas_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sharpen_intensity", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size_override", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "ViewportTexture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_update_mode", - "return_type": "enum.Viewport::UpdateMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_usage", - "return_type": "enum.Viewport::Usage", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_32_bpc_depth", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_debanding", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_fxaa", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_vflip", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_viewport_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visible_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_world", - "return_type": "World", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_world_2d", - "return_type": "World2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "gui_get_drag_data", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "gui_has_modal_stack", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "gui_is_dragging", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_transparent_background", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_3d_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_audio_listener", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_audio_listener_2d", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_handling_input_locally", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_input_disabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_input_handled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_size_override_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_size_override_stretch_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_snap_controls_to_pixels_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_own_world", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_using_render_direct_to_screen", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_as_audio_listener", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_as_audio_listener_2d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_attach_to_screen_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_canvas_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clear_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_debug_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "debug_draw", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_3d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_disable_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "disable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_global_canvas_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "xform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_handle_input_locally", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hdr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_as_handled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_keep_3d_linear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "keep_3d_linear", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_msaa", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msaa", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_object_picking", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_atlas_quadrant_subdiv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "quadrant", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "subdiv", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shadow_atlas_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_sharpen_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "Vector2", - "has_default_value": true, - "default_value": "(-1, -1)" - }, - { - "name": "margin", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "set_size_override_stretch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_snap_controls_to_pixels", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_transparent_background", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_update_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_usage", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "usage", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_32_bpc_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_arvr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "use", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_debanding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_fxaa", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_own_world", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_render_direct_to_screen", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vflip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_world", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "world", - "type": "World", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_world_2d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "world_2d", - "type": "World2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "local_event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "update_worlds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "use_arvr", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "warp_mouse", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "to_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ClearMode", - "values": { - "CLEAR_MODE_ALWAYS": 0, - "CLEAR_MODE_NEVER": 1, - "CLEAR_MODE_ONLY_NEXT_FRAME": 2 - } - }, - { - "name": "RenderInfo", - "values": { - "RENDER_INFO_OBJECTS_IN_FRAME": 0, - "RENDER_INFO_VERTICES_IN_FRAME": 1, - "RENDER_INFO_MATERIAL_CHANGES_IN_FRAME": 2, - "RENDER_INFO_SHADER_CHANGES_IN_FRAME": 3, - "RENDER_INFO_SURFACE_CHANGES_IN_FRAME": 4, - "RENDER_INFO_DRAW_CALLS_IN_FRAME": 5, - "RENDER_INFO_2D_ITEMS_IN_FRAME": 6, - "RENDER_INFO_2D_DRAW_CALLS_IN_FRAME": 7, - "RENDER_INFO_MAX": 8 - } - }, - { - "name": "Usage", - "values": { - "USAGE_2D": 0, - "USAGE_2D_NO_SAMPLING": 1, - "USAGE_3D": 2, - "USAGE_3D_NO_EFFECTS": 3 - } - }, - { - "name": "DebugDraw", - "values": { - "DEBUG_DRAW_DISABLED": 0, - "DEBUG_DRAW_UNSHADED": 1, - "DEBUG_DRAW_OVERDRAW": 2, - "DEBUG_DRAW_WIREFRAME": 3 - } - }, - { - "name": "ShadowAtlasQuadrantSubdiv", - "values": { - "SHADOW_ATLAS_QUADRANT_SUBDIV_DISABLED": 0, - "SHADOW_ATLAS_QUADRANT_SUBDIV_1": 1, - "SHADOW_ATLAS_QUADRANT_SUBDIV_4": 2, - "SHADOW_ATLAS_QUADRANT_SUBDIV_16": 3, - "SHADOW_ATLAS_QUADRANT_SUBDIV_64": 4, - "SHADOW_ATLAS_QUADRANT_SUBDIV_256": 5, - "SHADOW_ATLAS_QUADRANT_SUBDIV_1024": 6, - "SHADOW_ATLAS_QUADRANT_SUBDIV_MAX": 7 - } - }, - { - "name": "UpdateMode", - "values": { - "UPDATE_DISABLED": 0, - "UPDATE_ONCE": 1, - "UPDATE_WHEN_VISIBLE": 2, - "UPDATE_ALWAYS": 3 - } - }, - { - "name": "MSAA", - "values": { - "MSAA_DISABLED": 0, - "MSAA_2X": 1, - "MSAA_4X": 2, - "MSAA_8X": 3, - "MSAA_16X": 4 - } - } - ] - }, - { - "name": "ViewportContainer", - "base_class": "Container", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "stretch", - "type": "bool", - "getter": "is_stretch_enabled", - "setter": "set_stretch", - "index": -1 - }, - { - "name": "stretch_shrink", - "type": "int", - "getter": "get_stretch_shrink", - "setter": "set_stretch_shrink", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_unhandled_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "event", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_stretch_shrink", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_stretch_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_stretch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_stretch_shrink", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "ViewportTexture", - "base_class": "Texture", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "viewport_path", - "type": "NodePath", - "getter": "get_viewport_path_in_scene", - "setter": "set_viewport_path_in_scene", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_viewport_path_in_scene", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_viewport_path_in_scene", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisibilityEnabler", - "base_class": "VisibilityNotifier", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ENABLER_FREEZE_BODIES": 1, - "ENABLER_MAX": 2, - "ENABLER_PAUSE_ANIMATIONS": 0 - }, - "properties": [ - { - "name": "freeze_bodies", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 1 - }, - { - "name": "pause_animations", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 0 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_node_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_enabler_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabler", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabler", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabler", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Enabler", - "values": { - "ENABLER_PAUSE_ANIMATIONS": 0, - "ENABLER_FREEZE_BODIES": 1, - "ENABLER_MAX": 2 - } - } - ] - }, - { - "name": "VisibilityEnabler2D", - "base_class": "VisibilityNotifier2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - "ENABLER_FREEZE_BODIES": 1, - "ENABLER_MAX": 6, - "ENABLER_PARENT_PHYSICS_PROCESS": 4, - "ENABLER_PARENT_PROCESS": 3, - "ENABLER_PAUSE_ANIMATED_SPRITES": 5, - "ENABLER_PAUSE_ANIMATIONS": 0, - "ENABLER_PAUSE_PARTICLES": 2 - }, - "properties": [ - { - "name": "freeze_bodies", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 1 - }, - { - "name": "pause_animated_sprites", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 5 - }, - { - "name": "pause_animations", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 0 - }, - { - "name": "pause_particles", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 2 - }, - { - "name": "physics_process_parent", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 4 - }, - { - "name": "process_parent", - "type": "bool", - "getter": "is_enabler_enabled", - "setter": "set_enabler", - "index": 3 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_node_removed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "Node", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_enabler_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabler", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_enabler", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabler", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Enabler", - "values": { - "ENABLER_PAUSE_ANIMATIONS": 0, - "ENABLER_FREEZE_BODIES": 1, - "ENABLER_PAUSE_PARTICLES": 2, - "ENABLER_PARENT_PROCESS": 3, - "ENABLER_PARENT_PHYSICS_PROCESS": 4, - "ENABLER_PAUSE_ANIMATED_SPRITES": 5, - "ENABLER_MAX": 6 - } - } - ] - }, - { - "name": "VisibilityNotifier", - "base_class": "CullInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "aabb", - "type": "AABB", - "getter": "get_aabb", - "setter": "set_aabb", - "index": -1 - } - ], - "signals": [ - { - "name": "camera_entered", - "arguments": [ - { - "name": "camera", - "type": "Camera", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_exited", - "arguments": [ - { - "name": "camera", - "type": "Camera", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "screen_entered", - "arguments": [ - ] - }, - { - "name": "screen_exited", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_screen", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisibilityNotifier2D", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "rect", - "type": "Rect2", - "getter": "get_rect", - "setter": "set_rect", - "index": -1 - } - ], - "signals": [ - { - "name": "screen_entered", - "arguments": [ - ] - }, - { - "name": "screen_exited", - "arguments": [ - ] - }, - { - "name": "viewport_entered", - "arguments": [ - { - "name": "viewport", - "type": "Viewport", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_exited", - "arguments": [ - { - "name": "viewport", - "type": "Viewport", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_rect", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_on_screen", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualInstance", - "base_class": "CullInstance", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "layers", - "type": "int", - "getter": "get_layer_mask", - "setter": "set_layer_mask", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_visual_instance_rid", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_instance", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_layer_mask", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_layer_mask_bit", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_transformed_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_layer_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_layer_mask_bit", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScript", - "base_class": "Script", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "data", - "type": "Dictionary", - "getter": "_get_data", - "setter": "_set_data", - "index": -1 - } - ], - "signals": [ - { - "name": "node_ports_changed", - "arguments": [ - { - "name": "function", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "_get_data", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_node_ports_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "data", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_custom_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "VisualScriptNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": true, - "default_value": "(0, 0)" - } - ] - }, - { - "name": "add_variable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "default_value", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "export", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "custom_signal_add_argument", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argname", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "custom_signal_get_argument_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_signal_get_argument_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argidx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_signal_get_argument_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argidx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_signal_remove_argument", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argidx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_signal_set_argument_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argidx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argname", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_signal_set_argument_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argidx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "custom_signal_swap_argument", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "argidx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "withidx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "data_connect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "data_disconnect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_function_node_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_function_scroll", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node", - "return_type": "VisualScriptNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_variable_default_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_variable_export", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_variable_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_custom_signal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_data_connection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_function", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_node", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_sequence_connection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_output", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_variable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_custom_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_variable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_custom_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename_variable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "new_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sequence_connect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_output", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sequence_disconnect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_output", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_function_scroll", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ofs", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_instance_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_variable_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_variable_export", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_variable_info", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptBasicTypeConstant", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "basic_type", - "type": "int", - "getter": "get_basic_type", - "setter": "set_basic_type", - "index": -1 - }, - { - "name": "constant", - "type": "String", - "getter": "get_basic_type_constant", - "setter": "set_basic_type_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_basic_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_basic_type_constant", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_basic_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_basic_type_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptBuiltinFunc", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "BYTES_TO_VAR": 62, - "COLORN": 63, - "FUNC_FUNCREF": 50, - "FUNC_MAX": 68, - "LOGIC_CLAMP": 47, - "LOGIC_MAX": 45, - "LOGIC_MIN": 46, - "LOGIC_NEAREST_PO2": 48, - "MATH_ABS": 16, - "MATH_ACOS": 7, - "MATH_ASIN": 6, - "MATH_ATAN": 8, - "MATH_ATAN2": 9, - "MATH_CARTESIAN2POLAR": 42, - "MATH_CEIL": 14, - "MATH_COS": 1, - "MATH_COSH": 4, - "MATH_DB2LINEAR": 40, - "MATH_DECIMALS": 24, - "MATH_DECTIME": 30, - "MATH_DEG2RAD": 37, - "MATH_EASE": 23, - "MATH_EXP": 20, - "MATH_FLOOR": 13, - "MATH_FMOD": 11, - "MATH_FPOSMOD": 12, - "MATH_INVERSE_LERP": 27, - "MATH_ISINF": 22, - "MATH_ISNAN": 21, - "MATH_LERP": 26, - "MATH_LERP_ANGLE": 66, - "MATH_LINEAR2DB": 39, - "MATH_LOG": 19, - "MATH_MOVE_TOWARD": 29, - "MATH_POLAR2CARTESIAN": 41, - "MATH_POSMOD": 65, - "MATH_POW": 18, - "MATH_RAD2DEG": 38, - "MATH_RAND": 32, - "MATH_RANDF": 33, - "MATH_RANDOM": 34, - "MATH_RANDOMIZE": 31, - "MATH_RANDSEED": 36, - "MATH_RANGE_LERP": 28, - "MATH_ROUND": 15, - "MATH_SEED": 35, - "MATH_SIGN": 17, - "MATH_SIN": 0, - "MATH_SINH": 3, - "MATH_SMOOTHSTEP": 64, - "MATH_SQRT": 10, - "MATH_STEPIFY": 25, - "MATH_TAN": 2, - "MATH_TANH": 5, - "MATH_WRAP": 43, - "MATH_WRAPF": 44, - "OBJ_WEAKREF": 49, - "STR_TO_VAR": 60, - "TEXT_CHAR": 54, - "TEXT_ORD": 67, - "TEXT_PRINT": 56, - "TEXT_PRINTERR": 57, - "TEXT_PRINTRAW": 58, - "TEXT_STR": 55, - "TYPE_CONVERT": 51, - "TYPE_EXISTS": 53, - "TYPE_OF": 52, - "VAR_TO_BYTES": 61, - "VAR_TO_STR": 59 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_func", - "setter": "set_func", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_func", - "return_type": "enum.VisualScriptBuiltinFunc::BuiltinFunc", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_func", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "which", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "BuiltinFunc", - "values": { - "MATH_SIN": 0, - "MATH_COS": 1, - "MATH_TAN": 2, - "MATH_SINH": 3, - "MATH_COSH": 4, - "MATH_TANH": 5, - "MATH_ASIN": 6, - "MATH_ACOS": 7, - "MATH_ATAN": 8, - "MATH_ATAN2": 9, - "MATH_SQRT": 10, - "MATH_FMOD": 11, - "MATH_FPOSMOD": 12, - "MATH_FLOOR": 13, - "MATH_CEIL": 14, - "MATH_ROUND": 15, - "MATH_ABS": 16, - "MATH_SIGN": 17, - "MATH_POW": 18, - "MATH_LOG": 19, - "MATH_EXP": 20, - "MATH_ISNAN": 21, - "MATH_ISINF": 22, - "MATH_EASE": 23, - "MATH_DECIMALS": 24, - "MATH_STEPIFY": 25, - "MATH_LERP": 26, - "MATH_INVERSE_LERP": 27, - "MATH_RANGE_LERP": 28, - "MATH_MOVE_TOWARD": 29, - "MATH_DECTIME": 30, - "MATH_RANDOMIZE": 31, - "MATH_RAND": 32, - "MATH_RANDF": 33, - "MATH_RANDOM": 34, - "MATH_SEED": 35, - "MATH_RANDSEED": 36, - "MATH_DEG2RAD": 37, - "MATH_RAD2DEG": 38, - "MATH_LINEAR2DB": 39, - "MATH_DB2LINEAR": 40, - "MATH_POLAR2CARTESIAN": 41, - "MATH_CARTESIAN2POLAR": 42, - "MATH_WRAP": 43, - "MATH_WRAPF": 44, - "LOGIC_MAX": 45, - "LOGIC_MIN": 46, - "LOGIC_CLAMP": 47, - "LOGIC_NEAREST_PO2": 48, - "OBJ_WEAKREF": 49, - "FUNC_FUNCREF": 50, - "TYPE_CONVERT": 51, - "TYPE_OF": 52, - "TYPE_EXISTS": 53, - "TEXT_CHAR": 54, - "TEXT_STR": 55, - "TEXT_PRINT": 56, - "TEXT_PRINTERR": 57, - "TEXT_PRINTRAW": 58, - "VAR_TO_STR": 59, - "STR_TO_VAR": 60, - "VAR_TO_BYTES": 61, - "BYTES_TO_VAR": 62, - "COLORN": 63, - "MATH_SMOOTHSTEP": 64, - "MATH_POSMOD": 65, - "MATH_LERP_ANGLE": 66, - "TEXT_ORD": 67, - "FUNC_MAX": 68 - } - } - ] - }, - { - "name": "VisualScriptClassConstant", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - }, - { - "name": "constant", - "type": "String", - "getter": "get_class_constant", - "setter": "set_class_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_class_constant", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_class_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptComment", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "description", - "type": "String", - "getter": "get_description", - "setter": "set_description", - "index": -1 - }, - { - "name": "size", - "type": "Vector2", - "getter": "get_size", - "setter": "set_size", - "index": -1 - }, - { - "name": "title", - "type": "String", - "getter": "get_title", - "setter": "set_title", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_description", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_title", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_description", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "description", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptComposeArray", - "base_class": "VisualScriptLists", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptCondition", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptConstant", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "type", - "type": "int", - "getter": "get_constant_type", - "setter": "set_constant_type", - "index": -1 - }, - { - "name": "value", - "type": "Variant", - "getter": "get_constant_value", - "setter": "set_constant_value", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constant_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constant_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constant_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constant_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptConstructor", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constructor", - "type": "Dictionary", - "getter": "get_constructor", - "setter": "set_constructor", - "index": -1 - }, - { - "name": "type", - "type": "int", - "getter": "get_constructor_type", - "setter": "set_constructor_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constructor", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_constructor_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constructor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "constructor", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_constructor_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptCustomNode", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "START_MODE_BEGIN_SEQUENCE": 0, - "START_MODE_CONTINUE_SEQUENCE": 1, - "START_MODE_RESUME_YIELD": 2, - "STEP_EXIT_FUNCTION_BIT": 134217728, - "STEP_GO_BACK_BIT": 33554432, - "STEP_NO_ADVANCE_BIT": 67108864, - "STEP_PUSH_STACK_BIT": 16777216, - "STEP_YIELD_BIT": 268435456 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_caption", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_category", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_input_value_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_input_value_port_hint", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_input_value_port_hint_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_input_value_port_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_input_value_port_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_output_sequence_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_output_sequence_port_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_output_value_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_output_value_port_hint", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_output_value_port_hint_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_output_value_port_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_output_value_port_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_working_memory_size", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_has_input_sequence_port", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_script_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_step", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inputs", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "outputs", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "start_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "working_mem", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "StartMode", - "values": { - "START_MODE_BEGIN_SEQUENCE": 0, - "START_MODE_CONTINUE_SEQUENCE": 1, - "START_MODE_RESUME_YIELD": 2 - } - } - ] - }, - { - "name": "VisualScriptDeconstruct", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "elem_cache", - "type": "Array", - "getter": "_get_elem_cache", - "setter": "_set_elem_cache", - "index": -1 - }, - { - "name": "type", - "type": "int", - "getter": "get_deconstruct_type", - "setter": "set_deconstruct_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_elem_cache", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_elem_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "_cache", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_deconstruct_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_deconstruct_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptEmitSignal", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "signal", - "type": "String", - "getter": "get_signal", - "setter": "set_signal", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_signal", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptEngineSingleton", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "String", - "getter": "get_singleton", - "setter": "set_singleton", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_singleton", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_singleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptExpression", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptFunction", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptFunctionCall", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "CALL_MODE_BASIC_TYPE": 3, - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_SELF": 0, - "CALL_MODE_SINGLETON": 4, - "RPC_DISABLED": 0, - "RPC_RELIABLE": 1, - "RPC_RELIABLE_TO_ID": 3, - "RPC_UNRELIABLE": 2, - "RPC_UNRELIABLE_TO_ID": 4 - }, - "properties": [ - { - "name": "argument_cache", - "type": "Dictionary", - "getter": "_get_argument_cache", - "setter": "_set_argument_cache", - "index": -1 - }, - { - "name": "base_script", - "type": "String", - "getter": "get_base_script", - "setter": "set_base_script", - "index": -1 - }, - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - }, - { - "name": "basic_type", - "type": "int", - "getter": "get_basic_type", - "setter": "set_basic_type", - "index": -1 - }, - { - "name": "call_mode", - "type": "int", - "getter": "get_call_mode", - "setter": "set_call_mode", - "index": -1 - }, - { - "name": "function", - "type": "String", - "getter": "get_function", - "setter": "set_function", - "index": -1 - }, - { - "name": "node_path", - "type": "NodePath", - "getter": "get_base_path", - "setter": "set_base_path", - "index": -1 - }, - { - "name": "rpc_call_mode", - "type": "int", - "getter": "get_rpc_call_mode", - "setter": "set_rpc_call_mode", - "index": -1 - }, - { - "name": "singleton", - "type": "String", - "getter": "get_singleton", - "setter": "set_singleton", - "index": -1 - }, - { - "name": "use_default_args", - "type": "int", - "getter": "get_use_default_args", - "setter": "set_use_default_args", - "index": -1 - }, - { - "name": "validate", - "type": "bool", - "getter": "get_validate", - "setter": "set_validate", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_argument_cache", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_argument_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "argument_cache", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_base_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_script", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_basic_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_call_mode", - "return_type": "enum.VisualScriptFunctionCall::CallMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_function", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_rpc_call_mode", - "return_type": "enum.VisualScriptFunctionCall::RPCCallMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_singleton", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_use_default_args", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_validate", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_script", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_basic_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "basic_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_call_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "function", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_rpc_call_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_singleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "singleton", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_default_args", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_validate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "RPCCallMode", - "values": { - "RPC_DISABLED": 0, - "RPC_RELIABLE": 1, - "RPC_UNRELIABLE": 2, - "RPC_RELIABLE_TO_ID": 3, - "RPC_UNRELIABLE_TO_ID": 4 - } - }, - { - "name": "CallMode", - "values": { - "CALL_MODE_SELF": 0, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_BASIC_TYPE": 3, - "CALL_MODE_SINGLETON": 4 - } - } - ] - }, - { - "name": "VisualScriptFunctionState", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_signal_callback", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": true, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "connect_to_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "obj", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "signals", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "args", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_valid", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "resume", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "args", - "type": "Array", - "has_default_value": true, - "default_value": "Null" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptGlobalConstant", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "int", - "getter": "get_global_constant", - "setter": "set_global_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_global_constant", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_global_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptIndexGet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptIndexSet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptInputAction", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MODE_JUST_PRESSED": 2, - "MODE_JUST_RELEASED": 3, - "MODE_PRESSED": 0, - "MODE_RELEASED": 1 - }, - "properties": [ - { - "name": "action", - "type": "String", - "getter": "get_action_name", - "setter": "set_action_name", - "index": -1 - }, - { - "name": "mode", - "type": "int", - "getter": "get_action_mode", - "setter": "set_action_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_action_mode", - "return_type": "enum.VisualScriptInputAction::Mode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_action_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_action_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_action_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Mode", - "values": { - "MODE_PRESSED": 0, - "MODE_RELEASED": 1, - "MODE_JUST_PRESSED": 2, - "MODE_JUST_RELEASED": 3 - } - } - ] - }, - { - "name": "VisualScriptIterator", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptLists", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_input_data_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_output_data_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_input_data_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_output_data_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_data_port_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_data_port_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_output_data_port_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_output_data_port_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptLocalVar", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "type", - "type": "int", - "getter": "get_var_type", - "setter": "set_var_type", - "index": -1 - }, - { - "name": "var_name", - "type": "String", - "getter": "get_var_name", - "setter": "set_var_name", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_var_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_var_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_var_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_var_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptLocalVarSet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "type", - "type": "int", - "getter": "get_var_type", - "setter": "set_var_type", - "index": -1 - }, - { - "name": "var_name", - "type": "String", - "getter": "get_var_name", - "setter": "set_var_name", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_var_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_var_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_var_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_var_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptMathConstant", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "MATH_CONSTANT_E": 4, - "MATH_CONSTANT_HALF_PI": 2, - "MATH_CONSTANT_INF": 6, - "MATH_CONSTANT_MAX": 8, - "MATH_CONSTANT_NAN": 7, - "MATH_CONSTANT_ONE": 0, - "MATH_CONSTANT_PI": 1, - "MATH_CONSTANT_SQRT2": 5, - "MATH_CONSTANT_TAU": 3 - }, - "properties": [ - { - "name": "constant", - "type": "int", - "getter": "get_math_constant", - "setter": "set_math_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_math_constant", - "return_type": "enum.VisualScriptMathConstant::MathConstant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_math_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "which", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "MathConstant", - "values": { - "MATH_CONSTANT_ONE": 0, - "MATH_CONSTANT_PI": 1, - "MATH_CONSTANT_HALF_PI": 2, - "MATH_CONSTANT_TAU": 3, - "MATH_CONSTANT_E": 4, - "MATH_CONSTANT_SQRT2": 5, - "MATH_CONSTANT_INF": 6, - "MATH_CONSTANT_NAN": 7, - "MATH_CONSTANT_MAX": 8 - } - } - ] - }, - { - "name": "VisualScriptNode", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "_default_input_values", - "type": "Array", - "getter": "_get_default_input_values", - "setter": "_set_default_input_values", - "index": -1 - } - ], - "signals": [ - { - "name": "ports_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "_get_default_input_values", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_default_input_values", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "values", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_default_input_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_visual_script", - "return_type": "VisualScript", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "ports_changed_notify", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_input_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port_idx", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptOperator", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "operator", - "type": "int", - "getter": "get_operator", - "setter": "set_operator", - "index": -1 - }, - { - "name": "type", - "type": "int", - "getter": "get_typed", - "setter": "set_typed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_operator", - "return_type": "enum.Variant::Operator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_typed", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_typed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptPreload", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "resource", - "type": "Resource", - "getter": "get_preload", - "setter": "set_preload", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_preload", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_preload", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptPropertyGet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "CALL_MODE_BASIC_TYPE": 3, - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_SELF": 0 - }, - "properties": [ - { - "name": "base_script", - "type": "String", - "getter": "get_base_script", - "setter": "set_base_script", - "index": -1 - }, - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - }, - { - "name": "basic_type", - "type": "int", - "getter": "get_basic_type", - "setter": "set_basic_type", - "index": -1 - }, - { - "name": "index", - "type": "String", - "getter": "get_index", - "setter": "set_index", - "index": -1 - }, - { - "name": "node_path", - "type": "NodePath", - "getter": "get_base_path", - "setter": "set_base_path", - "index": -1 - }, - { - "name": "property", - "type": "String", - "getter": "get_property", - "setter": "set_property", - "index": -1 - }, - { - "name": "set_mode", - "type": "int", - "getter": "get_call_mode", - "setter": "set_call_mode", - "index": -1 - }, - { - "name": "type_cache", - "type": "int", - "getter": "_get_type_cache", - "setter": "_set_type_cache", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_type_cache", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_type_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type_cache", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_base_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_script", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_basic_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_call_mode", - "return_type": "enum.VisualScriptPropertyGet::CallMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_index", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_property", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_script", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_basic_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "basic_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_call_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_property", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "CallMode", - "values": { - "CALL_MODE_SELF": 0, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_BASIC_TYPE": 3 - } - } - ] - }, - { - "name": "VisualScriptPropertySet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "ASSIGN_OP_ADD": 1, - "ASSIGN_OP_BIT_AND": 8, - "ASSIGN_OP_BIT_OR": 9, - "ASSIGN_OP_BIT_XOR": 10, - "ASSIGN_OP_DIV": 4, - "ASSIGN_OP_MOD": 5, - "ASSIGN_OP_MUL": 3, - "ASSIGN_OP_NONE": 0, - "ASSIGN_OP_SHIFT_LEFT": 6, - "ASSIGN_OP_SHIFT_RIGHT": 7, - "ASSIGN_OP_SUB": 2, - "CALL_MODE_BASIC_TYPE": 3, - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_SELF": 0 - }, - "properties": [ - { - "name": "assign_op", - "type": "int", - "getter": "get_assign_op", - "setter": "set_assign_op", - "index": -1 - }, - { - "name": "base_script", - "type": "String", - "getter": "get_base_script", - "setter": "set_base_script", - "index": -1 - }, - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - }, - { - "name": "basic_type", - "type": "int", - "getter": "get_basic_type", - "setter": "set_basic_type", - "index": -1 - }, - { - "name": "index", - "type": "String", - "getter": "get_index", - "setter": "set_index", - "index": -1 - }, - { - "name": "node_path", - "type": "NodePath", - "getter": "get_base_path", - "setter": "set_base_path", - "index": -1 - }, - { - "name": "property", - "type": "String", - "getter": "get_property", - "setter": "set_property", - "index": -1 - }, - { - "name": "set_mode", - "type": "int", - "getter": "get_call_mode", - "setter": "set_call_mode", - "index": -1 - }, - { - "name": "type_cache", - "type": "int", - "getter": "_get_type_cache", - "setter": "_set_type_cache", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_type_cache", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_type_cache", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type_cache", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_assign_op", - "return_type": "enum.VisualScriptPropertySet::AssignOp", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_script", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_basic_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_call_mode", - "return_type": "enum.VisualScriptPropertySet::CallMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_index", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_property", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_assign_op", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "assign_op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_script", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_basic_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "basic_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_call_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_property", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "AssignOp", - "values": { - "ASSIGN_OP_NONE": 0, - "ASSIGN_OP_ADD": 1, - "ASSIGN_OP_SUB": 2, - "ASSIGN_OP_MUL": 3, - "ASSIGN_OP_DIV": 4, - "ASSIGN_OP_MOD": 5, - "ASSIGN_OP_SHIFT_LEFT": 6, - "ASSIGN_OP_SHIFT_RIGHT": 7, - "ASSIGN_OP_BIT_AND": 8, - "ASSIGN_OP_BIT_OR": 9, - "ASSIGN_OP_BIT_XOR": 10 - } - }, - { - "name": "CallMode", - "values": { - "CALL_MODE_SELF": 0, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_BASIC_TYPE": 3 - } - } - ] - }, - { - "name": "VisualScriptResourcePath", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "path", - "type": "String", - "getter": "get_resource_path", - "setter": "set_resource_path", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_resource_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_resource_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptReturn", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "return_enabled", - "type": "bool", - "getter": "is_return_value_enabled", - "setter": "set_enable_return_value", - "index": -1 - }, - { - "name": "return_type", - "type": "int", - "getter": "get_return_type", - "setter": "set_return_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_return_type", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_return_value_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_enable_return_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_return_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSceneNode", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "node_path", - "type": "NodePath", - "getter": "get_node_path", - "setter": "set_node_path", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_node_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_node_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSceneTree", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSelect", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "type", - "type": "int", - "getter": "get_typed", - "setter": "set_typed", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_typed", - "return_type": "enum.Variant::Type", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_typed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSelf", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSequence", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "steps", - "type": "int", - "getter": "get_steps", - "setter": "set_steps", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_steps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_steps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "steps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSubCall", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "_subcall", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arguments", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptSwitch", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptTypeCast", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "base_script", - "type": "String", - "getter": "get_base_script", - "setter": "set_base_script", - "index": -1 - }, - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_base_script", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_script", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptVariableGet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "var_name", - "type": "String", - "getter": "get_variable", - "setter": "set_variable", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_variable", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_variable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptVariableSet", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "var_name", - "type": "String", - "getter": "get_variable", - "setter": "set_variable", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_variable", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_variable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualScriptWhile", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualScriptYield", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "YIELD_FRAME": 1, - "YIELD_PHYSICS_FRAME": 2, - "YIELD_WAIT": 3 - }, - "properties": [ - { - "name": "mode", - "type": "int", - "getter": "get_yield_mode", - "setter": "set_yield_mode", - "index": -1 - }, - { - "name": "wait_time", - "type": "float", - "getter": "get_wait_time", - "setter": "set_wait_time", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_wait_time", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_yield_mode", - "return_type": "enum.VisualScriptYield::YieldMode", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_wait_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sec", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_yield_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "YieldMode", - "values": { - "YIELD_FRAME": 1, - "YIELD_PHYSICS_FRAME": 2, - "YIELD_WAIT": 3 - } - } - ] - }, - { - "name": "VisualScriptYieldSignal", - "base_class": "VisualScriptNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "CALL_MODE_INSTANCE": 2, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_SELF": 0 - }, - "properties": [ - { - "name": "base_type", - "type": "String", - "getter": "get_base_type", - "setter": "set_base_type", - "index": -1 - }, - { - "name": "call_mode", - "type": "int", - "getter": "get_call_mode", - "setter": "set_call_mode", - "index": -1 - }, - { - "name": "node_path", - "type": "NodePath", - "getter": "get_base_path", - "setter": "set_base_path", - "index": -1 - }, - { - "name": "signal", - "type": "String", - "getter": "get_signal", - "setter": "set_signal", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_base_path", - "return_type": "NodePath", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_base_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_call_mode", - "return_type": "enum.VisualScriptYieldSignal::CallMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_signal", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_base_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_path", - "type": "NodePath", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_base_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base_type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_call_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_signal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "CallMode", - "values": { - "CALL_MODE_SELF": 0, - "CALL_MODE_NODE_PATH": 1, - "CALL_MODE_INSTANCE": 2 - } - } - ] - }, - { - "name": "VisualServer", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "VisualServer", - "instanciable": false, - "is_reference": false, - "constants": { - "ARRAY_BONES": 6, - "ARRAY_COLOR": 3, - "ARRAY_COMPRESS_BONES": 32768, - "ARRAY_COMPRESS_COLOR": 4096, - "ARRAY_COMPRESS_DEFAULT": 2194432, - "ARRAY_COMPRESS_INDEX": 131072, - "ARRAY_COMPRESS_NORMAL": 1024, - "ARRAY_COMPRESS_TANGENT": 2048, - "ARRAY_COMPRESS_TEX_UV": 8192, - "ARRAY_COMPRESS_TEX_UV2": 16384, - "ARRAY_COMPRESS_VERTEX": 512, - "ARRAY_COMPRESS_WEIGHTS": 65536, - "ARRAY_FLAG_USE_16_BIT_BONES": 524288, - "ARRAY_FLAG_USE_2D_VERTICES": 262144, - "ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION": 2097152, - "ARRAY_FORMAT_BONES": 64, - "ARRAY_FORMAT_COLOR": 8, - "ARRAY_FORMAT_INDEX": 256, - "ARRAY_FORMAT_NORMAL": 2, - "ARRAY_FORMAT_TANGENT": 4, - "ARRAY_FORMAT_TEX_UV": 16, - "ARRAY_FORMAT_TEX_UV2": 32, - "ARRAY_FORMAT_VERTEX": 1, - "ARRAY_FORMAT_WEIGHTS": 128, - "ARRAY_INDEX": 8, - "ARRAY_MAX": 9, - "ARRAY_NORMAL": 1, - "ARRAY_TANGENT": 2, - "ARRAY_TEX_UV": 4, - "ARRAY_TEX_UV2": 5, - "ARRAY_VERTEX": 0, - "ARRAY_WEIGHTS": 7, - "ARRAY_WEIGHTS_SIZE": 4, - "BLEND_SHAPE_MODE_NORMALIZED": 0, - "BLEND_SHAPE_MODE_RELATIVE": 1, - "CANVAS_ITEM_Z_MAX": 4096, - "CANVAS_ITEM_Z_MIN": -4096, - "CANVAS_LIGHT_FILTER_NONE": 0, - "CANVAS_LIGHT_FILTER_PCF13": 5, - "CANVAS_LIGHT_FILTER_PCF3": 1, - "CANVAS_LIGHT_FILTER_PCF5": 2, - "CANVAS_LIGHT_FILTER_PCF7": 3, - "CANVAS_LIGHT_FILTER_PCF9": 4, - "CANVAS_LIGHT_MODE_ADD": 0, - "CANVAS_LIGHT_MODE_MASK": 3, - "CANVAS_LIGHT_MODE_MIX": 2, - "CANVAS_LIGHT_MODE_SUB": 1, - "CANVAS_OCCLUDER_POLYGON_CULL_CLOCKWISE": 1, - "CANVAS_OCCLUDER_POLYGON_CULL_COUNTER_CLOCKWISE": 2, - "CANVAS_OCCLUDER_POLYGON_CULL_DISABLED": 0, - "CUBEMAP_BACK": 5, - "CUBEMAP_BOTTOM": 2, - "CUBEMAP_FRONT": 4, - "CUBEMAP_LEFT": 0, - "CUBEMAP_RIGHT": 1, - "CUBEMAP_TOP": 3, - "ENV_BG_CANVAS": 4, - "ENV_BG_CLEAR_COLOR": 0, - "ENV_BG_COLOR": 1, - "ENV_BG_COLOR_SKY": 3, - "ENV_BG_KEEP": 5, - "ENV_BG_MAX": 7, - "ENV_BG_SKY": 2, - "ENV_DOF_BLUR_QUALITY_HIGH": 2, - "ENV_DOF_BLUR_QUALITY_LOW": 0, - "ENV_DOF_BLUR_QUALITY_MEDIUM": 1, - "ENV_SSAO_BLUR_1x1": 1, - "ENV_SSAO_BLUR_2x2": 2, - "ENV_SSAO_BLUR_3x3": 3, - "ENV_SSAO_BLUR_DISABLED": 0, - "ENV_SSAO_QUALITY_HIGH": 2, - "ENV_SSAO_QUALITY_LOW": 0, - "ENV_SSAO_QUALITY_MEDIUM": 1, - "ENV_TONE_MAPPER_ACES": 3, - "ENV_TONE_MAPPER_ACES_FITTED": 4, - "ENV_TONE_MAPPER_FILMIC": 2, - "ENV_TONE_MAPPER_LINEAR": 0, - "ENV_TONE_MAPPER_REINHARD": 1, - "FEATURE_MULTITHREADED": 1, - "FEATURE_SHADERS": 0, - "GLOW_BLEND_MODE_ADDITIVE": 0, - "GLOW_BLEND_MODE_REPLACE": 3, - "GLOW_BLEND_MODE_SCREEN": 1, - "GLOW_BLEND_MODE_SOFTLIGHT": 2, - "INFO_2D_DRAW_CALLS_IN_FRAME": 7, - "INFO_2D_ITEMS_IN_FRAME": 6, - "INFO_DRAW_CALLS_IN_FRAME": 5, - "INFO_MATERIAL_CHANGES_IN_FRAME": 2, - "INFO_OBJECTS_IN_FRAME": 0, - "INFO_SHADER_CHANGES_IN_FRAME": 3, - "INFO_SURFACE_CHANGES_IN_FRAME": 4, - "INFO_TEXTURE_MEM_USED": 10, - "INFO_USAGE_VIDEO_MEM_TOTAL": 8, - "INFO_VERTEX_MEM_USED": 11, - "INFO_VERTICES_IN_FRAME": 1, - "INFO_VIDEO_MEM_USED": 9, - "INSTANCE_FLAG_DRAW_NEXT_FRAME_IF_VISIBLE": 1, - "INSTANCE_FLAG_MAX": 2, - "INSTANCE_FLAG_USE_BAKED_LIGHT": 0, - "INSTANCE_GEOMETRY_MASK": 30, - "INSTANCE_GI_PROBE": 7, - "INSTANCE_IMMEDIATE": 3, - "INSTANCE_LIGHT": 5, - "INSTANCE_LIGHTMAP_CAPTURE": 8, - "INSTANCE_MAX": 9, - "INSTANCE_MESH": 1, - "INSTANCE_MULTIMESH": 2, - "INSTANCE_NONE": 0, - "INSTANCE_PARTICLES": 4, - "INSTANCE_REFLECTION_PROBE": 6, - "LIGHT_BAKE_ALL": 2, - "LIGHT_BAKE_DISABLED": 0, - "LIGHT_BAKE_INDIRECT": 1, - "LIGHT_DIRECTIONAL": 0, - "LIGHT_DIRECTIONAL_SHADOW_DEPTH_RANGE_OPTIMIZED": 1, - "LIGHT_DIRECTIONAL_SHADOW_DEPTH_RANGE_STABLE": 0, - "LIGHT_DIRECTIONAL_SHADOW_ORTHOGONAL": 0, - "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_2_SPLITS": 1, - "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_4_SPLITS": 2, - "LIGHT_OMNI": 1, - "LIGHT_OMNI_SHADOW_CUBE": 1, - "LIGHT_OMNI_SHADOW_DETAIL_HORIZONTAL": 1, - "LIGHT_OMNI_SHADOW_DETAIL_VERTICAL": 0, - "LIGHT_OMNI_SHADOW_DUAL_PARABOLOID": 0, - "LIGHT_PARAM_ATTENUATION": 5, - "LIGHT_PARAM_CONTACT_SHADOW_SIZE": 8, - "LIGHT_PARAM_ENERGY": 0, - "LIGHT_PARAM_INDIRECT_ENERGY": 1, - "LIGHT_PARAM_MAX": 16, - "LIGHT_PARAM_RANGE": 4, - "LIGHT_PARAM_SHADOW_BIAS": 14, - "LIGHT_PARAM_SHADOW_BIAS_SPLIT_SCALE": 15, - "LIGHT_PARAM_SHADOW_MAX_DISTANCE": 9, - "LIGHT_PARAM_SHADOW_NORMAL_BIAS": 13, - "LIGHT_PARAM_SHADOW_SPLIT_1_OFFSET": 10, - "LIGHT_PARAM_SHADOW_SPLIT_2_OFFSET": 11, - "LIGHT_PARAM_SHADOW_SPLIT_3_OFFSET": 12, - "LIGHT_PARAM_SIZE": 2, - "LIGHT_PARAM_SPECULAR": 3, - "LIGHT_PARAM_SPOT_ANGLE": 6, - "LIGHT_PARAM_SPOT_ATTENUATION": 7, - "LIGHT_SPOT": 2, - "MATERIAL_RENDER_PRIORITY_MAX": 127, - "MATERIAL_RENDER_PRIORITY_MIN": -128, - "MAX_CURSORS": 8, - "MAX_GLOW_LEVELS": 7, - "MULTIMESH_COLOR_8BIT": 1, - "MULTIMESH_COLOR_FLOAT": 2, - "MULTIMESH_COLOR_NONE": 0, - "MULTIMESH_CUSTOM_DATA_8BIT": 1, - "MULTIMESH_CUSTOM_DATA_FLOAT": 2, - "MULTIMESH_CUSTOM_DATA_NONE": 0, - "MULTIMESH_TRANSFORM_2D": 0, - "MULTIMESH_TRANSFORM_3D": 1, - "NINE_PATCH_STRETCH": 0, - "NINE_PATCH_TILE": 1, - "NINE_PATCH_TILE_FIT": 2, - "NO_INDEX_ARRAY": -1, - "PARTICLES_DRAW_ORDER_INDEX": 0, - "PARTICLES_DRAW_ORDER_LIFETIME": 1, - "PARTICLES_DRAW_ORDER_VIEW_DEPTH": 2, - "PRIMITIVE_LINES": 1, - "PRIMITIVE_LINE_LOOP": 3, - "PRIMITIVE_LINE_STRIP": 2, - "PRIMITIVE_MAX": 7, - "PRIMITIVE_POINTS": 0, - "PRIMITIVE_TRIANGLES": 4, - "PRIMITIVE_TRIANGLE_FAN": 6, - "PRIMITIVE_TRIANGLE_STRIP": 5, - "REFLECTION_PROBE_UPDATE_ALWAYS": 1, - "REFLECTION_PROBE_UPDATE_ONCE": 0, - "SCENARIO_DEBUG_DISABLED": 0, - "SCENARIO_DEBUG_OVERDRAW": 2, - "SCENARIO_DEBUG_SHADELESS": 3, - "SCENARIO_DEBUG_WIREFRAME": 1, - "SHADER_CANVAS_ITEM": 1, - "SHADER_MAX": 3, - "SHADER_PARTICLES": 2, - "SHADER_SPATIAL": 0, - "SHADOW_CASTING_SETTING_DOUBLE_SIDED": 2, - "SHADOW_CASTING_SETTING_OFF": 0, - "SHADOW_CASTING_SETTING_ON": 1, - "SHADOW_CASTING_SETTING_SHADOWS_ONLY": 3, - "TEXTURE_FLAGS_DEFAULT": 7, - "TEXTURE_FLAG_ANISOTROPIC_FILTER": 8, - "TEXTURE_FLAG_CONVERT_TO_LINEAR": 16, - "TEXTURE_FLAG_FILTER": 4, - "TEXTURE_FLAG_MIPMAPS": 1, - "TEXTURE_FLAG_MIRRORED_REPEAT": 32, - "TEXTURE_FLAG_REPEAT": 2, - "TEXTURE_FLAG_USED_FOR_STREAMING": 2048, - "TEXTURE_TYPE_2D": 0, - "TEXTURE_TYPE_2D_ARRAY": 3, - "TEXTURE_TYPE_3D": 4, - "TEXTURE_TYPE_CUBEMAP": 2, - "VIEWPORT_CLEAR_ALWAYS": 0, - "VIEWPORT_CLEAR_NEVER": 1, - "VIEWPORT_CLEAR_ONLY_NEXT_FRAME": 2, - "VIEWPORT_DEBUG_DRAW_DISABLED": 0, - "VIEWPORT_DEBUG_DRAW_OVERDRAW": 2, - "VIEWPORT_DEBUG_DRAW_UNSHADED": 1, - "VIEWPORT_DEBUG_DRAW_WIREFRAME": 3, - "VIEWPORT_MSAA_16X": 4, - "VIEWPORT_MSAA_2X": 1, - "VIEWPORT_MSAA_4X": 2, - "VIEWPORT_MSAA_8X": 3, - "VIEWPORT_MSAA_DISABLED": 0, - "VIEWPORT_MSAA_EXT_2X": 5, - "VIEWPORT_MSAA_EXT_4X": 6, - "VIEWPORT_RENDER_INFO_2D_DRAW_CALLS_IN_FRAME": 7, - "VIEWPORT_RENDER_INFO_2D_ITEMS_IN_FRAME": 6, - "VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME": 5, - "VIEWPORT_RENDER_INFO_MATERIAL_CHANGES_IN_FRAME": 2, - "VIEWPORT_RENDER_INFO_MAX": 8, - "VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME": 0, - "VIEWPORT_RENDER_INFO_SHADER_CHANGES_IN_FRAME": 3, - "VIEWPORT_RENDER_INFO_SURFACE_CHANGES_IN_FRAME": 4, - "VIEWPORT_RENDER_INFO_VERTICES_IN_FRAME": 1, - "VIEWPORT_UPDATE_ALWAYS": 3, - "VIEWPORT_UPDATE_DISABLED": 0, - "VIEWPORT_UPDATE_ONCE": 1, - "VIEWPORT_UPDATE_WHEN_VISIBLE": 2, - "VIEWPORT_USAGE_2D": 0, - "VIEWPORT_USAGE_2D_NO_SAMPLING": 1, - "VIEWPORT_USAGE_3D": 2, - "VIEWPORT_USAGE_3D_NO_EFFECTS": 3 - }, - "properties": [ - { - "name": "render_loop_enabled", - "type": "bool", - "getter": "is_render_loop_enabled", - "setter": "set_render_loop_enabled", - "index": -1 - } - ], - "signals": [ - { - "name": "frame_post_draw", - "arguments": [ - ] - }, - { - "name": "frame_pre_draw", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "black_bars_set_images", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "left", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "top", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "right", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bottom", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "black_bars_set_margins", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "left", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "top", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "right", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bottom", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "camera_set_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layers", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_set_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_set_frustum", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_near", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_far", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_set_orthogonal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_near", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_far", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_set_perspective", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "fovy_degrees", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_near", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_far", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "camera_set_use_vertical_aspect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "canvas_item_add_circle", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pos", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_add_clip_ignore", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ignore", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_add_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "canvas_item_add_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": true, - "default_value": "((1, 0), (0, 1), (0, 0))" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "canvas_item_add_multimesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "canvas_item_add_nine_patch", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "source", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "topleft", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bottomright", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "x_axis_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "y_axis_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "draw_center", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "canvas_item_add_particles", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_add_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "canvas_item_add_polyline", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "canvas_item_add_primitive", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "canvas_item_add_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_add_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_add_texture_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tile", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "canvas_item_add_texture_rect_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "modulate", - "type": "Color", - "has_default_value": true, - "default_value": "1,1,1,1" - }, - { - "name": "transpose", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "clip_uv", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "canvas_item_add_triangle_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "indices", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "colors", - "type": "PoolColorArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "uvs", - "type": "PoolVector2Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "bones", - "type": "PoolIntArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "weights", - "type": "PoolRealArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "count", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "normal_map", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - }, - { - "name": "antialiased", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "antialiasing_use_indices", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "canvas_item_clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "canvas_item_set_clip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "clip", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_copy_to_backbuffer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_custom_rect", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_custom_rect", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": true, - "default_value": "(0, 0, 0, 0)" - } - ] - }, - { - "name": "canvas_item_set_distance_field_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_draw_behind_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_draw_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_light_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parent", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_self_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_sort_children_by_y", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_use_parent_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_z_as_relative_to_parent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_item_set_z_index", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "z_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_attach_to_canvas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "canvas_light_occluder_attach_to_canvas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_occluder_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "canvas_light_occluder_set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_occluder_set_light_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_occluder_set_polygon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_occluder_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_item_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_item_shadow_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_layer_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min_layer", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_shadow_buffer_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_shadow_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_shadow_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_shadow_filter", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "filter", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_shadow_gradient_length", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "length", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_shadow_smooth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "smooth", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_texture_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_light_set_z_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min_z", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_z", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_occluder_polygon_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "canvas_occluder_polygon_set_cull_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder_polygon", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_occluder_polygon_set_shape", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder_polygon", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "closed", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_occluder_polygon_set_shape_as_lines", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "occluder_polygon", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_set_item_mirroring", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "item", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mirroring", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "canvas_set_modulate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "directional_light_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "swap_buffers", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "frame_step", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "environment_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "environment_set_adjustment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "brightness", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "contrast", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "saturation", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ramp", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_ambient_light", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "energy", - "type": "float", - "has_default_value": true, - "default_value": "1" - }, - { - "name": "sky_contibution", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "environment_set_background", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bg", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_bg_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_bg_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_canvas_max_layer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_layer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_dof_blur_far", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transition", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "far_amount", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "quality", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_dof_blur_near", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transition", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "far_amount", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "quality", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_fog", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sun_color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sun_amount", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_fog_depth", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth_begin", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth_end", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth_curve", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transmit", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transmit_curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_fog_height", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min_height", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_height", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height_curve", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_glow", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "level_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "strength", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bloom_threshold", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hdr_bleed_threshold", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hdr_bleed_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hdr_luminance_cap", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bicubic_upscale", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "high_quality", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_sky", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sky", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_sky_custom_fov", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_sky_orientation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "orientation", - "type": "Basis", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_ssao", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius2", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "intensity2", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "light_affect", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ao_channel_affect", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "quality", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blur", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bilateral_sharpness", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_ssr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_steps", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "fade_in", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "fade_out", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth_tolerance", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "roughness", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "environment_set_tonemap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tone_mapper", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "exposure", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "white", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "auto_exposure", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min_luminance", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_luminance", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "auto_exp_speed", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "auto_exp_grey", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "finish", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "force_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "swap_buffers", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "frame_step", - "type": "float", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "force_sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "free_rid", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "rid", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_render_info", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "info", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_test_cube", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_test_texture", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_video_adapter_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_video_adapter_vendor", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_white_texture", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "gi_probe_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "gi_probe_get_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_bounds", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_cell_size", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_dynamic_data", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_dynamic_range", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_normal_bias", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_propagation", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_get_to_cell_xform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_is_compressed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_is_interior", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_bounds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bounds", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_cell_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "range", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_compress", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_dynamic_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "PoolIntArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_dynamic_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "range", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_normal_bias", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bias", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_propagation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "propagation", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "gi_probe_set_to_cell_xform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "xform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_changed", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_feature", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_os_feature", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "feature", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_begin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "primitive", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "immediate_clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "immediate_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_get_material", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_normal", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_tangent", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tangent", - "type": "Plane", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_uv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tex_uv", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_uv2", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "tex_uv", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_vertex", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "immediate_vertex_2d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "immediate", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "init", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "instance_attach_object_instance_id", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_attach_skeleton", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "instance_create2", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_geometry_set_as_instance_lod", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "as_lod_of_instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_geometry_set_cast_shadows_setting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shadow_casting_setting", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_geometry_set_draw_range", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "min_margin", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "max_margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_geometry_set_flag", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flag", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_geometry_set_material_overlay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_geometry_set_material_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_base", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "base", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_blend_shape_weight", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shape", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "weight", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_custom_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_exterior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_extra_visibility_margin", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "margin", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_layer_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_scenario", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_surface_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance_set_use_lightmap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lightmap_instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lightmap", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lightmap_slice", - "type": "int", - "has_default_value": true, - "default_value": "-1" - }, - { - "name": "lightmap_uv_rect", - "type": "Rect2", - "has_default_value": true, - "default_value": "(0, 0, 1, 1)" - } - ] - }, - { - "name": "instance_set_visible", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "visible", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instances_cull_aabb", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scenario", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "instances_cull_convex", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "convex", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scenario", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "instances_cull_ray", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scenario", - "type": "RID", - "has_default_value": true, - "default_value": "[RID]" - } - ] - }, - { - "name": "is_render_loop_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "light_directional_set_blend_splits", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_directional_set_shadow_depth_range_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "range_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_directional_set_shadow_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_omni_set_shadow_detail", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "detail", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_omni_set_shadow_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_bake_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bake_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mask", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_negative", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "param", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_projector", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_reverse_cull_face_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_shadow", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_shadow_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "light_set_use_gi", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "light", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "lightmap_capture_get_bounds", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_get_energy", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_get_octree", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_get_octree_cell_subdiv", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_get_octree_cell_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_is_interior", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_set_bounds", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bounds", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_set_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_set_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "interior", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_set_octree", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "octree", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_set_octree_cell_subdiv", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "subdiv", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "lightmap_capture_set_octree_cell_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "capture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "xform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_sphere_mesh", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "latitudes", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "longitudes", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "material_get_param", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parameter", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_get_param_default", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parameter", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_get_shader", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader_material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_set_line_width", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_set_next_pass", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "next_material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_set_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parameter", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_set_render_priority", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "priority", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "material_set_shader", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader_material", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shader", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_add_surface_from_arrays", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "primitive", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arrays", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blend_shapes", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "compress_format", - "type": "int", - "has_default_value": true, - "default_value": "2194432" - } - ] - }, - { - "name": "mesh_clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "mesh_get_blend_shape_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_get_blend_shape_mode", - "return_type": "enum.VisualServer::BlendShapeMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_get_custom_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_get_surface_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_remove_surface", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_set_blend_shape_count", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_set_blend_shape_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_set_custom_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_array", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_array_index_len", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_array_len", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_arrays", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_blend_shape_arrays", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_format", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_format_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex_len", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index_len", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "array_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_format_stride", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "vertex_len", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index_len", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "array_index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_index_array", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_material", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_primitive_type", - "return_type": "enum.VisualServer::PrimitiveType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_get_skeleton_aabb", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_set_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "mesh_surface_update_region", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "surface", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "data", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_allocate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "instances", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform_format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color_format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_data_format", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "multimesh_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "multimesh_get_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_get_instance_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_get_mesh", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_get_visible_instances", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_get_color", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_get_custom_data", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_get_transform_2d", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_set_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_set_custom_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "custom_data", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_instance_set_transform_2d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_set_as_bulk_array", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "array", - "type": "PoolRealArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_set_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "multimesh_set_visible_instances", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "multimesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "visible", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "omni_light_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "particles_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "particles_get_current_aabb", - "return_type": "AABB", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_get_emitting", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_is_inactive", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_request_process", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_restart", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_amount", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "amount", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_custom_aabb", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "aabb", - "type": "AABB", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_draw_order", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "order", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_draw_pass_mesh", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pass", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mesh", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_draw_passes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "count", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_emission_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_emitting", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "emitting", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_explosiveness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_fixed_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_fractional_delta", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_lifetime", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lifetime", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_one_shot", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "one_shot", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_pre_process_time", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "time", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_process_material", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "material", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_randomness_ratio", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "ratio", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_speed_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "particles_set_use_local_coordinates", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "particles", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "reflection_probe_set_as_interior", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_cull_mask", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layers", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_enable_box_projection", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_enable_shadows", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_extents", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_interior_ambient", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_interior_ambient_energy", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "energy", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_interior_ambient_probe_contribution", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "contrib", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_max_distance", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "distance", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_origin_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "reflection_probe_set_update_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "probe", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "request_frame_drawn_callback", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "where", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scenario_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "scenario_set_debug", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "debug_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scenario_set_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "environment", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scenario_set_fallback_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "environment", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "scenario_set_reflection_atlas_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "subdiv", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_boot_image", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scale", - "type": "bool", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_filter", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "set_debug_generate_wireframes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "generate", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_clear_color", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "color", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_render_loop_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shader_async_hidden_forbidden", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "forbidden", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_shader_time_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_occlusion_culling", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shader_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "shader_get_code", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shader_get_default_texture_param", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shader_get_param_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shader_set_code", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "code", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shader_set_default_texture_param", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shader", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skeleton_allocate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bones", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "is_2d_skeleton", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "skeleton_bone_get_transform", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bone", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skeleton_bone_get_transform_2d", - "return_type": "Transform2D", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bone", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skeleton_bone_set_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bone", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skeleton_bone_set_transform_2d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "bone", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skeleton_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "skeleton_get_bone_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skeleton", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "sky_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "sky_set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sky", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cube_map", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radiance_size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "spot_light_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "sync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "texture_allocate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth_3d", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "format", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "7" - } - ] - }, - { - "name": "texture_bind", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "number", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "texture_create_from_image", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "7" - } - ] - }, - { - "name": "texture_debug_usage", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "texture_get_data", - "return_type": "Image", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "cube_side", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "texture_get_depth", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_flags", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_format", - "return_type": "enum.Image::Format", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_texid", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_type", - "return_type": "enum.VisualServer::TextureType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_get_width", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "texture_set_data_partial", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "image", - "type": "Image", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_w", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "src_h", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_x", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_y", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dst_mip", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "texture_set_flags", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_set_path", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_set_shrink_all_x2_on_set_data", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "shrink", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "texture_set_size_override", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "texture", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "depth", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "textures_keep_original", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_attach_camera", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "camera", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_attach_canvas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_attach_to_screen", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "rect", - "type": "Rect2", - "has_default_value": true, - "default_value": "(0, 0, 0, 0)" - }, - { - "name": "screen", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "viewport_create", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "viewport_detach", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_get_render_info", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "info", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_get_texture", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_remove_canvas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_canvas_stacking", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "layer", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sublayer", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_canvas_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "canvas", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "offset", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_clear_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "clear_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_debug_draw", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "draw", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_disable_3d", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_disable_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "disabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_global_canvas_transform", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "transform", - "type": "Transform2D", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_hdr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_hide_canvas", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hidden", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_hide_scenario", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "hidden", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_msaa", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "msaa", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_parent_viewport", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "parent_viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_render_direct_to_screen", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_scenario", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "scenario", - "type": "RID", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_shadow_atlas_quadrant_subdivision", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "quadrant", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "subdivision", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_shadow_atlas_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "size", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_sharpen_intensity", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "intensity", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "width", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_transparent_background", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_update_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "update_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_usage", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "usage", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_use_arvr", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "use_arvr", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_use_debanding", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "debanding", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_use_fxaa", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "fxaa", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "viewport_set_vflip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "viewport", - "type": "RID", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ReflectionProbeUpdateMode", - "values": { - "REFLECTION_PROBE_UPDATE_ONCE": 0, - "REFLECTION_PROBE_UPDATE_ALWAYS": 1 - } - }, - { - "name": "LightDirectionalShadowDepthRangeMode", - "values": { - "LIGHT_DIRECTIONAL_SHADOW_DEPTH_RANGE_STABLE": 0, - "LIGHT_DIRECTIONAL_SHADOW_DEPTH_RANGE_OPTIMIZED": 1 - } - }, - { - "name": "BlendShapeMode", - "values": { - "BLEND_SHAPE_MODE_NORMALIZED": 0, - "BLEND_SHAPE_MODE_RELATIVE": 1 - } - }, - { - "name": "PrimitiveType", - "values": { - "PRIMITIVE_POINTS": 0, - "PRIMITIVE_LINES": 1, - "PRIMITIVE_LINE_STRIP": 2, - "PRIMITIVE_LINE_LOOP": 3, - "PRIMITIVE_TRIANGLES": 4, - "PRIMITIVE_TRIANGLE_STRIP": 5, - "PRIMITIVE_TRIANGLE_FAN": 6, - "PRIMITIVE_MAX": 7 - } - }, - { - "name": "TextureType", - "values": { - "TEXTURE_TYPE_2D": 0, - "TEXTURE_TYPE_CUBEMAP": 2, - "TEXTURE_TYPE_2D_ARRAY": 3, - "TEXTURE_TYPE_3D": 4 - } - }, - { - "name": "EnvironmentSSAOQuality", - "values": { - "ENV_SSAO_QUALITY_LOW": 0, - "ENV_SSAO_QUALITY_MEDIUM": 1, - "ENV_SSAO_QUALITY_HIGH": 2 - } - }, - { - "name": "EnvironmentDOFBlurQuality", - "values": { - "ENV_DOF_BLUR_QUALITY_LOW": 0, - "ENV_DOF_BLUR_QUALITY_MEDIUM": 1, - "ENV_DOF_BLUR_QUALITY_HIGH": 2 - } - }, - { - "name": "RenderInfo", - "values": { - "INFO_OBJECTS_IN_FRAME": 0, - "INFO_VERTICES_IN_FRAME": 1, - "INFO_MATERIAL_CHANGES_IN_FRAME": 2, - "INFO_SHADER_CHANGES_IN_FRAME": 3, - "INFO_SURFACE_CHANGES_IN_FRAME": 4, - "INFO_DRAW_CALLS_IN_FRAME": 5, - "INFO_2D_ITEMS_IN_FRAME": 6, - "INFO_2D_DRAW_CALLS_IN_FRAME": 7, - "INFO_USAGE_VIDEO_MEM_TOTAL": 8, - "INFO_VIDEO_MEM_USED": 9, - "INFO_TEXTURE_MEM_USED": 10, - "INFO_VERTEX_MEM_USED": 11 - } - }, - { - "name": "NinePatchAxisMode", - "values": { - "NINE_PATCH_STRETCH": 0, - "NINE_PATCH_TILE": 1, - "NINE_PATCH_TILE_FIT": 2 - } - }, - { - "name": "ViewportRenderInfo", - "values": { - "VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME": 0, - "VIEWPORT_RENDER_INFO_VERTICES_IN_FRAME": 1, - "VIEWPORT_RENDER_INFO_MATERIAL_CHANGES_IN_FRAME": 2, - "VIEWPORT_RENDER_INFO_SHADER_CHANGES_IN_FRAME": 3, - "VIEWPORT_RENDER_INFO_SURFACE_CHANGES_IN_FRAME": 4, - "VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME": 5, - "VIEWPORT_RENDER_INFO_2D_ITEMS_IN_FRAME": 6, - "VIEWPORT_RENDER_INFO_2D_DRAW_CALLS_IN_FRAME": 7, - "VIEWPORT_RENDER_INFO_MAX": 8 - } - }, - { - "name": "ViewportClearMode", - "values": { - "VIEWPORT_CLEAR_ALWAYS": 0, - "VIEWPORT_CLEAR_NEVER": 1, - "VIEWPORT_CLEAR_ONLY_NEXT_FRAME": 2 - } - }, - { - "name": "LightOmniShadowDetail", - "values": { - "LIGHT_OMNI_SHADOW_DETAIL_VERTICAL": 0, - "LIGHT_OMNI_SHADOW_DETAIL_HORIZONTAL": 1 - } - }, - { - "name": "ShaderMode", - "values": { - "SHADER_SPATIAL": 0, - "SHADER_CANVAS_ITEM": 1, - "SHADER_PARTICLES": 2, - "SHADER_MAX": 3 - } - }, - { - "name": "MultimeshTransformFormat", - "values": { - "MULTIMESH_TRANSFORM_2D": 0, - "MULTIMESH_TRANSFORM_3D": 1 - } - }, - { - "name": "ShadowCastingSetting", - "values": { - "SHADOW_CASTING_SETTING_OFF": 0, - "SHADOW_CASTING_SETTING_ON": 1, - "SHADOW_CASTING_SETTING_DOUBLE_SIDED": 2, - "SHADOW_CASTING_SETTING_SHADOWS_ONLY": 3 - } - }, - { - "name": "ViewportDebugDraw", - "values": { - "VIEWPORT_DEBUG_DRAW_DISABLED": 0, - "VIEWPORT_DEBUG_DRAW_UNSHADED": 1, - "VIEWPORT_DEBUG_DRAW_OVERDRAW": 2, - "VIEWPORT_DEBUG_DRAW_WIREFRAME": 3 - } - }, - { - "name": "ViewportUsage", - "values": { - "VIEWPORT_USAGE_2D": 0, - "VIEWPORT_USAGE_2D_NO_SAMPLING": 1, - "VIEWPORT_USAGE_3D": 2, - "VIEWPORT_USAGE_3D_NO_EFFECTS": 3 - } - }, - { - "name": "EnvironmentBG", - "values": { - "ENV_BG_CLEAR_COLOR": 0, - "ENV_BG_COLOR": 1, - "ENV_BG_SKY": 2, - "ENV_BG_COLOR_SKY": 3, - "ENV_BG_CANVAS": 4, - "ENV_BG_KEEP": 5, - "ENV_BG_MAX": 7 - } - }, - { - "name": "MultimeshCustomDataFormat", - "values": { - "MULTIMESH_CUSTOM_DATA_NONE": 0, - "MULTIMESH_CUSTOM_DATA_8BIT": 1, - "MULTIMESH_CUSTOM_DATA_FLOAT": 2 - } - }, - { - "name": "LightOmniShadowMode", - "values": { - "LIGHT_OMNI_SHADOW_DUAL_PARABOLOID": 0, - "LIGHT_OMNI_SHADOW_CUBE": 1 - } - }, - { - "name": "TextureFlags", - "values": { - "TEXTURE_FLAG_MIPMAPS": 1, - "TEXTURE_FLAG_REPEAT": 2, - "TEXTURE_FLAG_FILTER": 4, - "TEXTURE_FLAGS_DEFAULT": 7, - "TEXTURE_FLAG_ANISOTROPIC_FILTER": 8, - "TEXTURE_FLAG_CONVERT_TO_LINEAR": 16, - "TEXTURE_FLAG_MIRRORED_REPEAT": 32, - "TEXTURE_FLAG_USED_FOR_STREAMING": 2048 - } - }, - { - "name": "Features", - "values": { - "FEATURE_SHADERS": 0, - "FEATURE_MULTITHREADED": 1 - } - }, - { - "name": "InstanceType", - "values": { - "INSTANCE_NONE": 0, - "INSTANCE_MESH": 1, - "INSTANCE_MULTIMESH": 2, - "INSTANCE_IMMEDIATE": 3, - "INSTANCE_PARTICLES": 4, - "INSTANCE_LIGHT": 5, - "INSTANCE_REFLECTION_PROBE": 6, - "INSTANCE_GI_PROBE": 7, - "INSTANCE_LIGHTMAP_CAPTURE": 8, - "INSTANCE_MAX": 9, - "INSTANCE_GEOMETRY_MASK": 30 - } - }, - { - "name": "EnvironmentSSAOBlur", - "values": { - "ENV_SSAO_BLUR_DISABLED": 0, - "ENV_SSAO_BLUR_1x1": 1, - "ENV_SSAO_BLUR_2x2": 2, - "ENV_SSAO_BLUR_3x3": 3 - } - }, - { - "name": "EnvironmentToneMapper", - "values": { - "ENV_TONE_MAPPER_LINEAR": 0, - "ENV_TONE_MAPPER_REINHARD": 1, - "ENV_TONE_MAPPER_FILMIC": 2, - "ENV_TONE_MAPPER_ACES": 3, - "ENV_TONE_MAPPER_ACES_FITTED": 4 - } - }, - { - "name": "EnvironmentGlowBlendMode", - "values": { - "GLOW_BLEND_MODE_ADDITIVE": 0, - "GLOW_BLEND_MODE_SCREEN": 1, - "GLOW_BLEND_MODE_SOFTLIGHT": 2, - "GLOW_BLEND_MODE_REPLACE": 3 - } - }, - { - "name": "MultimeshColorFormat", - "values": { - "MULTIMESH_COLOR_NONE": 0, - "MULTIMESH_COLOR_8BIT": 1, - "MULTIMESH_COLOR_FLOAT": 2 - } - }, - { - "name": "CanvasLightShadowFilter", - "values": { - "CANVAS_LIGHT_FILTER_NONE": 0, - "CANVAS_LIGHT_FILTER_PCF3": 1, - "CANVAS_LIGHT_FILTER_PCF5": 2, - "CANVAS_LIGHT_FILTER_PCF7": 3, - "CANVAS_LIGHT_FILTER_PCF9": 4, - "CANVAS_LIGHT_FILTER_PCF13": 5 - } - }, - { - "name": "ScenarioDebugMode", - "values": { - "SCENARIO_DEBUG_DISABLED": 0, - "SCENARIO_DEBUG_WIREFRAME": 1, - "SCENARIO_DEBUG_OVERDRAW": 2, - "SCENARIO_DEBUG_SHADELESS": 3 - } - }, - { - "name": "ViewportUpdateMode", - "values": { - "VIEWPORT_UPDATE_DISABLED": 0, - "VIEWPORT_UPDATE_ONCE": 1, - "VIEWPORT_UPDATE_WHEN_VISIBLE": 2, - "VIEWPORT_UPDATE_ALWAYS": 3 - } - }, - { - "name": "LightBakeMode", - "values": { - "LIGHT_BAKE_DISABLED": 0, - "LIGHT_BAKE_INDIRECT": 1, - "LIGHT_BAKE_ALL": 2 - } - }, - { - "name": "ArrayFormat", - "values": { - "ARRAY_FORMAT_VERTEX": 1, - "ARRAY_FORMAT_NORMAL": 2, - "ARRAY_FORMAT_TANGENT": 4, - "ARRAY_FORMAT_COLOR": 8, - "ARRAY_FORMAT_TEX_UV": 16, - "ARRAY_FORMAT_TEX_UV2": 32, - "ARRAY_FORMAT_BONES": 64, - "ARRAY_FORMAT_WEIGHTS": 128, - "ARRAY_FORMAT_INDEX": 256, - "ARRAY_COMPRESS_VERTEX": 512, - "ARRAY_COMPRESS_NORMAL": 1024, - "ARRAY_COMPRESS_TANGENT": 2048, - "ARRAY_COMPRESS_COLOR": 4096, - "ARRAY_COMPRESS_TEX_UV": 8192, - "ARRAY_COMPRESS_TEX_UV2": 16384, - "ARRAY_COMPRESS_BONES": 32768, - "ARRAY_COMPRESS_WEIGHTS": 65536, - "ARRAY_COMPRESS_INDEX": 131072, - "ARRAY_FLAG_USE_2D_VERTICES": 262144, - "ARRAY_FLAG_USE_16_BIT_BONES": 524288, - "ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION": 2097152, - "ARRAY_COMPRESS_DEFAULT": 2194432 - } - }, - { - "name": "ParticlesDrawOrder", - "values": { - "PARTICLES_DRAW_ORDER_INDEX": 0, - "PARTICLES_DRAW_ORDER_LIFETIME": 1, - "PARTICLES_DRAW_ORDER_VIEW_DEPTH": 2 - } - }, - { - "name": "CanvasLightMode", - "values": { - "CANVAS_LIGHT_MODE_ADD": 0, - "CANVAS_LIGHT_MODE_SUB": 1, - "CANVAS_LIGHT_MODE_MIX": 2, - "CANVAS_LIGHT_MODE_MASK": 3 - } - }, - { - "name": "LightDirectionalShadowMode", - "values": { - "LIGHT_DIRECTIONAL_SHADOW_ORTHOGONAL": 0, - "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_2_SPLITS": 1, - "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_4_SPLITS": 2 - } - }, - { - "name": "LightParam", - "values": { - "LIGHT_PARAM_ENERGY": 0, - "LIGHT_PARAM_INDIRECT_ENERGY": 1, - "LIGHT_PARAM_SIZE": 2, - "LIGHT_PARAM_SPECULAR": 3, - "LIGHT_PARAM_RANGE": 4, - "LIGHT_PARAM_ATTENUATION": 5, - "LIGHT_PARAM_SPOT_ANGLE": 6, - "LIGHT_PARAM_SPOT_ATTENUATION": 7, - "LIGHT_PARAM_CONTACT_SHADOW_SIZE": 8, - "LIGHT_PARAM_SHADOW_MAX_DISTANCE": 9, - "LIGHT_PARAM_SHADOW_SPLIT_1_OFFSET": 10, - "LIGHT_PARAM_SHADOW_SPLIT_2_OFFSET": 11, - "LIGHT_PARAM_SHADOW_SPLIT_3_OFFSET": 12, - "LIGHT_PARAM_SHADOW_NORMAL_BIAS": 13, - "LIGHT_PARAM_SHADOW_BIAS": 14, - "LIGHT_PARAM_SHADOW_BIAS_SPLIT_SCALE": 15, - "LIGHT_PARAM_MAX": 16 - } - }, - { - "name": "ArrayType", - "values": { - "ARRAY_VERTEX": 0, - "ARRAY_NORMAL": 1, - "ARRAY_TANGENT": 2, - "ARRAY_COLOR": 3, - "ARRAY_TEX_UV": 4, - "ARRAY_TEX_UV2": 5, - "ARRAY_BONES": 6, - "ARRAY_WEIGHTS": 7, - "ARRAY_INDEX": 8, - "ARRAY_MAX": 9 - } - }, - { - "name": "CanvasOccluderPolygonCullMode", - "values": { - "CANVAS_OCCLUDER_POLYGON_CULL_DISABLED": 0, - "CANVAS_OCCLUDER_POLYGON_CULL_CLOCKWISE": 1, - "CANVAS_OCCLUDER_POLYGON_CULL_COUNTER_CLOCKWISE": 2 - } - }, - { - "name": "InstanceFlags", - "values": { - "INSTANCE_FLAG_USE_BAKED_LIGHT": 0, - "INSTANCE_FLAG_DRAW_NEXT_FRAME_IF_VISIBLE": 1, - "INSTANCE_FLAG_MAX": 2 - } - }, - { - "name": "ViewportMSAA", - "values": { - "VIEWPORT_MSAA_DISABLED": 0, - "VIEWPORT_MSAA_2X": 1, - "VIEWPORT_MSAA_4X": 2, - "VIEWPORT_MSAA_8X": 3, - "VIEWPORT_MSAA_16X": 4, - "VIEWPORT_MSAA_EXT_2X": 5, - "VIEWPORT_MSAA_EXT_4X": 6 - } - }, - { - "name": "LightType", - "values": { - "LIGHT_DIRECTIONAL": 0, - "LIGHT_OMNI": 1, - "LIGHT_SPOT": 2 - } - }, - { - "name": "CubeMapSide", - "values": { - "CUBEMAP_LEFT": 0, - "CUBEMAP_RIGHT": 1, - "CUBEMAP_BOTTOM": 2, - "CUBEMAP_TOP": 3, - "CUBEMAP_FRONT": 4, - "CUBEMAP_BACK": 5 - } - } - ] - }, - { - "name": "VisualShader", - "base_class": "Shader", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "NODE_ID_INVALID": -1, - "NODE_ID_OUTPUT": 0, - "TYPE_FRAGMENT": 1, - "TYPE_LIGHT": 2, - "TYPE_MAX": 3, - "TYPE_VERTEX": 0 - }, - "properties": [ - { - "name": "graph_offset", - "type": "Vector2", - "getter": "get_graph_offset", - "setter": "set_graph_offset", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_input_type_changed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arg1", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_queue_update", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_update_shader", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "add_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "node", - "type": "VisualShaderNode", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "can_connect_nodes", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "connect_nodes", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "connect_nodes_forced", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "disconnect_nodes", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_graph_offset", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node", - "return_type": "VisualShaderNode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_connections", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_list", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_valid_node_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_node_connection", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_node", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_graph_offset", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "offset", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_node_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Type", - "values": { - "TYPE_VERTEX": 0, - "TYPE_FRAGMENT": 1, - "TYPE_LIGHT": 2, - "TYPE_MAX": 3 - } - } - ] - }, - { - "name": "VisualShaderNode", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "PORT_TYPE_BOOLEAN": 2, - "PORT_TYPE_MAX": 5, - "PORT_TYPE_SAMPLER": 4, - "PORT_TYPE_SCALAR": 0, - "PORT_TYPE_TRANSFORM": 3, - "PORT_TYPE_VECTOR": 1 - }, - "properties": [ - { - "name": "default_input_values", - "type": "Array", - "getter": "get_default_input_values", - "setter": "set_default_input_values", - "index": -1 - }, - { - "name": "output_port_for_preview", - "type": "int", - "getter": "get_output_port_for_preview", - "setter": "set_output_port_for_preview", - "index": -1 - } - ], - "signals": [ - { - "name": "editor_refresh_request", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_default_input_values", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_input_port_default_value", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_output_port_for_preview", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_input_values", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "values", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_port_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_output_port_for_preview", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "PortType", - "values": { - "PORT_TYPE_SCALAR": 0, - "PORT_TYPE_VECTOR": 1, - "PORT_TYPE_BOOLEAN": 2, - "PORT_TYPE_TRANSFORM": 3, - "PORT_TYPE_SAMPLER": 4, - "PORT_TYPE_MAX": 5 - } - } - ] - }, - { - "name": "VisualShaderNodeBooleanConstant", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "bool", - "getter": "get_constant", - "setter": "set_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constant", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeBooleanUniform", - "base_class": "VisualShaderNodeUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "default_value", - "type": "bool", - "getter": "get_default_value", - "setter": "set_default_value", - "index": -1 - }, - { - "name": "default_value_enabled", - "type": "bool", - "getter": "is_default_value_enabled", - "setter": "set_default_value_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_default_value", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_default_value_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_value_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeColorConstant", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "Color", - "getter": "get_constant", - "setter": "set_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constant", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeColorFunc", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_GRAYSCALE": 0, - "FUNC_SEPIA": 1 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeColorFunc::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_GRAYSCALE": 0, - "FUNC_SEPIA": 1 - } - } - ] - }, - { - "name": "VisualShaderNodeColorOp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "OP_BURN": 6, - "OP_DARKEN": 2, - "OP_DIFFERENCE": 1, - "OP_DODGE": 5, - "OP_HARD_LIGHT": 8, - "OP_LIGHTEN": 3, - "OP_OVERLAY": 4, - "OP_SCREEN": 0, - "OP_SOFT_LIGHT": 7 - }, - "properties": [ - { - "name": "operator", - "type": "int", - "getter": "get_operator", - "setter": "set_operator", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_operator", - "return_type": "enum.VisualShaderNodeColorOp::Operator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Operator", - "values": { - "OP_SCREEN": 0, - "OP_DIFFERENCE": 1, - "OP_DARKEN": 2, - "OP_LIGHTEN": 3, - "OP_OVERLAY": 4, - "OP_DODGE": 5, - "OP_BURN": 6, - "OP_SOFT_LIGHT": 7, - "OP_HARD_LIGHT": 8 - } - } - ] - }, - { - "name": "VisualShaderNodeColorUniform", - "base_class": "VisualShaderNodeUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "default_value", - "type": "Color", - "getter": "get_default_value", - "setter": "set_default_value", - "index": -1 - }, - { - "name": "default_value_enabled", - "type": "bool", - "getter": "is_default_value_enabled", - "setter": "set_default_value_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_default_value", - "return_type": "Color", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_default_value_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Color", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_value_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeCompare", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "COND_ALL": 0, - "COND_ANY": 1, - "CTYPE_BOOLEAN": 2, - "CTYPE_SCALAR": 0, - "CTYPE_TRANSFORM": 3, - "CTYPE_VECTOR": 1, - "FUNC_EQUAL": 0, - "FUNC_GREATER_THAN": 2, - "FUNC_GREATER_THAN_EQUAL": 3, - "FUNC_LESS_THAN": 4, - "FUNC_LESS_THAN_EQUAL": 5, - "FUNC_NOT_EQUAL": 1 - }, - "properties": [ - { - "name": "condition", - "type": "int", - "getter": "get_condition", - "setter": "set_condition", - "index": -1 - }, - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - }, - { - "name": "type", - "type": "int", - "getter": "get_comparison_type", - "setter": "set_comparison_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_comparison_type", - "return_type": "enum.VisualShaderNodeCompare::ComparisonType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_condition", - "return_type": "enum.VisualShaderNodeCompare::Condition", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeCompare::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_comparison_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_condition", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "condition", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ComparisonType", - "values": { - "CTYPE_SCALAR": 0, - "CTYPE_VECTOR": 1, - "CTYPE_BOOLEAN": 2, - "CTYPE_TRANSFORM": 3 - } - }, - { - "name": "Function", - "values": { - "FUNC_EQUAL": 0, - "FUNC_NOT_EQUAL": 1, - "FUNC_GREATER_THAN": 2, - "FUNC_GREATER_THAN_EQUAL": 3, - "FUNC_LESS_THAN": 4, - "FUNC_LESS_THAN_EQUAL": 5 - } - }, - { - "name": "Condition", - "values": { - "COND_ALL": 0, - "COND_ANY": 1 - } - } - ] - }, - { - "name": "VisualShaderNodeCubeMap", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "SOURCE_PORT": 1, - "SOURCE_TEXTURE": 0, - "TYPE_COLOR": 1, - "TYPE_DATA": 0, - "TYPE_NORMALMAP": 2 - }, - "properties": [ - { - "name": "cube_map", - "type": "CubeMap", - "getter": "get_cube_map", - "setter": "set_cube_map", - "index": -1 - }, - { - "name": "source", - "type": "int", - "getter": "get_source", - "setter": "set_source", - "index": -1 - }, - { - "name": "texture_type", - "type": "int", - "getter": "get_texture_type", - "setter": "set_texture_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_cube_map", - "return_type": "CubeMap", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_source", - "return_type": "enum.VisualShaderNodeCubeMap::Source", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_type", - "return_type": "enum.VisualShaderNodeCubeMap::TextureType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_cube_map", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "CubeMap", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_source", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TextureType", - "values": { - "TYPE_DATA": 0, - "TYPE_COLOR": 1, - "TYPE_NORMALMAP": 2 - } - }, - { - "name": "Source", - "values": { - "SOURCE_TEXTURE": 0, - "SOURCE_PORT": 1 - } - } - ] - }, - { - "name": "VisualShaderNodeCubeMapUniform", - "base_class": "VisualShaderNodeTextureUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeCustom", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "initialized", - "type": "bool", - "getter": "_is_initialized", - "setter": "_set_initialized", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_get_category", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_code", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input_vars", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "output_vars", - "type": "Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_description", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_global_code", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_input_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_input_port_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_input_port_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_output_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_output_port_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_output_port_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_get_return_icon_type", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_get_subcategory", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_is_initialized", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_set_initialized", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "_set_input_port_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeDeterminant", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeDotProduct", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeExpression", - "base_class": "VisualShaderNodeGroupBase", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "expression", - "type": "String", - "getter": "get_expression", - "setter": "set_expression", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_expression", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_expression", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "expression", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeFaceForward", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeFresnel", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeGlobalExpression", - "base_class": "VisualShaderNodeExpression", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeGroupBase", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "size", - "type": "Vector2", - "getter": "get_size", - "setter": "set_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "add_input_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "add_output_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clear_input_ports", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "clear_output_ports", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_free_input_port_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_free_output_port_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_input_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inputs", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_output_port_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_outputs", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_input_port", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_output_port", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_valid_port_name", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_input_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_output_port", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_port_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_input_port_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_inputs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "inputs", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_output_port_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_output_port_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_outputs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "outputs", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeIf", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeInput", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "input_name", - "type": "String", - "getter": "get_input_name", - "setter": "set_input_name", - "index": -1 - } - ], - "signals": [ - { - "name": "input_type_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_input_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_input_real_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_input_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeIs", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_IS_INF": 0, - "FUNC_IS_NAN": 1 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeIs::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_IS_INF": 0, - "FUNC_IS_NAN": 1 - } - } - ] - }, - { - "name": "VisualShaderNodeOuterProduct", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeOutput", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeScalarClamp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeScalarConstant", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "float", - "getter": "get_constant", - "setter": "set_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constant", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeScalarDerivativeFunc", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_SUM": 0, - "FUNC_X": 1, - "FUNC_Y": 2 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeScalarDerivativeFunc::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_SUM": 0, - "FUNC_X": 1, - "FUNC_Y": 2 - } - } - ] - }, - { - "name": "VisualShaderNodeScalarFunc", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_ABS": 12, - "FUNC_ACOS": 4, - "FUNC_ACOSH": 20, - "FUNC_ASIN": 3, - "FUNC_ASINH": 21, - "FUNC_ATAN": 5, - "FUNC_ATANH": 22, - "FUNC_CEIL": 16, - "FUNC_COS": 1, - "FUNC_COSH": 7, - "FUNC_DEGREES": 23, - "FUNC_EXP": 10, - "FUNC_EXP2": 24, - "FUNC_FLOOR": 14, - "FUNC_FRAC": 17, - "FUNC_INVERSE_SQRT": 25, - "FUNC_LOG": 9, - "FUNC_LOG2": 26, - "FUNC_NEGATE": 19, - "FUNC_ONEMINUS": 31, - "FUNC_RADIANS": 27, - "FUNC_RECIPROCAL": 28, - "FUNC_ROUND": 15, - "FUNC_ROUNDEVEN": 29, - "FUNC_SATURATE": 18, - "FUNC_SIGN": 13, - "FUNC_SIN": 0, - "FUNC_SINH": 6, - "FUNC_SQRT": 11, - "FUNC_TAN": 2, - "FUNC_TANH": 8, - "FUNC_TRUNC": 30 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeScalarFunc::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_SIN": 0, - "FUNC_COS": 1, - "FUNC_TAN": 2, - "FUNC_ASIN": 3, - "FUNC_ACOS": 4, - "FUNC_ATAN": 5, - "FUNC_SINH": 6, - "FUNC_COSH": 7, - "FUNC_TANH": 8, - "FUNC_LOG": 9, - "FUNC_EXP": 10, - "FUNC_SQRT": 11, - "FUNC_ABS": 12, - "FUNC_SIGN": 13, - "FUNC_FLOOR": 14, - "FUNC_ROUND": 15, - "FUNC_CEIL": 16, - "FUNC_FRAC": 17, - "FUNC_SATURATE": 18, - "FUNC_NEGATE": 19, - "FUNC_ACOSH": 20, - "FUNC_ASINH": 21, - "FUNC_ATANH": 22, - "FUNC_DEGREES": 23, - "FUNC_EXP2": 24, - "FUNC_INVERSE_SQRT": 25, - "FUNC_LOG2": 26, - "FUNC_RADIANS": 27, - "FUNC_RECIPROCAL": 28, - "FUNC_ROUNDEVEN": 29, - "FUNC_TRUNC": 30, - "FUNC_ONEMINUS": 31 - } - } - ] - }, - { - "name": "VisualShaderNodeScalarInterp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeScalarOp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "OP_ADD": 0, - "OP_ATAN2": 8, - "OP_DIV": 3, - "OP_MAX": 6, - "OP_MIN": 7, - "OP_MOD": 4, - "OP_MUL": 2, - "OP_POW": 5, - "OP_STEP": 9, - "OP_SUB": 1 - }, - "properties": [ - { - "name": "operator", - "type": "int", - "getter": "get_operator", - "setter": "set_operator", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_operator", - "return_type": "enum.VisualShaderNodeScalarOp::Operator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Operator", - "values": { - "OP_ADD": 0, - "OP_SUB": 1, - "OP_MUL": 2, - "OP_DIV": 3, - "OP_MOD": 4, - "OP_POW": 5, - "OP_MAX": 6, - "OP_MIN": 7, - "OP_ATAN2": 8, - "OP_STEP": 9 - } - } - ] - }, - { - "name": "VisualShaderNodeScalarSmoothStep", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeScalarSwitch", - "base_class": "VisualShaderNodeSwitch", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeScalarUniform", - "base_class": "VisualShaderNodeUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "HINT_MAX": 3, - "HINT_NONE": 0, - "HINT_RANGE": 1, - "HINT_RANGE_STEP": 2 - }, - "properties": [ - { - "name": "default_value", - "type": "float", - "getter": "get_default_value", - "setter": "set_default_value", - "index": -1 - }, - { - "name": "default_value_enabled", - "type": "bool", - "getter": "is_default_value_enabled", - "setter": "set_default_value_enabled", - "index": -1 - }, - { - "name": "hint", - "type": "int", - "getter": "get_hint", - "setter": "set_hint", - "index": -1 - }, - { - "name": "max", - "type": "float", - "getter": "get_max", - "setter": "set_max", - "index": -1 - }, - { - "name": "min", - "type": "float", - "getter": "get_min", - "setter": "set_min", - "index": -1 - }, - { - "name": "step", - "type": "float", - "getter": "get_step", - "setter": "set_step", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_default_value", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_hint", - "return_type": "enum.VisualShaderNodeScalarUniform::Hint", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_step", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_default_value_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_value_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_hint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "hint", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_step", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Hint", - "values": { - "HINT_NONE": 0, - "HINT_RANGE": 1, - "HINT_RANGE_STEP": 2, - "HINT_MAX": 3 - } - } - ] - }, - { - "name": "VisualShaderNodeSwitch", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeTexture", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "SOURCE_2D_NORMAL": 3, - "SOURCE_2D_TEXTURE": 2, - "SOURCE_DEPTH": 4, - "SOURCE_PORT": 5, - "SOURCE_SCREEN": 1, - "SOURCE_TEXTURE": 0, - "TYPE_COLOR": 1, - "TYPE_DATA": 0, - "TYPE_NORMALMAP": 2 - }, - "properties": [ - { - "name": "source", - "type": "int", - "getter": "get_source", - "setter": "set_source", - "index": -1 - }, - { - "name": "texture", - "type": "Texture", - "getter": "get_texture", - "setter": "set_texture", - "index": -1 - }, - { - "name": "texture_type", - "type": "int", - "getter": "get_texture_type", - "setter": "set_texture_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_source", - "return_type": "enum.VisualShaderNodeTexture::Source", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture", - "return_type": "Texture", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_type", - "return_type": "enum.VisualShaderNodeTexture::TextureType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_source", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Texture", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TextureType", - "values": { - "TYPE_DATA": 0, - "TYPE_COLOR": 1, - "TYPE_NORMALMAP": 2 - } - }, - { - "name": "Source", - "values": { - "SOURCE_TEXTURE": 0, - "SOURCE_SCREEN": 1, - "SOURCE_2D_TEXTURE": 2, - "SOURCE_2D_NORMAL": 3, - "SOURCE_DEPTH": 4, - "SOURCE_PORT": 5 - } - } - ] - }, - { - "name": "VisualShaderNodeTextureUniform", - "base_class": "VisualShaderNodeUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "COLOR_DEFAULT_BLACK": 1, - "COLOR_DEFAULT_WHITE": 0, - "TYPE_ANISO": 3, - "TYPE_COLOR": 1, - "TYPE_DATA": 0, - "TYPE_NORMALMAP": 2 - }, - "properties": [ - { - "name": "color_default", - "type": "int", - "getter": "get_color_default", - "setter": "set_color_default", - "index": -1 - }, - { - "name": "texture_type", - "type": "int", - "getter": "get_texture_type", - "setter": "set_texture_type", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_color_default", - "return_type": "enum.VisualShaderNodeTextureUniform::ColorDefault", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_texture_type", - "return_type": "enum.VisualShaderNodeTextureUniform::TextureType", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_color_default", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_texture_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "TextureType", - "values": { - "TYPE_DATA": 0, - "TYPE_COLOR": 1, - "TYPE_NORMALMAP": 2, - "TYPE_ANISO": 3 - } - }, - { - "name": "ColorDefault", - "values": { - "COLOR_DEFAULT_WHITE": 0, - "COLOR_DEFAULT_BLACK": 1 - } - } - ] - }, - { - "name": "VisualShaderNodeTextureUniformTriplanar", - "base_class": "VisualShaderNodeTextureUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeTransformCompose", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeTransformConstant", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "Transform", - "getter": "get_constant", - "setter": "set_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constant", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeTransformDecompose", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeTransformFunc", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_INVERSE": 0, - "FUNC_TRANSPOSE": 1 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeTransformFunc::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_INVERSE": 0, - "FUNC_TRANSPOSE": 1 - } - } - ] - }, - { - "name": "VisualShaderNodeTransformMult", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "OP_AxB": 0, - "OP_AxB_COMP": 2, - "OP_BxA": 1, - "OP_BxA_COMP": 3 - }, - "properties": [ - { - "name": "operator", - "type": "int", - "getter": "get_operator", - "setter": "set_operator", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_operator", - "return_type": "enum.VisualShaderNodeTransformMult::Operator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Operator", - "values": { - "OP_AxB": 0, - "OP_BxA": 1, - "OP_AxB_COMP": 2, - "OP_BxA_COMP": 3 - } - } - ] - }, - { - "name": "VisualShaderNodeTransformUniform", - "base_class": "VisualShaderNodeUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "default_value", - "type": "Transform", - "getter": "get_default_value", - "setter": "set_default_value", - "index": -1 - }, - { - "name": "default_value_enabled", - "type": "bool", - "getter": "is_default_value_enabled", - "setter": "set_default_value_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_default_value", - "return_type": "Transform", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_default_value_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Transform", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_value_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeTransformVecMult", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "OP_3x3_AxB": 2, - "OP_3x3_BxA": 3, - "OP_AxB": 0, - "OP_BxA": 1 - }, - "properties": [ - { - "name": "operator", - "type": "int", - "getter": "get_operator", - "setter": "set_operator", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_operator", - "return_type": "enum.VisualShaderNodeTransformVecMult::Operator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Operator", - "values": { - "OP_AxB": 0, - "OP_BxA": 1, - "OP_3x3_AxB": 2, - "OP_3x3_BxA": 3 - } - } - ] - }, - { - "name": "VisualShaderNodeUniform", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "uniform_name", - "type": "String", - "getter": "get_uniform_name", - "setter": "set_uniform_name", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_uniform_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_uniform_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeUniformRef", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "uniform_name", - "type": "String", - "getter": "get_uniform_name", - "setter": "set_uniform_name", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_uniform_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_uniform_name", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVec3Constant", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "constant", - "type": "Vector3", - "getter": "get_constant", - "setter": "set_constant", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_constant", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_constant", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVec3Uniform", - "base_class": "VisualShaderNodeUniform", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "default_value", - "type": "Vector3", - "getter": "get_default_value", - "setter": "set_default_value", - "index": -1 - }, - { - "name": "default_value_enabled", - "type": "bool", - "getter": "is_default_value_enabled", - "setter": "set_default_value_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_default_value", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_default_value_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_default_value", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_default_value_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorClamp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorCompose", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorDecompose", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorDerivativeFunc", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_SUM": 0, - "FUNC_X": 1, - "FUNC_Y": 2 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeVectorDerivativeFunc::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_SUM": 0, - "FUNC_X": 1, - "FUNC_Y": 2 - } - } - ] - }, - { - "name": "VisualShaderNodeVectorDistance", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorFunc", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "FUNC_ABS": 6, - "FUNC_ACOS": 7, - "FUNC_ACOSH": 8, - "FUNC_ASIN": 9, - "FUNC_ASINH": 10, - "FUNC_ATAN": 11, - "FUNC_ATANH": 12, - "FUNC_CEIL": 13, - "FUNC_COS": 14, - "FUNC_COSH": 15, - "FUNC_DEGREES": 16, - "FUNC_EXP": 17, - "FUNC_EXP2": 18, - "FUNC_FLOOR": 19, - "FUNC_FRAC": 20, - "FUNC_HSV2RGB": 5, - "FUNC_INVERSE_SQRT": 21, - "FUNC_LOG": 22, - "FUNC_LOG2": 23, - "FUNC_NEGATE": 2, - "FUNC_NORMALIZE": 0, - "FUNC_ONEMINUS": 34, - "FUNC_RADIANS": 24, - "FUNC_RECIPROCAL": 3, - "FUNC_RGB2HSV": 4, - "FUNC_ROUND": 25, - "FUNC_ROUNDEVEN": 26, - "FUNC_SATURATE": 1, - "FUNC_SIGN": 27, - "FUNC_SIN": 28, - "FUNC_SINH": 29, - "FUNC_SQRT": 30, - "FUNC_TAN": 31, - "FUNC_TANH": 32, - "FUNC_TRUNC": 33 - }, - "properties": [ - { - "name": "function", - "type": "int", - "getter": "get_function", - "setter": "set_function", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_function", - "return_type": "enum.VisualShaderNodeVectorFunc::Function", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_function", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "func", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Function", - "values": { - "FUNC_NORMALIZE": 0, - "FUNC_SATURATE": 1, - "FUNC_NEGATE": 2, - "FUNC_RECIPROCAL": 3, - "FUNC_RGB2HSV": 4, - "FUNC_HSV2RGB": 5, - "FUNC_ABS": 6, - "FUNC_ACOS": 7, - "FUNC_ACOSH": 8, - "FUNC_ASIN": 9, - "FUNC_ASINH": 10, - "FUNC_ATAN": 11, - "FUNC_ATANH": 12, - "FUNC_CEIL": 13, - "FUNC_COS": 14, - "FUNC_COSH": 15, - "FUNC_DEGREES": 16, - "FUNC_EXP": 17, - "FUNC_EXP2": 18, - "FUNC_FLOOR": 19, - "FUNC_FRAC": 20, - "FUNC_INVERSE_SQRT": 21, - "FUNC_LOG": 22, - "FUNC_LOG2": 23, - "FUNC_RADIANS": 24, - "FUNC_ROUND": 25, - "FUNC_ROUNDEVEN": 26, - "FUNC_SIGN": 27, - "FUNC_SIN": 28, - "FUNC_SINH": 29, - "FUNC_SQRT": 30, - "FUNC_TAN": 31, - "FUNC_TANH": 32, - "FUNC_TRUNC": 33, - "FUNC_ONEMINUS": 34 - } - } - ] - }, - { - "name": "VisualShaderNodeVectorInterp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorLen", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorOp", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "OP_ADD": 0, - "OP_ATAN2": 9, - "OP_CROSS": 8, - "OP_DIV": 3, - "OP_MAX": 6, - "OP_MIN": 7, - "OP_MOD": 4, - "OP_MUL": 2, - "OP_POW": 5, - "OP_REFLECT": 10, - "OP_STEP": 11, - "OP_SUB": 1 - }, - "properties": [ - { - "name": "operator", - "type": "int", - "getter": "get_operator", - "setter": "set_operator", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_operator", - "return_type": "enum.VisualShaderNodeVectorOp::Operator", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_operator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "op", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "Operator", - "values": { - "OP_ADD": 0, - "OP_SUB": 1, - "OP_MUL": 2, - "OP_DIV": 3, - "OP_MOD": 4, - "OP_POW": 5, - "OP_MAX": 6, - "OP_MIN": 7, - "OP_CROSS": 8, - "OP_ATAN2": 9, - "OP_REFLECT": 10, - "OP_STEP": 11 - } - } - ] - }, - { - "name": "VisualShaderNodeVectorRefract", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorScalarMix", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorScalarSmoothStep", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorScalarStep", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "VisualShaderNodeVectorSmoothStep", - "base_class": "VisualShaderNode", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "WeakRef", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_ref", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "WebRTCDataChannel", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - "STATE_CLOSED": 3, - "STATE_CLOSING": 2, - "STATE_CONNECTING": 0, - "STATE_OPEN": 1, - "WRITE_MODE_BINARY": 1, - "WRITE_MODE_TEXT": 0 - }, - "properties": [ - { - "name": "write_mode", - "type": "int", - "getter": "get_write_mode", - "setter": "set_write_mode", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffered_amount", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_label", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_packet_life_time", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_retransmits", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_protocol", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ready_state", - "return_type": "enum.WebRTCDataChannel::ChannelState", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_write_mode", - "return_type": "enum.WebRTCDataChannel::WriteMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_negotiated", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ordered", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "poll", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_write_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "write_mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "was_string_packet", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "WriteMode", - "values": { - "WRITE_MODE_TEXT": 0, - "WRITE_MODE_BINARY": 1 - } - }, - { - "name": "ChannelState", - "values": { - "STATE_CONNECTING": 0, - "STATE_OPEN": 1, - "STATE_CLOSING": 2, - "STATE_CLOSED": 3 - } - } - ] - }, - { - "name": "WebRTCDataChannelGDNative", - "base_class": "WebRTCDataChannel", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "WebRTCMultiplayer", - "base_class": "NetworkedMultiplayerPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "add_peer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer", - "type": "WebRTCPeerConnection", - "has_default_value": false, - "default_value": "" - }, - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "unreliable_lifetime", - "type": "int", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_peer", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_peers", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_peer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "initialize", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "server_compatibility", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "remove_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "WebRTCPeerConnection", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "STATE_CLOSED": 5, - "STATE_CONNECTED": 2, - "STATE_CONNECTING": 1, - "STATE_DISCONNECTED": 3, - "STATE_FAILED": 4, - "STATE_NEW": 0 - }, - "properties": [ - ], - "signals": [ - { - "name": "data_channel_received", - "arguments": [ - { - "name": "channel", - "type": "Object", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "ice_candidate_created", - "arguments": [ - { - "name": "media", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "session_description_created", - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sdp", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "add_ice_candidate", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "media", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "create_data_channel", - "return_type": "WebRTCDataChannel", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "options", - "type": "Dictionary", - "has_default_value": true, - "default_value": "{}" - } - ] - }, - { - "name": "create_offer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connection_state", - "return_type": "enum.WebRTCPeerConnection::ConnectionState", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "initialize", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "configuration", - "type": "Dictionary", - "has_default_value": true, - "default_value": "{}" - } - ] - }, - { - "name": "poll", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_local_description", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sdp", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_remote_description", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sdp", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "ConnectionState", - "values": { - "STATE_NEW": 0, - "STATE_CONNECTING": 1, - "STATE_CONNECTED": 2, - "STATE_DISCONNECTED": 3, - "STATE_FAILED": 4, - "STATE_CLOSED": 5 - } - } - ] - }, - { - "name": "WebRTCPeerConnectionGDNative", - "base_class": "WebRTCPeerConnection", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - ], - "enums": [ - ] - }, - { - "name": "WebSocketClient", - "base_class": "WebSocketMultiplayerPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "trusted_ssl_certificate", - "type": "X509Certificate", - "getter": "get_trusted_ssl_certificate", - "setter": "set_trusted_ssl_certificate", - "index": -1 - }, - { - "name": "verify_ssl", - "type": "bool", - "getter": "is_verify_ssl_enabled", - "setter": "set_verify_ssl_enabled", - "index": -1 - } - ], - "signals": [ - { - "name": "connection_closed", - "arguments": [ - { - "name": "was_clean_close", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "connection_error", - "arguments": [ - ] - }, - { - "name": "connection_established", - "arguments": [ - { - "name": "protocol", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "data_received", - "arguments": [ - ] - }, - { - "name": "server_close_request", - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "reason", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "connect_to_url", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "url", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "protocols", - "type": "PoolStringArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "gd_mp_api", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "custom_headers", - "type": "PoolStringArray", - "has_default_value": true, - "default_value": "[]" - } - ] - }, - { - "name": "disconnect_from_host", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": true, - "default_value": "1000" - }, - { - "name": "reason", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_connected_host", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connected_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_trusted_ssl_certificate", - "return_type": "X509Certificate", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_verify_ssl_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_trusted_ssl_certificate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "X509Certificate", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_verify_ssl_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "WebSocketMultiplayerPeer", - "base_class": "NetworkedMultiplayerPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "peer_packet", - "arguments": [ - { - "name": "peer_source", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "get_peer", - "return_type": "WebSocketPeer", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "peer_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_buffers", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "input_buffer_size_kb", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "input_max_packets", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "output_buffer_size_kb", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "output_max_packets", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "WebSocketPeer", - "base_class": "PacketPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "WRITE_MODE_BINARY": 1, - "WRITE_MODE_TEXT": 0 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": true, - "default_value": "1000" - }, - { - "name": "reason", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_connected_host", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connected_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_outbound_buffered_amount", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_write_mode", - "return_type": "enum.WebSocketPeer::WriteMode", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_connected_to_host", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_no_delay", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_write_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "mode", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "was_string_packet", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "WriteMode", - "values": { - "WRITE_MODE_TEXT": 0, - "WRITE_MODE_BINARY": 1 - } - } - ] - }, - { - "name": "WebSocketServer", - "base_class": "WebSocketMultiplayerPeer", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "bind_ip", - "type": "String", - "getter": "get_bind_ip", - "setter": "set_bind_ip", - "index": -1 - }, - { - "name": "ca_chain", - "type": "X509Certificate", - "getter": "get_ca_chain", - "setter": "set_ca_chain", - "index": -1 - }, - { - "name": "handshake_timeout", - "type": "float", - "getter": "get_handshake_timeout", - "setter": "set_handshake_timeout", - "index": -1 - }, - { - "name": "private_key", - "type": "CryptoKey", - "getter": "get_private_key", - "setter": "set_private_key", - "index": -1 - }, - { - "name": "ssl_certificate", - "type": "X509Certificate", - "getter": "get_ssl_certificate", - "setter": "set_ssl_certificate", - "index": -1 - } - ], - "signals": [ - { - "name": "client_close_request", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "code", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "reason", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "client_connected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "protocol", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "client_disconnected", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "was_clean_close", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "data_received", - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "methods": [ - { - "name": "disconnect_peer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "code", - "type": "int", - "has_default_value": true, - "default_value": "1000" - }, - { - "name": "reason", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_bind_ip", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ca_chain", - "return_type": "X509Certificate", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_handshake_timeout", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_peer_address", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_peer_port", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_private_key", - "return_type": "CryptoKey", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ssl_certificate", - "return_type": "X509Certificate", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_peer", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_listening", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "listen", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "port", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "protocols", - "type": "PoolStringArray", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "gd_mp_api", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "set_bind_ip", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ca_chain", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "X509Certificate", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_handshake_timeout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "timeout", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_private_key", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "CryptoKey", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ssl_certificate", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "X509Certificate", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "WebXRInterface", - "base_class": "ARVRInterface", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": false, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "bounds_geometry", - "type": "PoolVector3Array", - "getter": "get_bounds_geometry", - "setter": "", - "index": -1 - }, - { - "name": "optional_features", - "type": "String", - "getter": "get_optional_features", - "setter": "set_optional_features", - "index": -1 - }, - { - "name": "reference_space_type", - "type": "String", - "getter": "get_reference_space_type", - "setter": "", - "index": -1 - }, - { - "name": "requested_reference_space_types", - "type": "String", - "getter": "get_requested_reference_space_types", - "setter": "set_requested_reference_space_types", - "index": -1 - }, - { - "name": "required_features", - "type": "String", - "getter": "get_required_features", - "setter": "set_required_features", - "index": -1 - }, - { - "name": "session_mode", - "type": "String", - "getter": "get_session_mode", - "setter": "set_session_mode", - "index": -1 - }, - { - "name": "visibility_state", - "type": "String", - "getter": "get_visibility_state", - "setter": "", - "index": -1 - } - ], - "signals": [ - { - "name": "reference_space_reset", - "arguments": [ - ] - }, - { - "name": "select", - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "selectend", - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "selectstart", - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "session_ended", - "arguments": [ - ] - }, - { - "name": "session_failed", - "arguments": [ - { - "name": "message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "session_started", - "arguments": [ - ] - }, - { - "name": "session_supported", - "arguments": [ - { - "name": "session_mode", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "supported", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "squeeze", - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "squeezeend", - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "squeezestart", - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "visibility_state_changed", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "get_bounds_geometry", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_controller", - "return_type": "ARVRPositionalTracker", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "controller_id", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_optional_features", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_reference_space_type", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_requested_reference_space_types", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_required_features", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_session_mode", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_visibility_state", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_session_supported", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "session_mode", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_optional_features", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "optional_features", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_requested_reference_space_types", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "requested_reference_space_types", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_required_features", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "required_features", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_session_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "session_mode", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "WindowDialog", - "base_class": "Popup", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "resizable", - "type": "bool", - "getter": "get_resizable", - "setter": "set_resizable", - "index": -1 - }, - { - "name": "window_title", - "type": "String", - "getter": "get_title", - "setter": "set_title", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "_closed", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "_gui_input", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": true, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "arg0", - "type": "InputEvent", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_close_button", - "return_type": "TextureButton", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_resizable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_title", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_resizable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "resizable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "World", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "direct_space_state", - "type": "PhysicsDirectSpaceState", - "getter": "get_direct_space_state", - "setter": "", - "index": -1 - }, - { - "name": "environment", - "type": "Environment", - "getter": "get_environment", - "setter": "set_environment", - "index": -1 - }, - { - "name": "fallback_environment", - "type": "Environment", - "getter": "get_fallback_environment", - "setter": "set_fallback_environment", - "index": -1 - }, - { - "name": "scenario", - "type": "RID", - "getter": "get_scenario", - "setter": "", - "index": -1 - }, - { - "name": "space", - "type": "RID", - "getter": "get_space", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_direct_space_state", - "return_type": "PhysicsDirectSpaceState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment", - "return_type": "Environment", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_fallback_environment", - "return_type": "Environment", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scenario", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "Environment", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_fallback_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "Environment", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "World2D", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - { - "name": "canvas", - "type": "RID", - "getter": "get_canvas", - "setter": "", - "index": -1 - }, - { - "name": "direct_space_state", - "type": "Physics2DDirectSpaceState", - "getter": "get_direct_space_state", - "setter": "", - "index": -1 - }, - { - "name": "space", - "type": "RID", - "getter": "get_space", - "setter": "", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_canvas", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_direct_space_state", - "return_type": "Physics2DDirectSpaceState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space", - "return_type": "RID", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "WorldEnvironment", - "base_class": "Node", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "environment", - "type": "Environment", - "getter": "get_environment", - "setter": "set_environment", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_environment", - "return_type": "Environment", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_environment", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "env", - "type": "Environment", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "X509Certificate", - "base_class": "Resource", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "load", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "XMLParser", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "NODE_CDATA": 5, - "NODE_COMMENT": 4, - "NODE_ELEMENT": 1, - "NODE_ELEMENT_END": 2, - "NODE_NONE": 0, - "NODE_TEXT": 3, - "NODE_UNKNOWN": 6 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_attribute_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_attribute_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_attribute_value", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_current_line", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_named_attribute_value", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_named_attribute_value_safe", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_node_data", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_offset", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_node_type", - "return_type": "enum.XMLParser::NodeType", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_attribute", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_empty", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "open", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "open_buffer", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "read", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "seek", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "skip_section", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "NodeType", - "values": { - "NODE_NONE": 0, - "NODE_ELEMENT": 1, - "NODE_ELEMENT_END": 2, - "NODE_TEXT": 3, - "NODE_COMMENT": 4, - "NODE_CDATA": 5, - "NODE_UNKNOWN": 6 - } - } - ] - }, - { - "name": "YSort", - "base_class": "Node2D", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "sort_enabled", - "type": "bool", - "getter": "is_sort_enabled", - "setter": "set_sort_enabled", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "is_sort_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_sort_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_ClassDB", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "ClassDB", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "can_instance", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_exists", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_get_category", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_get_enum_constants", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "enum", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_get_enum_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_get_integer_constant", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_get_integer_constant_enum", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_get_integer_constant_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_get_method_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_get_property", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_get_property_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_get_signal", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_get_signal_list", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_has_enum", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_has_integer_constant", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_has_method", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "no_inheritance", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "class_has_signal", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "signal", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "class_set_property", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "object", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "property", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_class_list", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_inheriters_from_class", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_parent_class", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "instance", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_class_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_parent_class", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "class", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "inherits", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_Directory", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "change_dir", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "todir", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "copy", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "current_is_dir", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "dir_exists", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "file_exists", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_current_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_drive", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_drive", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_drive_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_next", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_space_left", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "list_dir_begin", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "skip_navigational", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "skip_hidden", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "list_dir_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "make_dir", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_dir_recursive", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "open", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "rename", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_Engine", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Engine", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - { - "name": "editor_hint", - "type": "bool", - "getter": "is_editor_hint", - "setter": "set_editor_hint", - "index": -1 - }, - { - "name": "iterations_per_second", - "type": "int", - "getter": "get_iterations_per_second", - "setter": "set_iterations_per_second", - "index": -1 - }, - { - "name": "physics_jitter_fix", - "type": "float", - "getter": "get_physics_jitter_fix", - "setter": "set_physics_jitter_fix", - "index": -1 - }, - { - "name": "print_error_messages", - "type": "bool", - "getter": "is_printing_error_messages", - "setter": "set_print_error_messages", - "index": -1 - }, - { - "name": "target_fps", - "type": "int", - "getter": "get_target_fps", - "setter": "set_target_fps", - "index": -1 - }, - { - "name": "time_scale", - "type": "float", - "getter": "get_time_scale", - "setter": "set_time_scale", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "get_author_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_copyright_info", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_donor_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frames_drawn", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_frames_per_second", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_idle_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_iterations_per_second", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_license_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_license_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_main_loop", - "return_type": "MainLoop", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_frames", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_interpolation_fraction", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_physics_jitter_fix", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_singleton", - "return_type": "Object", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_target_fps", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_version_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_singleton", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_editor_hint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_in_physics_frame", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_printing_error_messages", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_editor_hint", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_iterations_per_second", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "iterations_per_second", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_physics_jitter_fix", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "physics_jitter_fix", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_print_error_messages", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_target_fps", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "target_fps", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_time_scale", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "time_scale", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_File", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "COMPRESSION_DEFLATE": 1, - "COMPRESSION_FASTLZ": 0, - "COMPRESSION_GZIP": 3, - "COMPRESSION_ZSTD": 2, - "READ": 1, - "READ_WRITE": 3, - "WRITE": 2, - "WRITE_READ": 7 - }, - "properties": [ - { - "name": "endian_swap", - "type": "bool", - "getter": "get_endian_swap", - "setter": "set_endian_swap", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "close", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "eof_reached", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "file_exists", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "flush", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_16", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_32", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_64", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_8", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_as_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_buffer", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "len", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_csv_line", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delim", - "type": "String", - "has_default_value": true, - "default_value": "," - } - ] - }, - { - "name": "get_double", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_endian_swap", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_error", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_float", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_len", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_line", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_md5", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_modified_time", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_pascal_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_path_absolute", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_position", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_real", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_sha256", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_var", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "allow_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "is_open", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "open", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "open_compressed", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "compression_mode", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "open_encrypted", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "key", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "open_encrypted_with_pass", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "mode_flags", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "pass", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "seek", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "seek_end", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "set_endian_swap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_16", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_32", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_64", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_8", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_buffer", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "buffer", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_csv_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "values", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delim", - "type": "String", - "has_default_value": true, - "default_value": "," - } - ] - }, - { - "name": "store_double", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_float", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_line", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "line", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_pascal_string", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "string", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_real", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_string", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "string", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "store_var", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "full_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - } - ], - "enums": [ - { - "name": "CompressionMode", - "values": { - "COMPRESSION_FASTLZ": 0, - "COMPRESSION_DEFLATE": 1, - "COMPRESSION_ZSTD": 2, - "COMPRESSION_GZIP": 3 - } - }, - { - "name": "ModeFlags", - "values": { - "READ": 1, - "WRITE": 2, - "READ_WRITE": 3, - "WRITE_READ": 7 - } - } - ] - }, - { - "name": "_Geometry", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Geometry", - "instanciable": false, - "is_reference": false, - "constants": { - "END_BUTT": 2, - "END_JOINED": 1, - "END_POLYGON": 0, - "END_ROUND": 4, - "END_SQUARE": 3, - "JOIN_MITER": 2, - "JOIN_ROUND": 1, - "JOIN_SQUARE": 0, - "OPERATION_DIFFERENCE": 1, - "OPERATION_INTERSECTION": 2, - "OPERATION_UNION": 0, - "OPERATION_XOR": 3 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "build_box_planes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "extents", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "build_capsule_planes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sides", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "lats", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": true, - "default_value": "2" - } - ] - }, - { - "name": "build_cylinder_planes", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sides", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "axis", - "type": "int", - "has_default_value": true, - "default_value": "2" - } - ] - }, - { - "name": "clip_polygon", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector3Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "plane", - "type": "Plane", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clip_polygons_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon_a", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon_b", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "clip_polyline_with_polygon_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polyline", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "convex_hull_2d", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "exclude_polygons_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon_a", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon_b", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_to_segment", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s1", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s2", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_to_segment_2d", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s2", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_to_segment_uncapped", - "return_type": "Vector3", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s1", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s2", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_point_to_segment_uncapped_2d", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "s2", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_points_between_segments", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p1", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "p2", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "q1", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "q2", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_closest_points_between_segments_2d", - "return_type": "PoolVector2Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "p1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "q1", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "p2", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "q2", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_uv84_normal_bit", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "normal", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "intersect_polygons_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon_a", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon_b", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "intersect_polyline_with_polygon_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polyline", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_point_in_circle", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "circle_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "circle_radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_point_in_polygon", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_polygon_clockwise", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "line_intersects_line_2d", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dir_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dir_b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "make_atlas", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "sizes", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "merge_polygons_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon_a", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "polygon_b", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "offset_polygon_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "join_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - }, - { - "name": "offset_polyline_2d", - "return_type": "Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polyline", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - }, - { - "name": "delta", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "join_type", - "type": "int", - "has_default_value": true, - "default_value": "0" - }, - { - "name": "end_type", - "type": "int", - "has_default_value": true, - "default_value": "3" - } - ] - }, - { - "name": "point_is_inside_triangle", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "point", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "c", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "ray_intersects_triangle", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "dir", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "a", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "b", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "c", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "segment_intersects_circle", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "segment_from", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "segment_to", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "circle_position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "circle_radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "segment_intersects_convex", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "planes", - "type": "Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "segment_intersects_cylinder", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "height", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "segment_intersects_segment_2d", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_a", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "from_b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to_b", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "segment_intersects_sphere", - "return_type": "PoolVector3Array", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sphere_position", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "sphere_radius", - "type": "float", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "segment_intersects_triangle", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "from", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "to", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "a", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "b", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - }, - { - "name": "c", - "type": "Vector3", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "triangulate_delaunay_2d", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "points", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "triangulate_polygon", - "return_type": "PoolIntArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "polygon", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - { - "name": "PolyEndType", - "values": { - "END_POLYGON": 0, - "END_JOINED": 1, - "END_BUTT": 2, - "END_SQUARE": 3, - "END_ROUND": 4 - } - }, - { - "name": "PolyBooleanOperation", - "values": { - "OPERATION_UNION": 0, - "OPERATION_DIFFERENCE": 1, - "OPERATION_INTERSECTION": 2, - "OPERATION_XOR": 3 - } - }, - { - "name": "PolyJoinType", - "values": { - "JOIN_SQUARE": 0, - "JOIN_ROUND": 1, - "JOIN_MITER": 2 - } - } - ] - }, - { - "name": "_JSON", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "JSON", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "parse", - "return_type": "JSONParseResult", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "json", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "print", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "value", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "indent", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "sort_keys", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_Marshalls", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "Marshalls", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "base64_to_raw", - "return_type": "PoolByteArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base64_str", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "base64_to_utf8", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base64_str", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "base64_to_variant", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "base64_str", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "allow_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "raw_to_base64", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "array", - "type": "PoolByteArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "utf8_to_base64", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utf8_str", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "variant_to_base64", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "variant", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "full_objects", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_Mutex", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "lock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "try_lock", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "unlock", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "_OS", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "OS", - "instanciable": false, - "is_reference": false, - "constants": { - "APPLICATION_HANDLE": 0, - "DAY_FRIDAY": 5, - "DAY_MONDAY": 1, - "DAY_SATURDAY": 6, - "DAY_SUNDAY": 0, - "DAY_THURSDAY": 4, - "DAY_TUESDAY": 2, - "DAY_WEDNESDAY": 3, - "DISPLAY_HANDLE": 1, - "MONTH_APRIL": 4, - "MONTH_AUGUST": 8, - "MONTH_DECEMBER": 12, - "MONTH_FEBRUARY": 2, - "MONTH_JANUARY": 1, - "MONTH_JULY": 7, - "MONTH_JUNE": 6, - "MONTH_MARCH": 3, - "MONTH_MAY": 5, - "MONTH_NOVEMBER": 11, - "MONTH_OCTOBER": 10, - "MONTH_SEPTEMBER": 9, - "OPENGL_CONTEXT": 4, - "POWERSTATE_CHARGED": 4, - "POWERSTATE_CHARGING": 3, - "POWERSTATE_NO_BATTERY": 2, - "POWERSTATE_ON_BATTERY": 1, - "POWERSTATE_UNKNOWN": 0, - "SCREEN_ORIENTATION_LANDSCAPE": 0, - "SCREEN_ORIENTATION_PORTRAIT": 1, - "SCREEN_ORIENTATION_REVERSE_LANDSCAPE": 2, - "SCREEN_ORIENTATION_REVERSE_PORTRAIT": 3, - "SCREEN_ORIENTATION_SENSOR": 6, - "SCREEN_ORIENTATION_SENSOR_LANDSCAPE": 4, - "SCREEN_ORIENTATION_SENSOR_PORTRAIT": 5, - "SYSTEM_DIR_DCIM": 1, - "SYSTEM_DIR_DESKTOP": 0, - "SYSTEM_DIR_DOCUMENTS": 2, - "SYSTEM_DIR_DOWNLOADS": 3, - "SYSTEM_DIR_MOVIES": 4, - "SYSTEM_DIR_MUSIC": 5, - "SYSTEM_DIR_PICTURES": 6, - "SYSTEM_DIR_RINGTONES": 7, - "VIDEO_DRIVER_GLES2": 1, - "VIDEO_DRIVER_GLES3": 0, - "WINDOW_HANDLE": 2, - "WINDOW_VIEW": 3 - }, - "properties": [ - { - "name": "clipboard", - "type": "String", - "getter": "get_clipboard", - "setter": "set_clipboard", - "index": -1 - }, - { - "name": "current_screen", - "type": "int", - "getter": "get_current_screen", - "setter": "set_current_screen", - "index": -1 - }, - { - "name": "delta_smoothing", - "type": "bool", - "getter": "is_delta_smoothing_enabled", - "setter": "set_delta_smoothing", - "index": -1 - }, - { - "name": "exit_code", - "type": "int", - "getter": "get_exit_code", - "setter": "set_exit_code", - "index": -1 - }, - { - "name": "keep_screen_on", - "type": "bool", - "getter": "is_keep_screen_on", - "setter": "set_keep_screen_on", - "index": -1 - }, - { - "name": "low_processor_usage_mode", - "type": "bool", - "getter": "is_in_low_processor_usage_mode", - "setter": "set_low_processor_usage_mode", - "index": -1 - }, - { - "name": "low_processor_usage_mode_sleep_usec", - "type": "int", - "getter": "get_low_processor_usage_mode_sleep_usec", - "setter": "set_low_processor_usage_mode_sleep_usec", - "index": -1 - }, - { - "name": "max_window_size", - "type": "Vector2", - "getter": "get_max_window_size", - "setter": "set_max_window_size", - "index": -1 - }, - { - "name": "min_window_size", - "type": "Vector2", - "getter": "get_min_window_size", - "setter": "set_min_window_size", - "index": -1 - }, - { - "name": "screen_orientation", - "type": "int", - "getter": "get_screen_orientation", - "setter": "set_screen_orientation", - "index": -1 - }, - { - "name": "tablet_driver", - "type": "String", - "getter": "get_current_tablet_driver", - "setter": "set_current_tablet_driver", - "index": -1 - }, - { - "name": "vsync_enabled", - "type": "bool", - "getter": "is_vsync_enabled", - "setter": "set_use_vsync", - "index": -1 - }, - { - "name": "vsync_via_compositor", - "type": "bool", - "getter": "is_vsync_via_compositor_enabled", - "setter": "set_vsync_via_compositor", - "index": -1 - }, - { - "name": "window_borderless", - "type": "bool", - "getter": "get_borderless_window", - "setter": "set_borderless_window", - "index": -1 - }, - { - "name": "window_fullscreen", - "type": "bool", - "getter": "is_window_fullscreen", - "setter": "set_window_fullscreen", - "index": -1 - }, - { - "name": "window_maximized", - "type": "bool", - "getter": "is_window_maximized", - "setter": "set_window_maximized", - "index": -1 - }, - { - "name": "window_minimized", - "type": "bool", - "getter": "is_window_minimized", - "setter": "set_window_minimized", - "index": -1 - }, - { - "name": "window_per_pixel_transparency_enabled", - "type": "bool", - "getter": "get_window_per_pixel_transparency_enabled", - "setter": "set_window_per_pixel_transparency_enabled", - "index": -1 - }, - { - "name": "window_position", - "type": "Vector2", - "getter": "get_window_position", - "setter": "set_window_position", - "index": -1 - }, - { - "name": "window_resizable", - "type": "bool", - "getter": "is_window_resizable", - "setter": "set_window_resizable", - "index": -1 - }, - { - "name": "window_size", - "type": "Vector2", - "getter": "get_window_size", - "setter": "set_window_size", - "index": -1 - } - ], - "signals": [ - ], - "methods": [ - { - "name": "alert", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "text", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "title", - "type": "String", - "has_default_value": true, - "default_value": "Alert!" - } - ] - }, - { - "name": "can_draw", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "can_use_threads", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "center_window", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "close_midi_inputs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "crash", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "message", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "delay_msec", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "msec", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "delay_usec", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "usec", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "dump_memory_to_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "dump_resources_to_file", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "file", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "execute", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "arguments", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - }, - { - "name": "blocking", - "type": "bool", - "has_default_value": true, - "default_value": "True" - }, - { - "name": "output", - "type": "Array", - "has_default_value": true, - "default_value": "[]" - }, - { - "name": "read_stderr", - "type": "bool", - "has_default_value": true, - "default_value": "False" - }, - { - "name": "open_console", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "find_scancode_from_string", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "string", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_audio_driver_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_audio_driver_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "driver", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_borderless_window", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cache_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_clipboard", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_cmdline_args", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_config_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_connected_midi_inputs", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_screen", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_tablet_driver", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_current_video_driver", - "return_type": "enum._OS::VideoDriver", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_data_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_date", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_datetime", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_datetime_from_unix_time", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "unix_time_val", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_dynamic_memory_usage", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_environment", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "variable", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_executable_path", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_exit_code", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_granted_permissions", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ime_selection", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ime_text", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_latin_keyboard_variant", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_locale", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_locale_language", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_low_processor_usage_mode_sleep_usec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_main_thread_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_max_window_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_min_window_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_model_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_native_handle", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "handle_type", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_power_percent_left", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_power_seconds_left", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_power_state", - "return_type": "enum._OS::PowerState", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_process_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_processor_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_real_window_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_scancode_string", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_screen_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_screen_dpi", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_screen_max_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_screen_orientation", - "return_type": "enum._OS::ScreenOrientation", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_screen_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_screen_scale", - "return_type": "float", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_screen_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen", - "type": "int", - "has_default_value": true, - "default_value": "-1" - } - ] - }, - { - "name": "get_splash_tick_msec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_static_memory_peak_usage", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_static_memory_usage", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_system_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "dir", - "type": "int", - "has_default_value": false, - "default_value": "" - }, - { - "name": "shared_storage", - "type": "bool", - "has_default_value": true, - "default_value": "True" - } - ] - }, - { - "name": "get_system_time_msecs", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_system_time_secs", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tablet_driver_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_tablet_driver_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_thread_caller_id", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ticks_msec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_ticks_usec", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_time", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "utc", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "get_time_zone_info", - "return_type": "Dictionary", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unique_id", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unix_time", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_unix_time_from_datetime", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "datetime", - "type": "Dictionary", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_user_data_dir", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_video_driver_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_video_driver_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "driver", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_virtual_keyboard_height", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_window_per_pixel_transparency_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_window_position", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_window_safe_area", - "return_type": "Rect2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "get_window_size", - "return_type": "Vector2", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "global_menu_add_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "menu", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "label", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "id", - "type": "Variant", - "has_default_value": false, - "default_value": "" - }, - { - "name": "meta", - "type": "Variant", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "global_menu_add_separator", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "menu", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "global_menu_clear", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "menu", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "global_menu_remove_item", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "menu", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "idx", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_environment", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "variable", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_feature", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tag_name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_touchscreen_ui_hint", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "has_virtual_keyboard", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "hide_virtual_keyboard", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_debug_build", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_delta_smoothing_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_in_low_processor_usage_mode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_keep_screen_on", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_ok_left_and_cancel_right", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_scancode_unicode", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "is_stdout_verbose", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_userfs_persistent", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_vsync_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_vsync_via_compositor_enabled", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_window_always_on_top", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_window_focused", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_window_fullscreen", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_window_maximized", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_window_minimized", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_window_resizable", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "keyboard_get_current_layout", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "keyboard_get_layout_count", - "return_type": "int", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "keyboard_get_layout_language", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "keyboard_get_layout_name", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "keyboard_set_current_layout", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "index", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "kill", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "pid", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "move_window_to_foreground", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "native_video_is_playing", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "native_video_pause", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "native_video_play", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "volume", - "type": "float", - "has_default_value": false, - "default_value": "" - }, - { - "name": "audio_track", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "subtitle_track", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "native_video_stop", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "native_video_unpause", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "open_midi_inputs", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "print_all_resources", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "tofile", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "print_all_textures_by_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "print_resources_by_type", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "types", - "type": "PoolStringArray", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "print_resources_in_use", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "short", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "request_attention", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "request_permission", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "request_permissions", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "set_borderless_window", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "borderless", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_clipboard", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "clipboard", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_screen", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "screen", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_current_tablet_driver", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_delta_smoothing", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "delta_smoothing_enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_environment", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "variable", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "value", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_exit_code", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "code", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "icon", - "type": "Image", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ime_active", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "active", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_ime_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_keep_screen_on", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_low_processor_usage_mode", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_low_processor_usage_mode_sleep_usec", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "usec", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_max_window_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_min_window_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_native_icon", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "filename", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_screen_orientation", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "orientation", - "type": "int", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_thread_name", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_file_access_save_and_swap", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_use_vsync", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_vsync_via_compositor", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enable", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_always_on_top", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_fullscreen", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_maximized", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_minimized", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_mouse_passthrough", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "region", - "type": "PoolVector2Array", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_per_pixel_transparency_enabled", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_position", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "position", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_resizable", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "enabled", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_size", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "size", - "type": "Vector2", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "set_window_title", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "title", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "shell_open", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "uri", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "show_virtual_keyboard", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "existing_text", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "multiline", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - } - ], - "enums": [ - { - "name": "VideoDriver", - "values": { - "VIDEO_DRIVER_GLES3": 0, - "VIDEO_DRIVER_GLES2": 1 - } - }, - { - "name": "SystemDir", - "values": { - "SYSTEM_DIR_DESKTOP": 0, - "SYSTEM_DIR_DCIM": 1, - "SYSTEM_DIR_DOCUMENTS": 2, - "SYSTEM_DIR_DOWNLOADS": 3, - "SYSTEM_DIR_MOVIES": 4, - "SYSTEM_DIR_MUSIC": 5, - "SYSTEM_DIR_PICTURES": 6, - "SYSTEM_DIR_RINGTONES": 7 - } - }, - { - "name": "ScreenOrientation", - "values": { - "SCREEN_ORIENTATION_LANDSCAPE": 0, - "SCREEN_ORIENTATION_PORTRAIT": 1, - "SCREEN_ORIENTATION_REVERSE_LANDSCAPE": 2, - "SCREEN_ORIENTATION_REVERSE_PORTRAIT": 3, - "SCREEN_ORIENTATION_SENSOR_LANDSCAPE": 4, - "SCREEN_ORIENTATION_SENSOR_PORTRAIT": 5, - "SCREEN_ORIENTATION_SENSOR": 6 - } - }, - { - "name": "PowerState", - "values": { - "POWERSTATE_UNKNOWN": 0, - "POWERSTATE_ON_BATTERY": 1, - "POWERSTATE_NO_BATTERY": 2, - "POWERSTATE_CHARGING": 3, - "POWERSTATE_CHARGED": 4 - } - }, - { - "name": "HandleType", - "values": { - "APPLICATION_HANDLE": 0, - "DISPLAY_HANDLE": 1, - "WINDOW_HANDLE": 2, - "WINDOW_VIEW": 3, - "OPENGL_CONTEXT": 4 - } - }, - { - "name": "Month", - "values": { - "MONTH_JANUARY": 1, - "MONTH_FEBRUARY": 2, - "MONTH_MARCH": 3, - "MONTH_APRIL": 4, - "MONTH_MAY": 5, - "MONTH_JUNE": 6, - "MONTH_JULY": 7, - "MONTH_AUGUST": 8, - "MONTH_SEPTEMBER": 9, - "MONTH_OCTOBER": 10, - "MONTH_NOVEMBER": 11, - "MONTH_DECEMBER": 12 - } - }, - { - "name": "Weekday", - "values": { - "DAY_SUNDAY": 0, - "DAY_MONDAY": 1, - "DAY_TUESDAY": 2, - "DAY_WEDNESDAY": 3, - "DAY_THURSDAY": 4, - "DAY_FRIDAY": 5, - "DAY_SATURDAY": 6 - } - } - ] - }, - { - "name": "_ResourceLoader", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "ResourceLoader", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "exists", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_hint", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "get_dependencies", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "get_recognized_extensions_for_type", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "has_cached", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "load", - "return_type": "Resource", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_hint", - "type": "String", - "has_default_value": true, - "default_value": "" - }, - { - "name": "no_cache", - "type": "bool", - "has_default_value": true, - "default_value": "False" - } - ] - }, - { - "name": "load_interactive", - "return_type": "ResourceInteractiveLoader", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "type_hint", - "type": "String", - "has_default_value": true, - "default_value": "" - } - ] - }, - { - "name": "set_abort_on_missing_resources", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "abort", - "type": "bool", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - }, - { - "name": "_ResourceSaver", - "base_class": "Object", - "api_type": "core", - "singleton": true, - "singleton_name": "ResourceSaver", - "instanciable": false, - "is_reference": false, - "constants": { - "FLAG_BUNDLE_RESOURCES": 2, - "FLAG_CHANGE_PATH": 4, - "FLAG_COMPRESS": 32, - "FLAG_OMIT_EDITOR_PROPERTIES": 8, - "FLAG_RELATIVE_PATHS": 1, - "FLAG_REPLACE_SUBRESOURCE_PATHS": 64, - "FLAG_SAVE_BIG_ENDIAN": 16 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_recognized_extensions", - "return_type": "PoolStringArray", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "type", - "type": "Resource", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "save", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "path", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "resource", - "type": "Resource", - "has_default_value": false, - "default_value": "" - }, - { - "name": "flags", - "type": "int", - "has_default_value": true, - "default_value": "0" - } - ] - } - ], - "enums": [ - { - "name": "SaverFlags", - "values": { - "FLAG_RELATIVE_PATHS": 1, - "FLAG_BUNDLE_RESOURCES": 2, - "FLAG_CHANGE_PATH": 4, - "FLAG_OMIT_EDITOR_PROPERTIES": 8, - "FLAG_SAVE_BIG_ENDIAN": 16, - "FLAG_COMPRESS": 32, - "FLAG_REPLACE_SUBRESOURCE_PATHS": 64 - } - } - ] - }, - { - "name": "_Semaphore", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "post", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "wait", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - ] - }, - { - "name": "_Thread", - "base_class": "Reference", - "api_type": "core", - "singleton": false, - "singleton_name": "", - "instanciable": true, - "is_reference": true, - "constants": { - "PRIORITY_HIGH": 2, - "PRIORITY_LOW": 0, - "PRIORITY_NORMAL": 1 - }, - "properties": [ - ], - "signals": [ - ], - "methods": [ - { - "name": "get_id", - "return_type": "String", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_active", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "is_alive", - "return_type": "bool", - "is_editor": false, - "is_noscript": false, - "is_const": true, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - }, - { - "name": "start", - "return_type": "enum.Error", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "instance", - "type": "Object", - "has_default_value": false, - "default_value": "" - }, - { - "name": "method", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "userdata", - "type": "Variant", - "has_default_value": true, - "default_value": "Null" - }, - { - "name": "priority", - "type": "int", - "has_default_value": true, - "default_value": "1" - } - ] - }, - { - "name": "wait_to_finish", - "return_type": "Variant", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - ] - } - ], - "enums": [ - { - "name": "Priority", - "values": { - "PRIORITY_LOW": 0, - "PRIORITY_NORMAL": 1, - "PRIORITY_HIGH": 2 - } - } - ] - }, - { - "name": "_VisualScriptEditor", - "base_class": "Object", - "api_type": "tools", - "singleton": true, - "singleton_name": "VisualScriptEditor", - "instanciable": false, - "is_reference": false, - "constants": { - }, - "properties": [ - ], - "signals": [ - { - "name": "custom_nodes_updated", - "arguments": [ - ] - } - ], - "methods": [ - { - "name": "add_custom_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "category", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "script", - "type": "Script", - "has_default_value": false, - "default_value": "" - } - ] - }, - { - "name": "remove_custom_node", - "return_type": "void", - "is_editor": false, - "is_noscript": false, - "is_const": false, - "is_reverse": false, - "is_virtual": false, - "has_varargs": false, - "is_from_script": false, - "arguments": [ - { - "name": "name", - "type": "String", - "has_default_value": false, - "default_value": "" - }, - { - "name": "category", - "type": "String", - "has_default_value": false, - "default_value": "" - } - ] - } - ], - "enums": [ - ] - } -] \ No newline at end of file diff --git a/demo/.gitignore b/demo/.gitignore index 4f48ad7..4709183 100644 --- a/demo/.gitignore +++ b/demo/.gitignore @@ -1,11 +1,2 @@ -# Godot-specific ignores -.import/ -export.cfg -export_presets.cfg - -# Imported translations (automatically generated from CSV files) -*.translation - -# Mono-specific ignores -.mono/ -data_*/ +# Godot 4+ specific ignores +.godot/ diff --git a/demo/addons/godot-git-plugin/git_api.gdnlib b/demo/addons/godot-git-plugin/git_api.gdnlib deleted file mode 100644 index 342930a..0000000 --- a/demo/addons/godot-git-plugin/git_api.gdnlib +++ /dev/null @@ -1,18 +0,0 @@ -[general] - -load_once=true -symbol_prefix="godot_" -reloadable=false -singleton=false - -[entry] - -OSX.64="res://addons/godot-git-plugin/osx/libgit_plugin.dylib" -Windows.64="res://addons/godot-git-plugin/win64/libgit_plugin.dll" -X11.64="res://addons/godot-git-plugin/linux/libgit_plugin.so" - -[dependencies] - -OSX.64=[ ] -Windows.64=[ ] -X11.64=[ ] diff --git a/demo/addons/godot-git-plugin/git_api.gdns b/demo/addons/godot-git-plugin/git_api.gdns deleted file mode 100644 index 621cd56..0000000 --- a/demo/addons/godot-git-plugin/git_api.gdns +++ /dev/null @@ -1,9 +0,0 @@ -[gd_resource type="NativeScript" load_steps=2 format=2] - -[ext_resource path="res://addons/godot-git-plugin/git_plugin.gdnlib" type="GDNativeLibrary" id=1] - -[resource] -resource_name = "GitPlugin" -class_name = "GitPlugin" -library = ExtResource( 1 ) -script_class_name = "GitPlugin" diff --git a/demo/addons/godot-git-plugin/git_plugin.gdextension b/demo/addons/godot-git-plugin/git_plugin.gdextension new file mode 100644 index 0000000..cee1b42 --- /dev/null +++ b/demo/addons/godot-git-plugin/git_plugin.gdextension @@ -0,0 +1,16 @@ +[configuration] + +entry_symbol = "git_plugin_init" + +[libraries] + +macos.debug = "osx/libgit_plugin.osx.universal.debug.dylib" +macos.release = "osx/libgit_plugin.osx.universal.release.dylib" +windows.debug.x86_64 = "win64/libgit_plugin.windows.x86_64.debug.dll" +windows.release.x86_64 = "win64/libgit_plugin.windows.x86_64.release.dll" +linux.debug.x86_64 = "linux/libgit_plugin.linux.x86_64.debug.so" +linux.release.x86_64 = "linux/libgit_plugin.linux.x86_64.release.so" +linux.debug.arm64 = "linux/libgit_plugin.linux.arm64.debug.so" +linux.release.arm64 = "linux/libgit_plugin.linux.arm64.release.so" +linux.debug.rv64 = "" +linux.release.rv64 = "" diff --git a/demo/addons/godot-git-plugin/plugin.cfg b/demo/addons/godot-git-plugin/plugin.cfg index a17b09e..45e861e 100644 --- a/demo/addons/godot-git-plugin/plugin.cfg +++ b/demo/addons/godot-git-plugin/plugin.cfg @@ -3,5 +3,5 @@ name="Godot Git Plugin" description="This plugin lets you interact with Git without leaving the Godot editor. More information can be found at https://github.com/godotengine/godot-git-plugin/wiki" author="ChronicallySerious" -version="v2.0.0" +version="v3.0.0-beta" script="git_plugin.gdns" diff --git a/demo/default_env.tres b/demo/default_env.tres deleted file mode 100644 index 20207a4..0000000 --- a/demo/default_env.tres +++ /dev/null @@ -1,7 +0,0 @@ -[gd_resource type="Environment" load_steps=2 format=2] - -[sub_resource type="ProceduralSky" id=1] - -[resource] -background_mode = 2 -background_sky = SubResource( 1 ) diff --git a/demo/demo.tscn b/demo/demo.tscn index b171e8d..23b69b6 100644 --- a/demo/demo.tscn +++ b/demo/demo.tscn @@ -1,3 +1,3 @@ -[gd_scene format=2] +[gd_scene format=3 uid="uid://cr5ci1iwmxnlb"] -[node name="Node2D" type="Node2D"] +[node name="Node3D" type="Node3D"] diff --git a/demo/icon.png b/demo/icon.png deleted file mode 100644 index 45b83818a11bfc931db39836996532f86ec7b089..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3226 zcmV;L3}y3)P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf3@=GUK~#8N?VAa7 zRMi>B|C!0mB$I?>LN*{VWDj9USR|sM%H{%sVg*@FtzdDfr`2*mp~cg*Jr$`)-Hu|l zpjE&MRuEKF6q_K*qBIa7frOB-Wr1uYlT2m;z5hFJXfm0Z%p?;JOMmCQ^WNO|?){c` zm+#*D#^<5{Z8%hP9Pe-a3cJ5QgvztkXlgbocdktQ{d9;33&qIcX_$WdSfnNPSMFH3 z}n$Rm&DbtJOfohq7N>Esgh4so@`FfL0#_ zm9OTCH=fW2+CrOX8*QYmw3(<1ipsG0iyZmp{Q`rb5^w!#g|^W~+De;gyE-~)cy?al zQE2@1vf5wm_^3ps7tNs6Vuntwg<2OGpIuwu0G)rJtRB|_Y!>Vj>KhxOsytU?O}vV$ zzCAWuX}ikUBzi_cPj+}AK>-*yDg$xRkxGhl;-aJEv&_>|*leZkK564;$w5EB5Fr!2 zMMUoqOc|Sr(ZdHKH7@#+&=0=&2Fu>qAg}FNG;bR2nQ)`L=I~WeauT_F58|WkyTse7 zmFeE1v8Ga-y5?>#p3=&D^MtmYYUz9 z_OtV`=G#*2I(7~t;zBVj)_{Tif~7NZ_U7Xso4&%qqoqoY?$IL-2o}|L{R@i$wFaLZ zD96Y9PouKl+Qf)n>x;MMWn%xqBbdMJO(oUJibeA)0G110ioQUTM3JzP%T#cN}YHJTbOduwl;$WQk^xnVy39 zm?(MhI%`-OHtapo&UnHySQg7<*_7c;yy^gBlXc?cuXR40ezfltYK<*;`FD@tz2~2j z2d|mNd(NvSiZFYuWUPlXSN)a2d|mNd(N-%pDr58sD} zrr&|%XB)9;-$~RpnU!4Lq4mN=42}-L)G;H_FQPYg9Vmpw(kc!A{bRGRaPChr=bi}& zHv}X1`-4g@=a`$VP08(H@PVo0@ynT$#5jFi_S78DHKP9f^V3{p4oN}6b$zf_jN$L? zE`_DFXBJd^)hf)$ybiN&h(&SP8SFlA1k-QNg82eu{Gb;d+yMhIf4VUn3^>RIx&;{!=`+ECep-<>M^)dwf{sd z4h#7chs9y|fH-UuI{k6uK^bfv5cm3q_+#3b3>-UIj*^oVO3seBT?3-R3|P1PNtD)@ z@YMP|m|KOr+mIX?ghnyGpQ>q6Qhprz8T=6-0;?kx=am#I8c|D@O-o0tL5GPnrdJ8f`!3a{f;-;i9JUcBzgs!p5Q=Y@TEQ4jSOqNXi^FlEYJn0)6HY*@cuys`cm(6^WJWP755{p8^Y z=3(CTq70VBGFdidP!?r+1J4}bfFM5&MkR*9WHMpNlBZEzTrAU#Mk8K(Z6$VovlHXe zI`$o`+N(sh=HaNRFweIl?@Cby%OWhBGAN5ODZ9IL+X1m*dU-A=C`3g?$H_--PA=lY zI!?5bqk`miH4k3f!#p`6uRWAeSXd~pZL+&Vw;fP*-nvHTr_;%^J=}t}UmSG@=3!n( z=oDEt+1;Vr4ydSW#tDX;Nr^~FNl{X*s8lLUoH!ACkGqb>9Kk%y%QD(R8HtIBQYK}0 zmu@?NJioO-bdV}Mv-HoHaO(s_MMYuIpn+Jr^cfiSk@)J6^Le>5n1^{;2FqfZw~DeU zgR-PdFW?mi6r8EY<7>W0rAdv&ix*+-x;0q#{9kblk;vYd4@VeB*M3(jkIsxIEVDD? zyMospaHZjP6ZmHBa%gw%Bq`iR*bz;sG>kyX#AYN?^1qsWRQsEGhz+OFUS0+ zvXcs{;iQO8Xp4La;sx*=9;8D|s6TF;xj?z=m@YYB!`_p4Ye$KaV#VhDhi^%g z@%!W#a+EtAd1KBt7dLs)cQNAS({{j)->K0dDsJ z+=cPA3rYwTD6VXfofLa^KPOXFwaQ1X+3zemi&?Mlba?O{pW(BPVA+&GS(IsSJfV(e zp{u*N?SR_zjR*;FKKW>9wvOeD>q7%OPMtaHqhZ`St8QSG?RfAWpRu1IvMiQqn={yC zIfAvZw%+|6WVf5Z@+TieVnPDuu5#SQ?;aM7N5&*7zpQWztx*Iy-1{dzvx3SORWzXVT%#B48IV0=iB4bDURSce{)KN z2&Q~RY;X}Z!f~wb-15pRtHmBMKcMrrAFhDK!5$pHC%Sh;4AyMd)x^&n_94Z^}mqXrx$*6TZ$BT zxjB$cA^{?MAe%6ihLGTg1H zZ@{{b|1EobvxxmY#p6)e6~1DU#BYMR6@5c`D%2uc<2OCWsv1yIC5FdZBPvDhsHiug zuBio0!ZEyGXS8-!!Fr7hfc%A_!TwrA_R=9j1VjBo^oR=&Kzw+hyl-i3#dmpy*t~t0 z{0@lGX;<;81KPsjGCd^@>8aun=l;>+jTwTKyPi>1U5AoWqDB>z$Yz%(4vt3NpvN5G z2%T1gsBi=Ngoh$HP%ncj))GT6YiL_je_n248k{`KQYea7YR3kG6$sZQ8cRxbD zoUz$@eTIl=r%xIq$5xA}2^X$`T0k3VD{a2-&IwSZCH2RoaW~0!(cDmXRXc&U(MH-z zn+GKH|KDF{A6&E)KODG5{yIB26|0_IB=;Ww|L19&18iJdf1d~b3$Y5M1YjZq+5i9m M07*qoM6N<$g3f(4X8-^I diff --git a/demo/icon.png.import b/demo/icon.png.import deleted file mode 100644 index a4c02e6..0000000 --- a/demo/icon.png.import +++ /dev/null @@ -1,35 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://icon.png" -dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] - -[params] - -compress/mode=0 -compress/lossy_quality=0.7 -compress/hdr_mode=0 -compress/bptc_ldr=0 -compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 -process/fix_alpha_border=true -process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false -process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 diff --git a/demo/new_script.gd b/demo/new_script.gd index b3e7e46..3acb4f1 100644 --- a/demo/new_script.gd +++ b/demo/new_script.gd @@ -1,16 +1,12 @@ extends Node -# Declare member variables here. Examples: -# var a = 2 -# var b = "text" - - # Called when the node enters the scene tree for the first time. func _ready(): - print("Hello Godot!") + print("Hello world!") pass # Replace with function body. + # Called every frame. 'delta' is the elapsed time since the previous frame. -#func _process(delta): -# pass +func _process(delta): + pass diff --git a/demo/project.godot b/demo/project.godot index 4068d6a..b909b75 100644 --- a/demo/project.godot +++ b/demo/project.godot @@ -6,29 +6,13 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 - -_global_script_classes=[ { -"base": "EditorVCSInterface", -"class": "GitPlugin", -"language": "NativeScript", -"path": "res://addons/godot-git-plugin/git_plugin.gdns" -} ] -_global_script_class_icons={ -"GitPlugin": "" -} +config_version=5 [application] -config/name="demo" -run/main_scene="res://demo.tscn" -config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [editor] -version_control/autoload_on_startup=true version_control/plugin_name="GitPlugin" - -[rendering] - -environment/default_environment="res://default_env.tres" +version_control/autoload_on_startup=true diff --git a/extension_api.ci.json b/extension_api.ci.json new file mode 100644 index 0000000..db2dcb6 --- /dev/null +++ b/extension_api.ci.json @@ -0,0 +1,255141 @@ +{ + "header": { + "version_major": 4, + "version_minor": 0, + "version_patch": 0, + "version_status": "alpha", + "version_build": "custom_build", + "version_full_name": "Godot Engine v4.0.alpha.custom_build" + }, + "builtin_class_sizes": [ + { + "build_configuration": "float_32", + "sizes": [ + { + "name": "Nil", + "size": 0 + }, + { + "name": "bool", + "size": 1 + }, + { + "name": "int", + "size": 8 + }, + { + "name": "float", + "size": 8 + }, + { + "name": "String", + "size": 4 + }, + { + "name": "Vector2", + "size": 8 + }, + { + "name": "Vector2i", + "size": 8 + }, + { + "name": "Rect2", + "size": 16 + }, + { + "name": "Rect2i", + "size": 16 + }, + { + "name": "Vector3", + "size": 12 + }, + { + "name": "Vector3i", + "size": 12 + }, + { + "name": "Transform2D", + "size": 24 + }, + { + "name": "Plane", + "size": 16 + }, + { + "name": "Quaternion", + "size": 16 + }, + { + "name": "AABB", + "size": 24 + }, + { + "name": "Basis", + "size": 36 + }, + { + "name": "Transform3D", + "size": 48 + }, + { + "name": "Color", + "size": 16 + }, + { + "name": "StringName", + "size": 4 + }, + { + "name": "NodePath", + "size": 4 + }, + { + "name": "RID", + "size": 8 + }, + { + "name": "Object", + "size": 4 + }, + { + "name": "Callable", + "size": 16 + }, + { + "name": "Signal", + "size": 16 + }, + { + "name": "Dictionary", + "size": 4 + }, + { + "name": "Array", + "size": 4 + }, + { + "name": "PackedByteArray", + "size": 8 + }, + { + "name": "PackedInt32Array", + "size": 8 + }, + { + "name": "PackedInt64Array", + "size": 8 + }, + { + "name": "PackedFloat32Array", + "size": 8 + }, + { + "name": "PackedFloat64Array", + "size": 8 + }, + { + "name": "PackedStringArray", + "size": 8 + }, + { + "name": "PackedVector2Array", + "size": 8 + }, + { + "name": "PackedVector3Array", + "size": 8 + }, + { + "name": "PackedColorArray", + "size": 8 + }, + { + "name": "Variant", + "size": 24 + } + ] + }, + { + "build_configuration": "float_64", + "sizes": [ + { + "name": "Nil", + "size": 0 + }, + { + "name": "bool", + "size": 1 + }, + { + "name": "int", + "size": 8 + }, + { + "name": "float", + "size": 8 + }, + { + "name": "String", + "size": 8 + }, + { + "name": "Vector2", + "size": 8 + }, + { + "name": "Vector2i", + "size": 8 + }, + { + "name": "Rect2", + "size": 16 + }, + { + "name": "Rect2i", + "size": 16 + }, + { + "name": "Vector3", + "size": 12 + }, + { + "name": "Vector3i", + "size": 12 + }, + { + "name": "Transform2D", + "size": 24 + }, + { + "name": "Plane", + "size": 16 + }, + { + "name": "Quaternion", + "size": 16 + }, + { + "name": "AABB", + "size": 24 + }, + { + "name": "Basis", + "size": 36 + }, + { + "name": "Transform3D", + "size": 48 + }, + { + "name": "Color", + "size": 16 + }, + { + "name": "StringName", + "size": 8 + }, + { + "name": "NodePath", + "size": 8 + }, + { + "name": "RID", + "size": 8 + }, + { + "name": "Object", + "size": 8 + }, + { + "name": "Callable", + "size": 16 + }, + { + "name": "Signal", + "size": 16 + }, + { + "name": "Dictionary", + "size": 8 + }, + { + "name": "Array", + "size": 8 + }, + { + "name": "PackedByteArray", + "size": 16 + }, + { + "name": "PackedInt32Array", + "size": 16 + }, + { + "name": "PackedInt64Array", + "size": 16 + }, + { + "name": "PackedFloat32Array", + "size": 16 + }, + { + "name": "PackedFloat64Array", + "size": 16 + }, + { + "name": "PackedStringArray", + "size": 16 + }, + { + "name": "PackedVector2Array", + "size": 16 + }, + { + "name": "PackedVector3Array", + "size": 16 + }, + { + "name": "PackedColorArray", + "size": 16 + }, + { + "name": "Variant", + "size": 24 + } + ] + }, + { + "build_configuration": "double_32", + "sizes": [ + { + "name": "Nil", + "size": 0 + }, + { + "name": "bool", + "size": 1 + }, + { + "name": "int", + "size": 8 + }, + { + "name": "float", + "size": 8 + }, + { + "name": "String", + "size": 4 + }, + { + "name": "Vector2", + "size": 16 + }, + { + "name": "Vector2i", + "size": 8 + }, + { + "name": "Rect2", + "size": 32 + }, + { + "name": "Rect2i", + "size": 16 + }, + { + "name": "Vector3", + "size": 24 + }, + { + "name": "Vector3i", + "size": 12 + }, + { + "name": "Transform2D", + "size": 48 + }, + { + "name": "Plane", + "size": 32 + }, + { + "name": "Quaternion", + "size": 32 + }, + { + "name": "AABB", + "size": 48 + }, + { + "name": "Basis", + "size": 72 + }, + { + "name": "Transform3D", + "size": 96 + }, + { + "name": "Color", + "size": 16 + }, + { + "name": "StringName", + "size": 4 + }, + { + "name": "NodePath", + "size": 4 + }, + { + "name": "RID", + "size": 8 + }, + { + "name": "Object", + "size": 4 + }, + { + "name": "Callable", + "size": 16 + }, + { + "name": "Signal", + "size": 16 + }, + { + "name": "Dictionary", + "size": 4 + }, + { + "name": "Array", + "size": 4 + }, + { + "name": "PackedByteArray", + "size": 8 + }, + { + "name": "PackedInt32Array", + "size": 8 + }, + { + "name": "PackedInt64Array", + "size": 8 + }, + { + "name": "PackedFloat32Array", + "size": 8 + }, + { + "name": "PackedFloat64Array", + "size": 8 + }, + { + "name": "PackedStringArray", + "size": 8 + }, + { + "name": "PackedVector2Array", + "size": 8 + }, + { + "name": "PackedVector3Array", + "size": 8 + }, + { + "name": "PackedColorArray", + "size": 8 + }, + { + "name": "Variant", + "size": 40 + } + ] + }, + { + "build_configuration": "double_64", + "sizes": [ + { + "name": "Nil", + "size": 0 + }, + { + "name": "bool", + "size": 1 + }, + { + "name": "int", + "size": 8 + }, + { + "name": "float", + "size": 8 + }, + { + "name": "String", + "size": 8 + }, + { + "name": "Vector2", + "size": 16 + }, + { + "name": "Vector2i", + "size": 8 + }, + { + "name": "Rect2", + "size": 32 + }, + { + "name": "Rect2i", + "size": 16 + }, + { + "name": "Vector3", + "size": 24 + }, + { + "name": "Vector3i", + "size": 12 + }, + { + "name": "Transform2D", + "size": 48 + }, + { + "name": "Plane", + "size": 32 + }, + { + "name": "Quaternion", + "size": 32 + }, + { + "name": "AABB", + "size": 48 + }, + { + "name": "Basis", + "size": 72 + }, + { + "name": "Transform3D", + "size": 96 + }, + { + "name": "Color", + "size": 16 + }, + { + "name": "StringName", + "size": 8 + }, + { + "name": "NodePath", + "size": 8 + }, + { + "name": "RID", + "size": 8 + }, + { + "name": "Object", + "size": 8 + }, + { + "name": "Callable", + "size": 16 + }, + { + "name": "Signal", + "size": 16 + }, + { + "name": "Dictionary", + "size": 8 + }, + { + "name": "Array", + "size": 8 + }, + { + "name": "PackedByteArray", + "size": 16 + }, + { + "name": "PackedInt32Array", + "size": 16 + }, + { + "name": "PackedInt64Array", + "size": 16 + }, + { + "name": "PackedFloat32Array", + "size": 16 + }, + { + "name": "PackedFloat64Array", + "size": 16 + }, + { + "name": "PackedStringArray", + "size": 16 + }, + { + "name": "PackedVector2Array", + "size": 16 + }, + { + "name": "PackedVector3Array", + "size": 16 + }, + { + "name": "PackedColorArray", + "size": 16 + }, + { + "name": "Variant", + "size": 40 + } + ] + } + ], + "builtin_class_member_offsets": [ + { + "build_configuration": "float_32", + "classes": [ + { + "name": "Vector2", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + } + ] + }, + { + "name": "Vector2i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + } + ] + }, + { + "name": "Rect2", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 16 + } + ] + }, + { + "name": "Rect2i", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 8 + } + ] + }, + { + "name": "Vector3", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + } + ] + }, + { + "name": "Vector3i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + } + ] + }, + { + "name": "Transform2D", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "origin", + "offset": 16 + } + ] + }, + { + "name": "Plane", + "members": [ + { + "member": "normal", + "offset": 0 + }, + { + "member": "d", + "offset": 12 + } + ] + }, + { + "name": "Quaternion", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, + { + "name": "AABB", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 12 + } + ] + }, + { + "name": "Basis", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 12 + }, + { + "member": "z", + "offset": 24 + } + ] + }, + { + "name": "Transform3D", + "members": [ + { + "member": "basis", + "offset": 0 + }, + { + "member": "origin", + "offset": 36 + } + ] + }, + { + "name": "Color", + "members": [ + { + "member": "r", + "offset": 0 + }, + { + "member": "g", + "offset": 4 + }, + { + "member": "b", + "offset": 8 + }, + { + "member": "a", + "offset": 12 + } + ] + } + ] + }, + { + "build_configuration": "float_64", + "classes": [ + { + "name": "Vector2", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + } + ] + }, + { + "name": "Vector2i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + } + ] + }, + { + "name": "Rect2", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 8 + } + ] + }, + { + "name": "Rect2i", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 8 + } + ] + }, + { + "name": "Vector3", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + } + ] + }, + { + "name": "Vector3i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + } + ] + }, + { + "name": "Transform2D", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "origin", + "offset": 16 + } + ] + }, + { + "name": "Plane", + "members": [ + { + "member": "normal", + "offset": 0 + }, + { + "member": "d", + "offset": 12 + } + ] + }, + { + "name": "Quaternion", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, + { + "name": "AABB", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 12 + } + ] + }, + { + "name": "Basis", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 12 + }, + { + "member": "z", + "offset": 24 + } + ] + }, + { + "name": "Transform3D", + "members": [ + { + "member": "basis", + "offset": 0 + }, + { + "member": "origin", + "offset": 36 + } + ] + }, + { + "name": "Color", + "members": [ + { + "member": "r", + "offset": 0 + }, + { + "member": "g", + "offset": 4 + }, + { + "member": "b", + "offset": 8 + }, + { + "member": "a", + "offset": 12 + } + ] + } + ] + }, + { + "build_configuration": "double_32", + "classes": [ + { + "name": "Vector2", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + } + ] + }, + { + "name": "Vector2i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + } + ] + }, + { + "name": "Rect2", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 16 + } + ] + }, + { + "name": "Rect2i", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 8 + } + ] + }, + { + "name": "Vector3", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "z", + "offset": 16 + } + ] + }, + { + "name": "Vector3i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + } + ] + }, + { + "name": "Transform2D", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 16 + }, + { + "member": "origin", + "offset": 32 + } + ] + }, + { + "name": "Plane", + "members": [ + { + "member": "normal", + "offset": 0 + }, + { + "member": "d", + "offset": 24 + } + ] + }, + { + "name": "Quaternion", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "z", + "offset": 16 + }, + { + "member": "w", + "offset": 24 + } + ] + }, + { + "name": "AABB", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 24 + } + ] + }, + { + "name": "Basis", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 24 + }, + { + "member": "z", + "offset": 48 + } + ] + }, + { + "name": "Transform3D", + "members": [ + { + "member": "basis", + "offset": 0 + }, + { + "member": "origin", + "offset": 72 + } + ] + }, + { + "name": "Color", + "members": [ + { + "member": "r", + "offset": 0 + }, + { + "member": "g", + "offset": 4 + }, + { + "member": "b", + "offset": 8 + }, + { + "member": "a", + "offset": 12 + } + ] + } + ] + }, + { + "build_configuration": "double_64", + "classes": [ + { + "name": "Vector2", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + } + ] + }, + { + "name": "Vector2i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + } + ] + }, + { + "name": "Rect2", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 16 + } + ] + }, + { + "name": "Rect2i", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 8 + } + ] + }, + { + "name": "Vector3", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "z", + "offset": 16 + } + ] + }, + { + "name": "Vector3i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + } + ] + }, + { + "name": "Transform2D", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 16 + }, + { + "member": "origin", + "offset": 32 + } + ] + }, + { + "name": "Plane", + "members": [ + { + "member": "normal", + "offset": 0 + }, + { + "member": "d", + "offset": 24 + } + ] + }, + { + "name": "Quaternion", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "z", + "offset": 16 + }, + { + "member": "w", + "offset": 24 + } + ] + }, + { + "name": "AABB", + "members": [ + { + "member": "position", + "offset": 0 + }, + { + "member": "size", + "offset": 24 + } + ] + }, + { + "name": "Basis", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 24 + }, + { + "member": "z", + "offset": 48 + } + ] + }, + { + "name": "Transform3D", + "members": [ + { + "member": "basis", + "offset": 0 + }, + { + "member": "origin", + "offset": 72 + } + ] + }, + { + "name": "Color", + "members": [ + { + "member": "r", + "offset": 0 + }, + { + "member": "g", + "offset": 4 + }, + { + "member": "b", + "offset": 8 + }, + { + "member": "a", + "offset": 12 + } + ] + } + ] + } + ], + "global_constants": [ + + ], + "global_enums": [ + { + "name": "Side", + "values": [ + { + "name": "SIDE_LEFT", + "value": 0 + }, + { + "name": "SIDE_TOP", + "value": 1 + }, + { + "name": "SIDE_RIGHT", + "value": 2 + }, + { + "name": "SIDE_BOTTOM", + "value": 3 + } + ] + }, + { + "name": "Corner", + "values": [ + { + "name": "CORNER_TOP_LEFT", + "value": 0 + }, + { + "name": "CORNER_TOP_RIGHT", + "value": 1 + }, + { + "name": "CORNER_BOTTOM_RIGHT", + "value": 2 + }, + { + "name": "CORNER_BOTTOM_LEFT", + "value": 3 + } + ] + }, + { + "name": "Orientation", + "values": [ + { + "name": "VERTICAL", + "value": 1 + }, + { + "name": "HORIZONTAL", + "value": 0 + } + ] + }, + { + "name": "ClockDirection", + "values": [ + { + "name": "CLOCKWISE", + "value": 0 + }, + { + "name": "COUNTERCLOCKWISE", + "value": 1 + } + ] + }, + { + "name": "HorizontalAlignment", + "values": [ + { + "name": "HORIZONTAL_ALIGNMENT_LEFT", + "value": 0 + }, + { + "name": "HORIZONTAL_ALIGNMENT_CENTER", + "value": 1 + }, + { + "name": "HORIZONTAL_ALIGNMENT_RIGHT", + "value": 2 + }, + { + "name": "HORIZONTAL_ALIGNMENT_FILL", + "value": 3 + } + ] + }, + { + "name": "VerticalAlignment", + "values": [ + { + "name": "VERTICAL_ALIGNMENT_TOP", + "value": 0 + }, + { + "name": "VERTICAL_ALIGNMENT_CENTER", + "value": 1 + }, + { + "name": "VERTICAL_ALIGNMENT_BOTTOM", + "value": 2 + }, + { + "name": "VERTICAL_ALIGNMENT_FILL", + "value": 3 + } + ] + }, + { + "name": "InlineAlignment", + "values": [ + { + "name": "INLINE_ALIGNMENT_TOP_TO", + "value": 0 + }, + { + "name": "INLINE_ALIGNMENT_CENTER_TO", + "value": 1 + }, + { + "name": "INLINE_ALIGNMENT_BOTTOM_TO", + "value": 2 + }, + { + "name": "INLINE_ALIGNMENT_TO_TOP", + "value": 0 + }, + { + "name": "INLINE_ALIGNMENT_TO_CENTER", + "value": 4 + }, + { + "name": "INLINE_ALIGNMENT_TO_BASELINE", + "value": 8 + }, + { + "name": "INLINE_ALIGNMENT_TO_BOTTOM", + "value": 12 + }, + { + "name": "INLINE_ALIGNMENT_TOP", + "value": 0 + }, + { + "name": "INLINE_ALIGNMENT_CENTER", + "value": 5 + }, + { + "name": "INLINE_ALIGNMENT_BOTTOM", + "value": 14 + }, + { + "name": "INLINE_ALIGNMENT_IMAGE_MASK", + "value": 3 + }, + { + "name": "INLINE_ALIGNMENT_TEXT_MASK", + "value": 12 + } + ] + }, + { + "name": "Key", + "values": [ + { + "name": "KEY_NONE", + "value": 0 + }, + { + "name": "KEY_SPECIAL", + "value": 16777216 + }, + { + "name": "KEY_ESCAPE", + "value": 16777217 + }, + { + "name": "KEY_TAB", + "value": 16777218 + }, + { + "name": "KEY_BACKTAB", + "value": 16777219 + }, + { + "name": "KEY_BACKSPACE", + "value": 16777220 + }, + { + "name": "KEY_ENTER", + "value": 16777221 + }, + { + "name": "KEY_KP_ENTER", + "value": 16777222 + }, + { + "name": "KEY_INSERT", + "value": 16777223 + }, + { + "name": "KEY_DELETE", + "value": 16777224 + }, + { + "name": "KEY_PAUSE", + "value": 16777225 + }, + { + "name": "KEY_PRINT", + "value": 16777226 + }, + { + "name": "KEY_SYSREQ", + "value": 16777227 + }, + { + "name": "KEY_CLEAR", + "value": 16777228 + }, + { + "name": "KEY_HOME", + "value": 16777229 + }, + { + "name": "KEY_END", + "value": 16777230 + }, + { + "name": "KEY_LEFT", + "value": 16777231 + }, + { + "name": "KEY_UP", + "value": 16777232 + }, + { + "name": "KEY_RIGHT", + "value": 16777233 + }, + { + "name": "KEY_DOWN", + "value": 16777234 + }, + { + "name": "KEY_PAGEUP", + "value": 16777235 + }, + { + "name": "KEY_PAGEDOWN", + "value": 16777236 + }, + { + "name": "KEY_SHIFT", + "value": 16777237 + }, + { + "name": "KEY_CTRL", + "value": 16777238 + }, + { + "name": "KEY_META", + "value": 16777239 + }, + { + "name": "KEY_ALT", + "value": 16777240 + }, + { + "name": "KEY_CAPSLOCK", + "value": 16777241 + }, + { + "name": "KEY_NUMLOCK", + "value": 16777242 + }, + { + "name": "KEY_SCROLLLOCK", + "value": 16777243 + }, + { + "name": "KEY_F1", + "value": 16777244 + }, + { + "name": "KEY_F2", + "value": 16777245 + }, + { + "name": "KEY_F3", + "value": 16777246 + }, + { + "name": "KEY_F4", + "value": 16777247 + }, + { + "name": "KEY_F5", + "value": 16777248 + }, + { + "name": "KEY_F6", + "value": 16777249 + }, + { + "name": "KEY_F7", + "value": 16777250 + }, + { + "name": "KEY_F8", + "value": 16777251 + }, + { + "name": "KEY_F9", + "value": 16777252 + }, + { + "name": "KEY_F10", + "value": 16777253 + }, + { + "name": "KEY_F11", + "value": 16777254 + }, + { + "name": "KEY_F12", + "value": 16777255 + }, + { + "name": "KEY_F13", + "value": 16777256 + }, + { + "name": "KEY_F14", + "value": 16777257 + }, + { + "name": "KEY_F15", + "value": 16777258 + }, + { + "name": "KEY_F16", + "value": 16777259 + }, + { + "name": "KEY_KP_MULTIPLY", + "value": 16777345 + }, + { + "name": "KEY_KP_DIVIDE", + "value": 16777346 + }, + { + "name": "KEY_KP_SUBTRACT", + "value": 16777347 + }, + { + "name": "KEY_KP_PERIOD", + "value": 16777348 + }, + { + "name": "KEY_KP_ADD", + "value": 16777349 + }, + { + "name": "KEY_KP_0", + "value": 16777350 + }, + { + "name": "KEY_KP_1", + "value": 16777351 + }, + { + "name": "KEY_KP_2", + "value": 16777352 + }, + { + "name": "KEY_KP_3", + "value": 16777353 + }, + { + "name": "KEY_KP_4", + "value": 16777354 + }, + { + "name": "KEY_KP_5", + "value": 16777355 + }, + { + "name": "KEY_KP_6", + "value": 16777356 + }, + { + "name": "KEY_KP_7", + "value": 16777357 + }, + { + "name": "KEY_KP_8", + "value": 16777358 + }, + { + "name": "KEY_KP_9", + "value": 16777359 + }, + { + "name": "KEY_SUPER_L", + "value": 16777260 + }, + { + "name": "KEY_SUPER_R", + "value": 16777261 + }, + { + "name": "KEY_MENU", + "value": 16777262 + }, + { + "name": "KEY_HYPER_L", + "value": 16777263 + }, + { + "name": "KEY_HYPER_R", + "value": 16777264 + }, + { + "name": "KEY_HELP", + "value": 16777265 + }, + { + "name": "KEY_DIRECTION_L", + "value": 16777266 + }, + { + "name": "KEY_DIRECTION_R", + "value": 16777267 + }, + { + "name": "KEY_BACK", + "value": 16777280 + }, + { + "name": "KEY_FORWARD", + "value": 16777281 + }, + { + "name": "KEY_STOP", + "value": 16777282 + }, + { + "name": "KEY_REFRESH", + "value": 16777283 + }, + { + "name": "KEY_VOLUMEDOWN", + "value": 16777284 + }, + { + "name": "KEY_VOLUMEMUTE", + "value": 16777285 + }, + { + "name": "KEY_VOLUMEUP", + "value": 16777286 + }, + { + "name": "KEY_BASSBOOST", + "value": 16777287 + }, + { + "name": "KEY_BASSUP", + "value": 16777288 + }, + { + "name": "KEY_BASSDOWN", + "value": 16777289 + }, + { + "name": "KEY_TREBLEUP", + "value": 16777290 + }, + { + "name": "KEY_TREBLEDOWN", + "value": 16777291 + }, + { + "name": "KEY_MEDIAPLAY", + "value": 16777292 + }, + { + "name": "KEY_MEDIASTOP", + "value": 16777293 + }, + { + "name": "KEY_MEDIAPREVIOUS", + "value": 16777294 + }, + { + "name": "KEY_MEDIANEXT", + "value": 16777295 + }, + { + "name": "KEY_MEDIARECORD", + "value": 16777296 + }, + { + "name": "KEY_HOMEPAGE", + "value": 16777297 + }, + { + "name": "KEY_FAVORITES", + "value": 16777298 + }, + { + "name": "KEY_SEARCH", + "value": 16777299 + }, + { + "name": "KEY_STANDBY", + "value": 16777300 + }, + { + "name": "KEY_OPENURL", + "value": 16777301 + }, + { + "name": "KEY_LAUNCHMAIL", + "value": 16777302 + }, + { + "name": "KEY_LAUNCHMEDIA", + "value": 16777303 + }, + { + "name": "KEY_LAUNCH0", + "value": 16777304 + }, + { + "name": "KEY_LAUNCH1", + "value": 16777305 + }, + { + "name": "KEY_LAUNCH2", + "value": 16777306 + }, + { + "name": "KEY_LAUNCH3", + "value": 16777307 + }, + { + "name": "KEY_LAUNCH4", + "value": 16777308 + }, + { + "name": "KEY_LAUNCH5", + "value": 16777309 + }, + { + "name": "KEY_LAUNCH6", + "value": 16777310 + }, + { + "name": "KEY_LAUNCH7", + "value": 16777311 + }, + { + "name": "KEY_LAUNCH8", + "value": 16777312 + }, + { + "name": "KEY_LAUNCH9", + "value": 16777313 + }, + { + "name": "KEY_LAUNCHA", + "value": 16777314 + }, + { + "name": "KEY_LAUNCHB", + "value": 16777315 + }, + { + "name": "KEY_LAUNCHC", + "value": 16777316 + }, + { + "name": "KEY_LAUNCHD", + "value": 16777317 + }, + { + "name": "KEY_LAUNCHE", + "value": 16777318 + }, + { + "name": "KEY_LAUNCHF", + "value": 16777319 + }, + { + "name": "KEY_UNKNOWN", + "value": 33554431 + }, + { + "name": "KEY_SPACE", + "value": 32 + }, + { + "name": "KEY_EXCLAM", + "value": 33 + }, + { + "name": "KEY_QUOTEDBL", + "value": 34 + }, + { + "name": "KEY_NUMBERSIGN", + "value": 35 + }, + { + "name": "KEY_DOLLAR", + "value": 36 + }, + { + "name": "KEY_PERCENT", + "value": 37 + }, + { + "name": "KEY_AMPERSAND", + "value": 38 + }, + { + "name": "KEY_APOSTROPHE", + "value": 39 + }, + { + "name": "KEY_PARENLEFT", + "value": 40 + }, + { + "name": "KEY_PARENRIGHT", + "value": 41 + }, + { + "name": "KEY_ASTERISK", + "value": 42 + }, + { + "name": "KEY_PLUS", + "value": 43 + }, + { + "name": "KEY_COMMA", + "value": 44 + }, + { + "name": "KEY_MINUS", + "value": 45 + }, + { + "name": "KEY_PERIOD", + "value": 46 + }, + { + "name": "KEY_SLASH", + "value": 47 + }, + { + "name": "KEY_0", + "value": 48 + }, + { + "name": "KEY_1", + "value": 49 + }, + { + "name": "KEY_2", + "value": 50 + }, + { + "name": "KEY_3", + "value": 51 + }, + { + "name": "KEY_4", + "value": 52 + }, + { + "name": "KEY_5", + "value": 53 + }, + { + "name": "KEY_6", + "value": 54 + }, + { + "name": "KEY_7", + "value": 55 + }, + { + "name": "KEY_8", + "value": 56 + }, + { + "name": "KEY_9", + "value": 57 + }, + { + "name": "KEY_COLON", + "value": 58 + }, + { + "name": "KEY_SEMICOLON", + "value": 59 + }, + { + "name": "KEY_LESS", + "value": 60 + }, + { + "name": "KEY_EQUAL", + "value": 61 + }, + { + "name": "KEY_GREATER", + "value": 62 + }, + { + "name": "KEY_QUESTION", + "value": 63 + }, + { + "name": "KEY_AT", + "value": 64 + }, + { + "name": "KEY_A", + "value": 65 + }, + { + "name": "KEY_B", + "value": 66 + }, + { + "name": "KEY_C", + "value": 67 + }, + { + "name": "KEY_D", + "value": 68 + }, + { + "name": "KEY_E", + "value": 69 + }, + { + "name": "KEY_F", + "value": 70 + }, + { + "name": "KEY_G", + "value": 71 + }, + { + "name": "KEY_H", + "value": 72 + }, + { + "name": "KEY_I", + "value": 73 + }, + { + "name": "KEY_J", + "value": 74 + }, + { + "name": "KEY_K", + "value": 75 + }, + { + "name": "KEY_L", + "value": 76 + }, + { + "name": "KEY_M", + "value": 77 + }, + { + "name": "KEY_N", + "value": 78 + }, + { + "name": "KEY_O", + "value": 79 + }, + { + "name": "KEY_P", + "value": 80 + }, + { + "name": "KEY_Q", + "value": 81 + }, + { + "name": "KEY_R", + "value": 82 + }, + { + "name": "KEY_S", + "value": 83 + }, + { + "name": "KEY_T", + "value": 84 + }, + { + "name": "KEY_U", + "value": 85 + }, + { + "name": "KEY_V", + "value": 86 + }, + { + "name": "KEY_W", + "value": 87 + }, + { + "name": "KEY_X", + "value": 88 + }, + { + "name": "KEY_Y", + "value": 89 + }, + { + "name": "KEY_Z", + "value": 90 + }, + { + "name": "KEY_BRACKETLEFT", + "value": 91 + }, + { + "name": "KEY_BACKSLASH", + "value": 92 + }, + { + "name": "KEY_BRACKETRIGHT", + "value": 93 + }, + { + "name": "KEY_ASCIICIRCUM", + "value": 94 + }, + { + "name": "KEY_UNDERSCORE", + "value": 95 + }, + { + "name": "KEY_QUOTELEFT", + "value": 96 + }, + { + "name": "KEY_BRACELEFT", + "value": 123 + }, + { + "name": "KEY_BAR", + "value": 124 + }, + { + "name": "KEY_BRACERIGHT", + "value": 125 + }, + { + "name": "KEY_ASCIITILDE", + "value": 126 + }, + { + "name": "KEY_NOBREAKSPACE", + "value": 160 + }, + { + "name": "KEY_EXCLAMDOWN", + "value": 161 + }, + { + "name": "KEY_CENT", + "value": 162 + }, + { + "name": "KEY_STERLING", + "value": 163 + }, + { + "name": "KEY_CURRENCY", + "value": 164 + }, + { + "name": "KEY_YEN", + "value": 165 + }, + { + "name": "KEY_BROKENBAR", + "value": 166 + }, + { + "name": "KEY_SECTION", + "value": 167 + }, + { + "name": "KEY_DIAERESIS", + "value": 168 + }, + { + "name": "KEY_COPYRIGHT", + "value": 169 + }, + { + "name": "KEY_ORDFEMININE", + "value": 170 + }, + { + "name": "KEY_GUILLEMOTLEFT", + "value": 171 + }, + { + "name": "KEY_NOTSIGN", + "value": 172 + }, + { + "name": "KEY_HYPHEN", + "value": 173 + }, + { + "name": "KEY_REGISTERED", + "value": 174 + }, + { + "name": "KEY_MACRON", + "value": 175 + }, + { + "name": "KEY_DEGREE", + "value": 176 + }, + { + "name": "KEY_PLUSMINUS", + "value": 177 + }, + { + "name": "KEY_TWOSUPERIOR", + "value": 178 + }, + { + "name": "KEY_THREESUPERIOR", + "value": 179 + }, + { + "name": "KEY_ACUTE", + "value": 180 + }, + { + "name": "KEY_MU", + "value": 181 + }, + { + "name": "KEY_PARAGRAPH", + "value": 182 + }, + { + "name": "KEY_PERIODCENTERED", + "value": 183 + }, + { + "name": "KEY_CEDILLA", + "value": 184 + }, + { + "name": "KEY_ONESUPERIOR", + "value": 185 + }, + { + "name": "KEY_MASCULINE", + "value": 186 + }, + { + "name": "KEY_GUILLEMOTRIGHT", + "value": 187 + }, + { + "name": "KEY_ONEQUARTER", + "value": 188 + }, + { + "name": "KEY_ONEHALF", + "value": 189 + }, + { + "name": "KEY_THREEQUARTERS", + "value": 190 + }, + { + "name": "KEY_QUESTIONDOWN", + "value": 191 + }, + { + "name": "KEY_AGRAVE", + "value": 192 + }, + { + "name": "KEY_AACUTE", + "value": 193 + }, + { + "name": "KEY_ACIRCUMFLEX", + "value": 194 + }, + { + "name": "KEY_ATILDE", + "value": 195 + }, + { + "name": "KEY_ADIAERESIS", + "value": 196 + }, + { + "name": "KEY_ARING", + "value": 197 + }, + { + "name": "KEY_AE", + "value": 198 + }, + { + "name": "KEY_CCEDILLA", + "value": 199 + }, + { + "name": "KEY_EGRAVE", + "value": 200 + }, + { + "name": "KEY_EACUTE", + "value": 201 + }, + { + "name": "KEY_ECIRCUMFLEX", + "value": 202 + }, + { + "name": "KEY_EDIAERESIS", + "value": 203 + }, + { + "name": "KEY_IGRAVE", + "value": 204 + }, + { + "name": "KEY_IACUTE", + "value": 205 + }, + { + "name": "KEY_ICIRCUMFLEX", + "value": 206 + }, + { + "name": "KEY_IDIAERESIS", + "value": 207 + }, + { + "name": "KEY_ETH", + "value": 208 + }, + { + "name": "KEY_NTILDE", + "value": 209 + }, + { + "name": "KEY_OGRAVE", + "value": 210 + }, + { + "name": "KEY_OACUTE", + "value": 211 + }, + { + "name": "KEY_OCIRCUMFLEX", + "value": 212 + }, + { + "name": "KEY_OTILDE", + "value": 213 + }, + { + "name": "KEY_ODIAERESIS", + "value": 214 + }, + { + "name": "KEY_MULTIPLY", + "value": 215 + }, + { + "name": "KEY_OOBLIQUE", + "value": 216 + }, + { + "name": "KEY_UGRAVE", + "value": 217 + }, + { + "name": "KEY_UACUTE", + "value": 218 + }, + { + "name": "KEY_UCIRCUMFLEX", + "value": 219 + }, + { + "name": "KEY_UDIAERESIS", + "value": 220 + }, + { + "name": "KEY_YACUTE", + "value": 221 + }, + { + "name": "KEY_THORN", + "value": 222 + }, + { + "name": "KEY_SSHARP", + "value": 223 + }, + { + "name": "KEY_DIVISION", + "value": 247 + }, + { + "name": "KEY_YDIAERESIS", + "value": 255 + } + ] + }, + { + "name": "KeyModifierMask", + "values": [ + { + "name": "KEY_CODE_MASK", + "value": 33554431 + }, + { + "name": "KEY_MODIFIER_MASK", + "value": 2130706432 + }, + { + "name": "KEY_MASK_SHIFT", + "value": 33554432 + }, + { + "name": "KEY_MASK_ALT", + "value": 67108864 + }, + { + "name": "KEY_MASK_META", + "value": 134217728 + }, + { + "name": "KEY_MASK_CTRL", + "value": 268435456 + }, + { + "name": "KEY_MASK_CMD", + "value": 268435456 + }, + { + "name": "KEY_MASK_KPAD", + "value": 536870912 + }, + { + "name": "KEY_MASK_GROUP_SWITCH", + "value": 1073741824 + } + ] + }, + { + "name": "MouseButton", + "values": [ + { + "name": "MOUSE_BUTTON_NONE", + "value": 0 + }, + { + "name": "MOUSE_BUTTON_LEFT", + "value": 1 + }, + { + "name": "MOUSE_BUTTON_RIGHT", + "value": 2 + }, + { + "name": "MOUSE_BUTTON_MIDDLE", + "value": 3 + }, + { + "name": "MOUSE_BUTTON_WHEEL_UP", + "value": 4 + }, + { + "name": "MOUSE_BUTTON_WHEEL_DOWN", + "value": 5 + }, + { + "name": "MOUSE_BUTTON_WHEEL_LEFT", + "value": 6 + }, + { + "name": "MOUSE_BUTTON_WHEEL_RIGHT", + "value": 7 + }, + { + "name": "MOUSE_BUTTON_XBUTTON1", + "value": 8 + }, + { + "name": "MOUSE_BUTTON_XBUTTON2", + "value": 9 + }, + { + "name": "MOUSE_BUTTON_MASK_LEFT", + "value": 1 + }, + { + "name": "MOUSE_BUTTON_MASK_RIGHT", + "value": 2 + }, + { + "name": "MOUSE_BUTTON_MASK_MIDDLE", + "value": 4 + }, + { + "name": "MOUSE_BUTTON_MASK_XBUTTON1", + "value": 128 + }, + { + "name": "MOUSE_BUTTON_MASK_XBUTTON2", + "value": 256 + } + ] + }, + { + "name": "JoyButton", + "values": [ + { + "name": "JOY_BUTTON_INVALID", + "value": -1 + }, + { + "name": "JOY_BUTTON_A", + "value": 0 + }, + { + "name": "JOY_BUTTON_B", + "value": 1 + }, + { + "name": "JOY_BUTTON_X", + "value": 2 + }, + { + "name": "JOY_BUTTON_Y", + "value": 3 + }, + { + "name": "JOY_BUTTON_BACK", + "value": 4 + }, + { + "name": "JOY_BUTTON_GUIDE", + "value": 5 + }, + { + "name": "JOY_BUTTON_START", + "value": 6 + }, + { + "name": "JOY_BUTTON_LEFT_STICK", + "value": 7 + }, + { + "name": "JOY_BUTTON_RIGHT_STICK", + "value": 8 + }, + { + "name": "JOY_BUTTON_LEFT_SHOULDER", + "value": 9 + }, + { + "name": "JOY_BUTTON_RIGHT_SHOULDER", + "value": 10 + }, + { + "name": "JOY_BUTTON_DPAD_UP", + "value": 11 + }, + { + "name": "JOY_BUTTON_DPAD_DOWN", + "value": 12 + }, + { + "name": "JOY_BUTTON_DPAD_LEFT", + "value": 13 + }, + { + "name": "JOY_BUTTON_DPAD_RIGHT", + "value": 14 + }, + { + "name": "JOY_BUTTON_MISC1", + "value": 15 + }, + { + "name": "JOY_BUTTON_PADDLE1", + "value": 16 + }, + { + "name": "JOY_BUTTON_PADDLE2", + "value": 17 + }, + { + "name": "JOY_BUTTON_PADDLE3", + "value": 18 + }, + { + "name": "JOY_BUTTON_PADDLE4", + "value": 19 + }, + { + "name": "JOY_BUTTON_TOUCHPAD", + "value": 20 + }, + { + "name": "JOY_BUTTON_SDL_MAX", + "value": 21 + }, + { + "name": "JOY_BUTTON_MAX", + "value": 128 + } + ] + }, + { + "name": "JoyAxis", + "values": [ + { + "name": "JOY_AXIS_INVALID", + "value": -1 + }, + { + "name": "JOY_AXIS_LEFT_X", + "value": 0 + }, + { + "name": "JOY_AXIS_LEFT_Y", + "value": 1 + }, + { + "name": "JOY_AXIS_RIGHT_X", + "value": 2 + }, + { + "name": "JOY_AXIS_RIGHT_Y", + "value": 3 + }, + { + "name": "JOY_AXIS_TRIGGER_LEFT", + "value": 4 + }, + { + "name": "JOY_AXIS_TRIGGER_RIGHT", + "value": 5 + }, + { + "name": "JOY_AXIS_SDL_MAX", + "value": 6 + }, + { + "name": "JOY_AXIS_MAX", + "value": 10 + } + ] + }, + { + "name": "MIDIMessage", + "values": [ + { + "name": "MIDI_MESSAGE_NONE", + "value": 0 + }, + { + "name": "MIDI_MESSAGE_NOTE_OFF", + "value": 8 + }, + { + "name": "MIDI_MESSAGE_NOTE_ON", + "value": 9 + }, + { + "name": "MIDI_MESSAGE_AFTERTOUCH", + "value": 10 + }, + { + "name": "MIDI_MESSAGE_CONTROL_CHANGE", + "value": 11 + }, + { + "name": "MIDI_MESSAGE_PROGRAM_CHANGE", + "value": 12 + }, + { + "name": "MIDI_MESSAGE_CHANNEL_PRESSURE", + "value": 13 + }, + { + "name": "MIDI_MESSAGE_PITCH_BEND", + "value": 14 + }, + { + "name": "MIDI_MESSAGE_SYSTEM_EXCLUSIVE", + "value": 240 + }, + { + "name": "MIDI_MESSAGE_QUARTER_FRAME", + "value": 241 + }, + { + "name": "MIDI_MESSAGE_SONG_POSITION_POINTER", + "value": 242 + }, + { + "name": "MIDI_MESSAGE_SONG_SELECT", + "value": 243 + }, + { + "name": "MIDI_MESSAGE_TUNE_REQUEST", + "value": 246 + }, + { + "name": "MIDI_MESSAGE_TIMING_CLOCK", + "value": 248 + }, + { + "name": "MIDI_MESSAGE_START", + "value": 250 + }, + { + "name": "MIDI_MESSAGE_CONTINUE", + "value": 251 + }, + { + "name": "MIDI_MESSAGE_STOP", + "value": 252 + }, + { + "name": "MIDI_MESSAGE_ACTIVE_SENSING", + "value": 254 + }, + { + "name": "MIDI_MESSAGE_SYSTEM_RESET", + "value": 255 + } + ] + }, + { + "name": "Error", + "values": [ + { + "name": "OK", + "value": 0 + }, + { + "name": "FAILED", + "value": 1 + }, + { + "name": "ERR_UNAVAILABLE", + "value": 2 + }, + { + "name": "ERR_UNCONFIGURED", + "value": 3 + }, + { + "name": "ERR_UNAUTHORIZED", + "value": 4 + }, + { + "name": "ERR_PARAMETER_RANGE_ERROR", + "value": 5 + }, + { + "name": "ERR_OUT_OF_MEMORY", + "value": 6 + }, + { + "name": "ERR_FILE_NOT_FOUND", + "value": 7 + }, + { + "name": "ERR_FILE_BAD_DRIVE", + "value": 8 + }, + { + "name": "ERR_FILE_BAD_PATH", + "value": 9 + }, + { + "name": "ERR_FILE_NO_PERMISSION", + "value": 10 + }, + { + "name": "ERR_FILE_ALREADY_IN_USE", + "value": 11 + }, + { + "name": "ERR_FILE_CANT_OPEN", + "value": 12 + }, + { + "name": "ERR_FILE_CANT_WRITE", + "value": 13 + }, + { + "name": "ERR_FILE_CANT_READ", + "value": 14 + }, + { + "name": "ERR_FILE_UNRECOGNIZED", + "value": 15 + }, + { + "name": "ERR_FILE_CORRUPT", + "value": 16 + }, + { + "name": "ERR_FILE_MISSING_DEPENDENCIES", + "value": 17 + }, + { + "name": "ERR_FILE_EOF", + "value": 18 + }, + { + "name": "ERR_CANT_OPEN", + "value": 19 + }, + { + "name": "ERR_CANT_CREATE", + "value": 20 + }, + { + "name": "ERR_QUERY_FAILED", + "value": 21 + }, + { + "name": "ERR_ALREADY_IN_USE", + "value": 22 + }, + { + "name": "ERR_LOCKED", + "value": 23 + }, + { + "name": "ERR_TIMEOUT", + "value": 24 + }, + { + "name": "ERR_CANT_CONNECT", + "value": 25 + }, + { + "name": "ERR_CANT_RESOLVE", + "value": 26 + }, + { + "name": "ERR_CONNECTION_ERROR", + "value": 27 + }, + { + "name": "ERR_CANT_ACQUIRE_RESOURCE", + "value": 28 + }, + { + "name": "ERR_CANT_FORK", + "value": 29 + }, + { + "name": "ERR_INVALID_DATA", + "value": 30 + }, + { + "name": "ERR_INVALID_PARAMETER", + "value": 31 + }, + { + "name": "ERR_ALREADY_EXISTS", + "value": 32 + }, + { + "name": "ERR_DOES_NOT_EXIST", + "value": 33 + }, + { + "name": "ERR_DATABASE_CANT_READ", + "value": 34 + }, + { + "name": "ERR_DATABASE_CANT_WRITE", + "value": 35 + }, + { + "name": "ERR_COMPILATION_FAILED", + "value": 36 + }, + { + "name": "ERR_METHOD_NOT_FOUND", + "value": 37 + }, + { + "name": "ERR_LINK_FAILED", + "value": 38 + }, + { + "name": "ERR_SCRIPT_FAILED", + "value": 39 + }, + { + "name": "ERR_CYCLIC_LINK", + "value": 40 + }, + { + "name": "ERR_INVALID_DECLARATION", + "value": 41 + }, + { + "name": "ERR_DUPLICATE_SYMBOL", + "value": 42 + }, + { + "name": "ERR_PARSE_ERROR", + "value": 43 + }, + { + "name": "ERR_BUSY", + "value": 44 + }, + { + "name": "ERR_SKIP", + "value": 45 + }, + { + "name": "ERR_HELP", + "value": 46 + }, + { + "name": "ERR_BUG", + "value": 47 + }, + { + "name": "ERR_PRINTER_ON_FIRE", + "value": 48 + } + ] + }, + { + "name": "PropertyHint", + "values": [ + { + "name": "PROPERTY_HINT_NONE", + "value": 0 + }, + { + "name": "PROPERTY_HINT_RANGE", + "value": 1 + }, + { + "name": "PROPERTY_HINT_ENUM", + "value": 2 + }, + { + "name": "PROPERTY_HINT_ENUM_SUGGESTION", + "value": 3 + }, + { + "name": "PROPERTY_HINT_EXP_EASING", + "value": 4 + }, + { + "name": "PROPERTY_HINT_LENGTH", + "value": 5 + }, + { + "name": "PROPERTY_HINT_KEY_ACCEL", + "value": 6 + }, + { + "name": "PROPERTY_HINT_FLAGS", + "value": 7 + }, + { + "name": "PROPERTY_HINT_LAYERS_2D_RENDER", + "value": 8 + }, + { + "name": "PROPERTY_HINT_LAYERS_2D_PHYSICS", + "value": 9 + }, + { + "name": "PROPERTY_HINT_LAYERS_2D_NAVIGATION", + "value": 10 + }, + { + "name": "PROPERTY_HINT_LAYERS_3D_RENDER", + "value": 11 + }, + { + "name": "PROPERTY_HINT_LAYERS_3D_PHYSICS", + "value": 12 + }, + { + "name": "PROPERTY_HINT_LAYERS_3D_NAVIGATION", + "value": 13 + }, + { + "name": "PROPERTY_HINT_FILE", + "value": 14 + }, + { + "name": "PROPERTY_HINT_DIR", + "value": 15 + }, + { + "name": "PROPERTY_HINT_GLOBAL_FILE", + "value": 16 + }, + { + "name": "PROPERTY_HINT_GLOBAL_DIR", + "value": 17 + }, + { + "name": "PROPERTY_HINT_RESOURCE_TYPE", + "value": 18 + }, + { + "name": "PROPERTY_HINT_MULTILINE_TEXT", + "value": 19 + }, + { + "name": "PROPERTY_HINT_PLACEHOLDER_TEXT", + "value": 20 + }, + { + "name": "PROPERTY_HINT_COLOR_NO_ALPHA", + "value": 21 + }, + { + "name": "PROPERTY_HINT_IMAGE_COMPRESS_LOSSY", + "value": 22 + }, + { + "name": "PROPERTY_HINT_IMAGE_COMPRESS_LOSSLESS", + "value": 23 + }, + { + "name": "PROPERTY_HINT_OBJECT_ID", + "value": 24 + }, + { + "name": "PROPERTY_HINT_TYPE_STRING", + "value": 25 + }, + { + "name": "PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE", + "value": 26 + }, + { + "name": "PROPERTY_HINT_METHOD_OF_VARIANT_TYPE", + "value": 27 + }, + { + "name": "PROPERTY_HINT_METHOD_OF_BASE_TYPE", + "value": 28 + }, + { + "name": "PROPERTY_HINT_METHOD_OF_INSTANCE", + "value": 29 + }, + { + "name": "PROPERTY_HINT_METHOD_OF_SCRIPT", + "value": 30 + }, + { + "name": "PROPERTY_HINT_PROPERTY_OF_VARIANT_TYPE", + "value": 31 + }, + { + "name": "PROPERTY_HINT_PROPERTY_OF_BASE_TYPE", + "value": 32 + }, + { + "name": "PROPERTY_HINT_PROPERTY_OF_INSTANCE", + "value": 33 + }, + { + "name": "PROPERTY_HINT_PROPERTY_OF_SCRIPT", + "value": 34 + }, + { + "name": "PROPERTY_HINT_OBJECT_TOO_BIG", + "value": 35 + }, + { + "name": "PROPERTY_HINT_NODE_PATH_VALID_TYPES", + "value": 36 + }, + { + "name": "PROPERTY_HINT_SAVE_FILE", + "value": 37 + }, + { + "name": "PROPERTY_HINT_INT_IS_OBJECTID", + "value": 38 + }, + { + "name": "PROPERTY_HINT_INT_IS_POINTER", + "value": 40 + }, + { + "name": "PROPERTY_HINT_ARRAY_TYPE", + "value": 39 + }, + { + "name": "PROPERTY_HINT_LOCALE_ID", + "value": 41 + }, + { + "name": "PROPERTY_HINT_LOCALIZABLE_STRING", + "value": 42 + }, + { + "name": "PROPERTY_HINT_MAX", + "value": 43 + } + ] + }, + { + "name": "PropertyUsageFlags", + "values": [ + { + "name": "PROPERTY_USAGE_NONE", + "value": 0 + }, + { + "name": "PROPERTY_USAGE_STORAGE", + "value": 1 + }, + { + "name": "PROPERTY_USAGE_EDITOR", + "value": 2 + }, + { + "name": "PROPERTY_USAGE_NETWORK", + "value": 4 + }, + { + "name": "PROPERTY_USAGE_EDITOR_HELPER", + "value": 8 + }, + { + "name": "PROPERTY_USAGE_CHECKABLE", + "value": 16 + }, + { + "name": "PROPERTY_USAGE_CHECKED", + "value": 32 + }, + { + "name": "PROPERTY_USAGE_INTERNATIONALIZED", + "value": 64 + }, + { + "name": "PROPERTY_USAGE_GROUP", + "value": 128 + }, + { + "name": "PROPERTY_USAGE_CATEGORY", + "value": 256 + }, + { + "name": "PROPERTY_USAGE_SUBGROUP", + "value": 512 + }, + { + "name": "PROPERTY_USAGE_NO_INSTANCE_STATE", + "value": 2048 + }, + { + "name": "PROPERTY_USAGE_RESTART_IF_CHANGED", + "value": 4096 + }, + { + "name": "PROPERTY_USAGE_SCRIPT_VARIABLE", + "value": 8192 + }, + { + "name": "PROPERTY_USAGE_STORE_IF_NULL", + "value": 16384 + }, + { + "name": "PROPERTY_USAGE_ANIMATE_AS_TRIGGER", + "value": 32768 + }, + { + "name": "PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED", + "value": 65536 + }, + { + "name": "PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE", + "value": 131072 + }, + { + "name": "PROPERTY_USAGE_CLASS_IS_ENUM", + "value": 262144 + }, + { + "name": "PROPERTY_USAGE_NIL_IS_VARIANT", + "value": 524288 + }, + { + "name": "PROPERTY_USAGE_INTERNAL", + "value": 1048576 + }, + { + "name": "PROPERTY_USAGE_DO_NOT_SHARE_ON_DUPLICATE", + "value": 2097152 + }, + { + "name": "PROPERTY_USAGE_HIGH_END_GFX", + "value": 4194304 + }, + { + "name": "PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT", + "value": 8388608 + }, + { + "name": "PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT", + "value": 16777216 + }, + { + "name": "PROPERTY_USAGE_KEYING_INCREMENTS", + "value": 33554432 + }, + { + "name": "PROPERTY_USAGE_DEFERRED_SET_RESOURCE", + "value": 67108864 + }, + { + "name": "PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT", + "value": 134217728 + }, + { + "name": "PROPERTY_USAGE_EDITOR_BASIC_SETTING", + "value": 268435456 + }, + { + "name": "PROPERTY_USAGE_ARRAY", + "value": 1073741824 + }, + { + "name": "PROPERTY_USAGE_DEFAULT", + "value": 7 + }, + { + "name": "PROPERTY_USAGE_DEFAULT_INTL", + "value": 71 + }, + { + "name": "PROPERTY_USAGE_NO_EDITOR", + "value": 5 + } + ] + }, + { + "name": "MethodFlags", + "values": [ + { + "name": "METHOD_FLAG_NORMAL", + "value": 1 + }, + { + "name": "METHOD_FLAG_EDITOR", + "value": 2 + }, + { + "name": "METHOD_FLAG_NOSCRIPT", + "value": 4 + }, + { + "name": "METHOD_FLAG_CONST", + "value": 8 + }, + { + "name": "METHOD_FLAG_REVERSE", + "value": 16 + }, + { + "name": "METHOD_FLAG_VIRTUAL", + "value": 32 + }, + { + "name": "METHOD_FLAG_FROM_SCRIPT", + "value": 64 + }, + { + "name": "METHOD_FLAG_VARARG", + "value": 128 + }, + { + "name": "METHOD_FLAG_STATIC", + "value": 256 + }, + { + "name": "METHOD_FLAG_OBJECT_CORE", + "value": 512 + }, + { + "name": "METHOD_FLAGS_DEFAULT", + "value": 1 + } + ] + }, + { + "name": "RPCMode", + "values": [ + { + "name": "RPC_MODE_DISABLED", + "value": 0 + }, + { + "name": "RPC_MODE_ANY_PEER", + "value": 1 + }, + { + "name": "RPC_MODE_AUTHORITY", + "value": 2 + } + ] + }, + { + "name": "TransferMode", + "values": [ + { + "name": "TRANSFER_MODE_UNRELIABLE", + "value": 0 + }, + { + "name": "TRANSFER_MODE_UNRELIABLE_ORDERED", + "value": 1 + }, + { + "name": "TRANSFER_MODE_RELIABLE", + "value": 2 + } + ] + }, + { + "name": "Variant.Type", + "values": [ + { + "name": "TYPE_NIL", + "value": 0 + }, + { + "name": "TYPE_BOOL", + "value": 1 + }, + { + "name": "TYPE_INT", + "value": 2 + }, + { + "name": "TYPE_FLOAT", + "value": 3 + }, + { + "name": "TYPE_STRING", + "value": 4 + }, + { + "name": "TYPE_VECTOR2", + "value": 5 + }, + { + "name": "TYPE_VECTOR2I", + "value": 6 + }, + { + "name": "TYPE_RECT2", + "value": 7 + }, + { + "name": "TYPE_RECT2I", + "value": 8 + }, + { + "name": "TYPE_VECTOR3", + "value": 9 + }, + { + "name": "TYPE_VECTOR3I", + "value": 10 + }, + { + "name": "TYPE_TRANSFORM2D", + "value": 11 + }, + { + "name": "TYPE_PLANE", + "value": 12 + }, + { + "name": "TYPE_QUATERNION", + "value": 13 + }, + { + "name": "TYPE_AABB", + "value": 14 + }, + { + "name": "TYPE_BASIS", + "value": 15 + }, + { + "name": "TYPE_TRANSFORM3D", + "value": 16 + }, + { + "name": "TYPE_COLOR", + "value": 17 + }, + { + "name": "TYPE_STRING_NAME", + "value": 18 + }, + { + "name": "TYPE_NODE_PATH", + "value": 19 + }, + { + "name": "TYPE_RID", + "value": 20 + }, + { + "name": "TYPE_OBJECT", + "value": 21 + }, + { + "name": "TYPE_CALLABLE", + "value": 22 + }, + { + "name": "TYPE_SIGNAL", + "value": 23 + }, + { + "name": "TYPE_DICTIONARY", + "value": 24 + }, + { + "name": "TYPE_ARRAY", + "value": 25 + }, + { + "name": "TYPE_PACKED_BYTE_ARRAY", + "value": 26 + }, + { + "name": "TYPE_PACKED_INT32_ARRAY", + "value": 27 + }, + { + "name": "TYPE_PACKED_INT64_ARRAY", + "value": 28 + }, + { + "name": "TYPE_PACKED_FLOAT32_ARRAY", + "value": 29 + }, + { + "name": "TYPE_PACKED_FLOAT64_ARRAY", + "value": 30 + }, + { + "name": "TYPE_PACKED_STRING_ARRAY", + "value": 31 + }, + { + "name": "TYPE_PACKED_VECTOR2_ARRAY", + "value": 32 + }, + { + "name": "TYPE_PACKED_VECTOR3_ARRAY", + "value": 33 + }, + { + "name": "TYPE_PACKED_COLOR_ARRAY", + "value": 34 + }, + { + "name": "TYPE_MAX", + "value": 35 + } + ] + }, + { + "name": "Variant.Operator", + "values": [ + { + "name": "OP_EQUAL", + "value": 0 + }, + { + "name": "OP_NOT_EQUAL", + "value": 1 + }, + { + "name": "OP_LESS", + "value": 2 + }, + { + "name": "OP_LESS_EQUAL", + "value": 3 + }, + { + "name": "OP_GREATER", + "value": 4 + }, + { + "name": "OP_GREATER_EQUAL", + "value": 5 + }, + { + "name": "OP_ADD", + "value": 6 + }, + { + "name": "OP_SUBTRACT", + "value": 7 + }, + { + "name": "OP_MULTIPLY", + "value": 8 + }, + { + "name": "OP_DIVIDE", + "value": 9 + }, + { + "name": "OP_NEGATE", + "value": 10 + }, + { + "name": "OP_POSITIVE", + "value": 11 + }, + { + "name": "OP_MODULE", + "value": 12 + }, + { + "name": "OP_POWER", + "value": 13 + }, + { + "name": "OP_SHIFT_LEFT", + "value": 14 + }, + { + "name": "OP_SHIFT_RIGHT", + "value": 15 + }, + { + "name": "OP_BIT_AND", + "value": 16 + }, + { + "name": "OP_BIT_OR", + "value": 17 + }, + { + "name": "OP_BIT_XOR", + "value": 18 + }, + { + "name": "OP_BIT_NEGATE", + "value": 19 + }, + { + "name": "OP_AND", + "value": 20 + }, + { + "name": "OP_OR", + "value": 21 + }, + { + "name": "OP_XOR", + "value": 22 + }, + { + "name": "OP_NOT", + "value": 23 + }, + { + "name": "OP_IN", + "value": 24 + }, + { + "name": "OP_MAX", + "value": 25 + } + ] + } + ], + "utility_functions": [ + { + "name": "sin", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "angle_rad", + "type": "float" + } + ] + }, + { + "name": "cos", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "angle_rad", + "type": "float" + } + ] + }, + { + "name": "tan", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "angle_rad", + "type": "float" + } + ] + }, + { + "name": "sinh", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "cosh", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "tanh", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "asin", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "acos", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "atan", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "atan2", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "y", + "type": "float" + }, + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "sqrt", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "fmod", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + } + ] + }, + { + "name": "fposmod", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + } + ] + }, + { + "name": "posmod", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 133316302, + "arguments": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + } + ] + }, + { + "name": "floor", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "ceil", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "round", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "abs", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 134188199, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "absf", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "absi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 134190379, + "arguments": [ + { + "name": "x", + "type": "int" + } + ] + }, + { + "name": "sign", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 134188199, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "signf", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "signi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 134190379, + "arguments": [ + { + "name": "x", + "type": "int" + } + ] + }, + { + "name": "pow", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "base", + "type": "float" + }, + { + "name": "exp", + "type": "float" + } + ] + }, + { + "name": "log", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "exp", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "is_nan", + "return_type": "bool", + "category": "math", + "is_vararg": false, + "hash": 134189291, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "is_inf", + "return_type": "bool", + "category": "math", + "is_vararg": false, + "hash": 134189291, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "category": "math", + "is_vararg": false, + "hash": 133280399, + "arguments": [ + { + "name": "a", + "type": "float" + }, + { + "name": "b", + "type": "float" + } + ] + }, + { + "name": "is_zero_approx", + "return_type": "bool", + "category": "math", + "is_vararg": false, + "hash": 134189291, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "ease", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "curve", + "type": "float" + } + ] + }, + { + "name": "step_decimals", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 134190380, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "snapped", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "step", + "type": "float" + } + ] + }, + { + "name": "lerp", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "cubic_interpolate", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 3509509309, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + }, + { + "name": "pre", + "type": "float" + }, + { + "name": "post", + "type": "float" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "lerp_angle", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "inverse_lerp", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "range_lerp", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 3509509309, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "istart", + "type": "float" + }, + { + "name": "istop", + "type": "float" + }, + { + "name": "ostart", + "type": "float" + }, + { + "name": "ostop", + "type": "float" + } + ] + }, + { + "name": "smoothstep", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + }, + { + "name": "x", + "type": "float" + } + ] + }, + { + "name": "move_toward", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + }, + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "deg2rad", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "deg", + "type": "float" + } + ] + }, + { + "name": "rad2deg", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "rad", + "type": "float" + } + ] + }, + { + "name": "linear2db", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "lin", + "type": "float" + } + ] + }, + { + "name": "db2linear", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 134191469, + "arguments": [ + { + "name": "db", + "type": "float" + } + ] + }, + { + "name": "wrapi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 104506609, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "min", + "type": "int" + }, + { + "name": "max", + "type": "int" + } + ] + }, + { + "name": "wrapf", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "min", + "type": "float" + }, + { + "name": "max", + "type": "float" + } + ] + }, + { + "name": "max", + "return_type": "Variant", + "category": "math", + "is_vararg": true, + "hash": 172379753, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + }, + { + "name": "arg2", + "type": "Variant" + } + ] + }, + { + "name": "maxi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 133316302, + "arguments": [ + { + "name": "a", + "type": "int" + }, + { + "name": "b", + "type": "int" + } + ] + }, + { + "name": "maxf", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "a", + "type": "float" + }, + { + "name": "b", + "type": "float" + } + ] + }, + { + "name": "min", + "return_type": "Variant", + "category": "math", + "is_vararg": true, + "hash": 172379753, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + }, + { + "name": "arg2", + "type": "Variant" + } + ] + }, + { + "name": "mini", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 133316302, + "arguments": [ + { + "name": "a", + "type": "int" + }, + { + "name": "b", + "type": "int" + } + ] + }, + { + "name": "minf", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "a", + "type": "float" + }, + { + "name": "b", + "type": "float" + } + ] + }, + { + "name": "clamp", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 102132521, + "arguments": [ + { + "name": "value", + "type": "Variant" + }, + { + "name": "min", + "type": "Variant" + }, + { + "name": "max", + "type": "Variant" + } + ] + }, + { + "name": "clampi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 104506609, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "min", + "type": "int" + }, + { + "name": "max", + "type": "int" + } + ] + }, + { + "name": "clampf", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 105693653, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "min", + "type": "float" + }, + { + "name": "max", + "type": "float" + } + ] + }, + { + "name": "nearest_po2", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 134190379, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "pingpong", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "length", + "type": "float" + } + ] + }, + { + "name": "randomize", + "category": "random", + "is_vararg": false, + "hash": 193376997 + }, + { + "name": "randi", + "return_type": "int", + "category": "random", + "is_vararg": false, + "hash": 2086474760 + }, + { + "name": "randf", + "return_type": "float", + "category": "random", + "is_vararg": false, + "hash": 2086474793 + }, + { + "name": "randi_range", + "return_type": "int", + "category": "random", + "is_vararg": false, + "hash": 133316302, + "arguments": [ + { + "name": "from", + "type": "int" + }, + { + "name": "to", + "type": "int" + } + ] + }, + { + "name": "randf_range", + "return_type": "float", + "category": "random", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "from", + "type": "float" + }, + { + "name": "to", + "type": "float" + } + ] + }, + { + "name": "randfn", + "return_type": "float", + "category": "random", + "is_vararg": false, + "hash": 133352273, + "arguments": [ + { + "name": "mean", + "type": "float" + }, + { + "name": "deviation", + "type": "float" + } + ] + }, + { + "name": "seed", + "category": "random", + "is_vararg": false, + "hash": 2086473640, + "arguments": [ + { + "name": "base", + "type": "int" + } + ] + }, + { + "name": "rand_from_seed", + "return_type": "PackedInt64Array", + "category": "random", + "is_vararg": false, + "hash": 134218693, + "arguments": [ + { + "name": "seed", + "type": "int" + } + ] + }, + { + "name": "weakref", + "return_type": "Variant", + "category": "general", + "is_vararg": false, + "hash": 134188199, + "arguments": [ + { + "name": "obj", + "type": "Variant" + } + ] + }, + { + "name": "typeof", + "return_type": "int", + "category": "general", + "is_vararg": false, + "hash": 134190377, + "arguments": [ + { + "name": "variable", + "type": "Variant" + } + ] + }, + { + "name": "str", + "return_type": "String", + "category": "general", + "is_vararg": true, + "hash": 135378476, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "error_string", + "return_type": "String", + "category": "general", + "is_vararg": false, + "hash": 134192557, + "arguments": [ + { + "name": "error", + "type": "int" + } + ] + }, + { + "name": "print", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "printerr", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "printt", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "prints", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "printraw", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "print_verbose", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "push_error", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "push_warning", + "category": "general", + "is_vararg": true, + "hash": 2086509575, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "var2str", + "return_type": "String", + "category": "general", + "is_vararg": false, + "hash": 134192555, + "arguments": [ + { + "name": "variable", + "type": "Variant" + } + ] + }, + { + "name": "str2var", + "return_type": "Variant", + "category": "general", + "is_vararg": false, + "hash": 134188203, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, + { + "name": "var2bytes", + "return_type": "PackedByteArray", + "category": "general", + "is_vararg": false, + "hash": 134216513, + "arguments": [ + { + "name": "variable", + "type": "Variant" + } + ] + }, + { + "name": "bytes2var", + "return_type": "Variant", + "category": "general", + "is_vararg": false, + "hash": 134188225, + "arguments": [ + { + "name": "bytes", + "type": "PackedByteArray" + } + ] + }, + { + "name": "var2bytes_with_objects", + "return_type": "PackedByteArray", + "category": "general", + "is_vararg": false, + "hash": 134216513, + "arguments": [ + { + "name": "variable", + "type": "Variant" + } + ] + }, + { + "name": "bytes2var_with_objects", + "return_type": "Variant", + "category": "general", + "is_vararg": false, + "hash": 134188225, + "arguments": [ + { + "name": "bytes", + "type": "PackedByteArray" + } + ] + }, + { + "name": "hash", + "return_type": "int", + "category": "general", + "is_vararg": false, + "hash": 134190377, + "arguments": [ + { + "name": "variable", + "type": "Variant" + } + ] + }, + { + "name": "instance_from_id", + "return_type": "Object", + "category": "general", + "is_vararg": false, + "hash": 134211070, + "arguments": [ + { + "name": "instance_id", + "type": "int" + } + ] + }, + { + "name": "is_instance_id_valid", + "return_type": "bool", + "category": "general", + "is_vararg": false, + "hash": 134189290, + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "is_instance_valid", + "return_type": "bool", + "category": "general", + "is_vararg": false, + "hash": 134189288, + "arguments": [ + { + "name": "instance", + "type": "Variant" + } + ] + }, + { + "name": "rid_allocate_id", + "return_type": "int", + "category": "general", + "is_vararg": false, + "hash": 2086474760 + }, + { + "name": "rid_from_int64", + "return_type": "RID", + "category": "general", + "is_vararg": false, + "hash": 134209981, + "arguments": [ + { + "name": "base", + "type": "int" + } + ] + } + ], + "builtin_classes": [ + { + "name": "Nil", + "is_keyed": false, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "not", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Rect2", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Rect2", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Rect2i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Rect2i", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Transform2D", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Transform2D", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Plane", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Plane", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Quaternion", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Quaternion", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "AABB", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "AABB", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Basis", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Basis", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Transform3D", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Transform3D", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Color", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Color", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "NodePath", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "NodePath", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Callable", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Callable", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Signal", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Signal", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedByteArray", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedByteArray", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedInt32Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedInt32Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedInt64Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedInt64Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedFloat32Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedFloat32Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedFloat64Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedFloat64Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedStringArray", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedStringArray", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedVector2Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedVector2Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedVector3Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedVector3Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedColorArray", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedColorArray", + "return_type": "bool" + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Nil" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "bool", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "not", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "bool" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "int" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "from", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "int", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "int" + }, + { + "name": "unary+", + "return_type": "int" + }, + { + "name": "~", + "return_type": "int" + }, + { + "name": "and", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "not", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "int", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "int", + "return_type": "int" + }, + { + "name": "-", + "right_type": "int", + "return_type": "int" + }, + { + "name": "*", + "right_type": "int", + "return_type": "int" + }, + { + "name": "/", + "right_type": "int", + "return_type": "int" + }, + { + "name": "%", + "right_type": "int", + "return_type": "int" + }, + { + "name": "**", + "right_type": "int", + "return_type": "int" + }, + { + "name": "<<", + "right_type": "int", + "return_type": "int" + }, + { + "name": ">>", + "right_type": "int", + "return_type": "int" + }, + { + "name": "&", + "right_type": "int", + "return_type": "int" + }, + { + "name": "|", + "right_type": "int", + "return_type": "int" + }, + { + "name": "^", + "right_type": "int", + "return_type": "int" + }, + { + "name": "and", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "float", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "float", + "return_type": "float" + }, + { + "name": "-", + "right_type": "float", + "return_type": "float" + }, + { + "name": "*", + "right_type": "float", + "return_type": "float" + }, + { + "name": "/", + "right_type": "float", + "return_type": "float" + }, + { + "name": "**", + "right_type": "float", + "return_type": "float" + }, + { + "name": "and", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "String", + "return_type": "String" + }, + { + "name": "*", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "Vector2i", + "return_type": "Vector2i" + }, + { + "name": "*", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Vector3i", + "return_type": "Vector3i" + }, + { + "name": "*", + "right_type": "Quaternion", + "return_type": "Quaternion" + }, + { + "name": "*", + "right_type": "Color", + "return_type": "Color" + }, + { + "name": "and", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedByteArray", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedInt32Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedInt64Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedFloat32Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedFloat64Array", + "return_type": "bool" + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "int" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "float" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "from", + "type": "bool" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "float", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "float" + }, + { + "name": "unary+", + "return_type": "float" + }, + { + "name": "and", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "not", + "return_type": "bool" + }, + { + "name": "and", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "bool", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "int", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "int", + "return_type": "float" + }, + { + "name": "-", + "right_type": "int", + "return_type": "float" + }, + { + "name": "*", + "right_type": "int", + "return_type": "float" + }, + { + "name": "/", + "right_type": "int", + "return_type": "float" + }, + { + "name": "**", + "right_type": "int", + "return_type": "float" + }, + { + "name": "and", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "int", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "float", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "float", + "return_type": "float" + }, + { + "name": "-", + "right_type": "float", + "return_type": "float" + }, + { + "name": "*", + "right_type": "float", + "return_type": "float" + }, + { + "name": "/", + "right_type": "float", + "return_type": "float" + }, + { + "name": "**", + "right_type": "float", + "return_type": "float" + }, + { + "name": "and", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "float", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "Vector2i", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Vector3i", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Quaternion", + "return_type": "Quaternion" + }, + { + "name": "*", + "right_type": "Color", + "return_type": "Color" + }, + { + "name": "and", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "or", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "xor", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedByteArray", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedInt32Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedInt64Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedFloat32Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedFloat64Array", + "return_type": "bool" + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "float" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "int" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "from", + "type": "bool" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "String", + "indexing_return_type": "String", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "Nil", + "return_type": "String" + }, + { + "name": "%", + "right_type": "bool", + "return_type": "String" + }, + { + "name": "+", + "right_type": "int", + "return_type": "String" + }, + { + "name": "%", + "right_type": "int", + "return_type": "String" + }, + { + "name": "%", + "right_type": "float", + "return_type": "String" + }, + { + "name": "==", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "String", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "String", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "String", + "return_type": "String" + }, + { + "name": "%", + "right_type": "String", + "return_type": "String" + }, + { + "name": "in", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "Vector2", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Vector2i", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Rect2", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Rect2i", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Vector3", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Vector3i", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Transform2D", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Plane", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Quaternion", + "return_type": "String" + }, + { + "name": "%", + "right_type": "AABB", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Basis", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Transform3D", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Color", + "return_type": "String" + }, + { + "name": "==", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "StringName", + "return_type": "String" + }, + { + "name": "in", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "NodePath", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Object", + "return_type": "String" + }, + { + "name": "in", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "Callable", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Signal", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Dictionary", + "return_type": "String" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "Array", + "return_type": "String" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "PackedByteArray", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedInt32Array", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedInt64Array", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedFloat32Array", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedFloat64Array", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedStringArray", + "return_type": "String" + }, + { + "name": "in", + "right_type": "PackedStringArray", + "return_type": "bool" + }, + { + "name": "%", + "right_type": "PackedVector2Array", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedVector3Array", + "return_type": "String" + }, + { + "name": "%", + "right_type": "PackedColorArray", + "return_type": "String" + } + ], + "methods": [ + { + "name": "casecmp_to", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "to", + "type": "String" + } + ] + }, + { + "name": "nocasecmp_to", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "to", + "type": "String" + } + ] + }, + { + "name": "naturalnocasecmp_to", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "to", + "type": "String" + } + ] + }, + { + "name": "length", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "substr", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "from", + "type": "int" + }, + { + "name": "len", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "get_slice", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "delimiter", + "type": "String" + }, + { + "name": "slice", + "type": "int" + } + ] + }, + { + "name": "get_slicec", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "delimiter", + "type": "int" + }, + { + "name": "slice", + "type": "int" + } + ] + }, + { + "name": "get_slice_count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "delimiter", + "type": "String" + } + ] + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + }, + { + "name": "to", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "countn", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + }, + { + "name": "to", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "findn", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "rfindn", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "match", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "expr", + "type": "String" + } + ] + }, + { + "name": "matchn", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "expr", + "type": "String" + } + ] + }, + { + "name": "begins_with", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "ends_with", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "is_subsequence_of", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "is_subsequence_ofn", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "bigrams", + "return_type": "PackedStringArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193766 + }, + { + "name": "similarity", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "format", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "values", + "type": "Variant" + }, + { + "name": "placeholder", + "type": "String", + "default_value": "\"{_}\"" + } + ] + }, + { + "name": "replace", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "forwhat", + "type": "String" + } + ] + }, + { + "name": "replacen", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "what", + "type": "String" + }, + { + "name": "forwhat", + "type": "String" + } + ] + }, + { + "name": "repeat", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "count", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "position", + "type": "int" + }, + { + "name": "what", + "type": "String" + } + ] + }, + { + "name": "capitalize", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "split", + "return_type": "PackedStringArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "delimiter", + "type": "String" + }, + { + "name": "allow_empty", + "type": "bool", + "default_value": "true" + }, + { + "name": "maxsplit", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rsplit", + "return_type": "PackedStringArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "delimiter", + "type": "String" + }, + { + "name": "allow_empty", + "type": "bool", + "default_value": "true" + }, + { + "name": "maxsplit", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "split_floats", + "return_type": "PackedFloat32Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "delimiter", + "type": "String" + }, + { + "name": "allow_empty", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "join", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 31, + "arguments": [ + { + "name": "parts", + "type": "PackedStringArray" + } + ] + }, + { + "name": "to_upper", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "to_lower", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "left", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "length", + "type": "int" + } + ] + }, + { + "name": "right", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "length", + "type": "int" + } + ] + }, + { + "name": "strip_edges", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "left", + "type": "bool", + "default_value": "true" + }, + { + "name": "right", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "strip_escapes", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "lstrip", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "chars", + "type": "String" + } + ] + }, + { + "name": "rstrip", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "chars", + "type": "String" + } + ] + }, + { + "name": "get_extension", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "get_basename", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "plus_file", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "unicode_at", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "at", + "type": "int" + } + ] + }, + { + "name": "indent", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "prefix", + "type": "String" + } + ] + }, + { + "name": "dedent", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "hash", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "md5_text", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "sha1_text", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "sha256_text", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "md5_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sha1_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sha256_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "contains", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "what", + "type": "String" + } + ] + }, + { + "name": "is_absolute_path", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_relative_path", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "simplify_path", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "get_base_dir", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "get_file", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "xml_escape", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "escape_quotes", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "xml_unescape", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "uri_encode", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "uri_decode", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "c_escape", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "c_unescape", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "json_escape", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "validate_node_name", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "is_valid_identifier", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_valid_int", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_valid_float", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_valid_hex_number", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "with_prefix", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_valid_html_color", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_valid_ip_address", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_valid_filename", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "to_int", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_float", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "hex_to_int", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "bin_to_int", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "lpad", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "min_length", + "type": "int" + }, + { + "name": "character", + "type": "String", + "default_value": "\" \"" + } + ] + }, + { + "name": "rpad", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "min_length", + "type": "int" + }, + { + "name": "character", + "type": "String", + "default_value": "\" \"" + } + ] + }, + { + "name": "pad_decimals", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "digits", + "type": "int" + } + ] + }, + { + "name": "pad_zeros", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "digits", + "type": "int" + } + ] + }, + { + "name": "trim_prefix", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "prefix", + "type": "String" + } + ] + }, + { + "name": "trim_suffix", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "suffix", + "type": "String" + } + ] + }, + { + "name": "to_ascii_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "to_utf8_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "to_utf16_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "to_utf32_buffer", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "num_scientific", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3, + "arguments": [ + { + "name": "number", + "type": "float" + } + ] + }, + { + "name": "num", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "number", + "type": "float" + }, + { + "name": "decimals", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "num_int64", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 1, + "arguments": [ + { + "name": "number", + "type": "int" + }, + { + "name": "base", + "type": "int", + "default_value": "10" + }, + { + "name": "capitalize_hex", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "num_uint64", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 1, + "arguments": [ + { + "name": "number", + "type": "int" + }, + { + "name": "base", + "type": "int", + "default_value": "10" + }, + { + "name": "capitalize_hex", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "chr", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "char", + "type": "int" + } + ] + }, + { + "name": "humanize_size", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "size", + "type": "int" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "String" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "StringName" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "from", + "type": "NodePath" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Vector2", + "indexing_return_type": "float", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + } + ], + "constants": [ + { + "name": "AXIS_X", + "type": "int", + "value": "0" + }, + { + "name": "AXIS_Y", + "type": "int", + "value": "1" + }, + { + "name": "ZERO", + "type": "Vector2", + "value": "Vector2(0, 0)" + }, + { + "name": "ONE", + "type": "Vector2", + "value": "Vector2(1, 1)" + }, + { + "name": "INF", + "type": "Vector2", + "value": "Vector2(inf, inf)" + }, + { + "name": "LEFT", + "type": "Vector2", + "value": "Vector2(-1, 0)" + }, + { + "name": "RIGHT", + "type": "Vector2", + "value": "Vector2(1, 0)" + }, + { + "name": "UP", + "type": "Vector2", + "value": "Vector2(0, -1)" + }, + { + "name": "DOWN", + "type": "Vector2", + "value": "Vector2(0, 1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Vector2" + }, + { + "name": "unary+", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Vector2" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Vector2" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Vector2" + }, + { + "name": "==", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Vector2", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "-", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "/", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "Transform2D", + "return_type": "Vector2" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedVector2Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "angle", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "angle_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "angle_to_point", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "direction_to", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "distance_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "distance_squared_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "length_squared", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "limit_length", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "length", + "type": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "normalized", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "is_normalized", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "posmod", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "mod", + "type": "float" + } + ] + }, + { + "name": "posmodv", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "modv", + "type": "Vector2" + } + ] + }, + { + "name": "project", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "b", + "type": "Vector2" + } + ] + }, + { + "name": "lerp", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Vector2" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "slerp", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Vector2" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "cubic_interpolate", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "b", + "type": "Vector2" + }, + { + "name": "pre_a", + "type": "Vector2" + }, + { + "name": "post_b", + "type": "Vector2" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "max_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "min_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "move_toward", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Vector2" + }, + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "rotated", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "angle", + "type": "float" + } + ] + }, + { + "name": "orthogonal", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "floor", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "ceil", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "round", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "aspect", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "dot", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "with", + "type": "Vector2" + } + ] + }, + { + "name": "slide", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "n", + "type": "Vector2" + } + ] + }, + { + "name": "bounce", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "n", + "type": "Vector2" + } + ] + }, + { + "name": "reflect", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "n", + "type": "Vector2" + } + ] + }, + { + "name": "cross", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "with", + "type": "Vector2" + } + ] + }, + { + "name": "abs", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "sign", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "clamp", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "min", + "type": "Vector2" + }, + { + "name": "max", + "type": "Vector2" + } + ] + }, + { + "name": "snapped", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "step", + "type": "Vector2" + } + ] + }, + { + "name": "from_angle", + "return_type": "Vector2", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3, + "arguments": [ + { + "name": "angle", + "type": "float" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Vector2" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Vector2i" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Vector2i", + "indexing_return_type": "int", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + } + ], + "constants": [ + { + "name": "AXIS_X", + "type": "int", + "value": "0" + }, + { + "name": "AXIS_Y", + "type": "int", + "value": "1" + }, + { + "name": "ZERO", + "type": "Vector2i", + "value": "Vector2i(0, 0)" + }, + { + "name": "ONE", + "type": "Vector2i", + "value": "Vector2i(1, 1)" + }, + { + "name": "LEFT", + "type": "Vector2i", + "value": "Vector2i(-1, 0)" + }, + { + "name": "RIGHT", + "type": "Vector2i", + "value": "Vector2i(1, 0)" + }, + { + "name": "UP", + "type": "Vector2i", + "value": "Vector2i(0, -1)" + }, + { + "name": "DOWN", + "type": "Vector2i", + "value": "Vector2i(0, 1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Vector2i" + }, + { + "name": "unary+", + "return_type": "Vector2i" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Vector2i" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Vector2i" + }, + { + "name": "%", + "right_type": "int", + "return_type": "Vector2i" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Vector2" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Vector2" + }, + { + "name": "==", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Vector2i", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Vector2i", + "return_type": "Vector2i" + }, + { + "name": "-", + "right_type": "Vector2i", + "return_type": "Vector2i" + }, + { + "name": "*", + "right_type": "Vector2i", + "return_type": "Vector2i" + }, + { + "name": "/", + "right_type": "Vector2i", + "return_type": "Vector2i" + }, + { + "name": "%", + "right_type": "Vector2i", + "return_type": "Vector2i" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "aspect", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "max_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "min_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "length_squared", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "sign", + "return_type": "Vector2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192941 + }, + { + "name": "abs", + "return_type": "Vector2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192941 + }, + { + "name": "clamp", + "return_type": "Vector2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 6, + "arguments": [ + { + "name": "min", + "type": "Vector2i" + }, + { + "name": "max", + "type": "Vector2i" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Vector2i" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Vector2" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Rect2", + "is_keyed": true, + "members": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "end", + "type": "Vector2" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Rect2", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Rect2", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Transform2D", + "return_type": "Rect2" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "get_center", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "get_area", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "has_no_area", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "has_point", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 7, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "intersects", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "b", + "type": "Rect2" + }, + { + "name": "include_borders", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "encloses", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 7, + "arguments": [ + { + "name": "b", + "type": "Rect2" + } + ] + }, + { + "name": "intersection", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 7, + "arguments": [ + { + "name": "b", + "type": "Rect2" + } + ] + }, + { + "name": "merge", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 7, + "arguments": [ + { + "name": "b", + "type": "Rect2" + } + ] + }, + { + "name": "expand", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "grow", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "amount", + "type": "float" + } + ] + }, + { + "name": "grow_side", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "side", + "type": "int" + }, + { + "name": "amount", + "type": "float" + } + ] + }, + { + "name": "grow_individual", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "left", + "type": "float" + }, + { + "name": "top", + "type": "float" + }, + { + "name": "right", + "type": "float" + }, + { + "name": "bottom", + "type": "float" + } + ] + }, + { + "name": "abs", + "return_type": "Rect2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192974 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Rect2" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Rect2i" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "width", + "type": "float" + }, + { + "name": "height", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Rect2i", + "is_keyed": true, + "members": [ + { + "name": "position", + "type": "Vector2i" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "end", + "type": "Vector2i" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Rect2i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Rect2i", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "get_center", + "return_type": "Vector2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192941 + }, + { + "name": "get_area", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "has_no_area", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "has_point", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 6, + "arguments": [ + { + "name": "point", + "type": "Vector2i" + } + ] + }, + { + "name": "intersects", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 8, + "arguments": [ + { + "name": "b", + "type": "Rect2i" + } + ] + }, + { + "name": "encloses", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 8, + "arguments": [ + { + "name": "b", + "type": "Rect2i" + } + ] + }, + { + "name": "intersection", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 8, + "arguments": [ + { + "name": "b", + "type": "Rect2i" + } + ] + }, + { + "name": "merge", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 8, + "arguments": [ + { + "name": "b", + "type": "Rect2i" + } + ] + }, + { + "name": "expand", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 6, + "arguments": [ + { + "name": "to", + "type": "Vector2i" + } + ] + }, + { + "name": "grow", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "amount", + "type": "int" + } + ] + }, + { + "name": "grow_side", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "side", + "type": "int" + }, + { + "name": "amount", + "type": "int" + } + ] + }, + { + "name": "grow_individual", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "left", + "type": "int" + }, + { + "name": "top", + "type": "int" + }, + { + "name": "right", + "type": "int" + }, + { + "name": "bottom", + "type": "int" + } + ] + }, + { + "name": "abs", + "return_type": "Rect2i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193007 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Rect2i" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Rect2" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + }, + { + "name": "width", + "type": "int" + }, + { + "name": "height", + "type": "int" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Vector3", + "indexing_return_type": "float", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + } + ], + "constants": [ + { + "name": "AXIS_X", + "type": "int", + "value": "0" + }, + { + "name": "AXIS_Y", + "type": "int", + "value": "1" + }, + { + "name": "AXIS_Z", + "type": "int", + "value": "2" + }, + { + "name": "ZERO", + "type": "Vector3", + "value": "Vector3(0, 0, 0)" + }, + { + "name": "ONE", + "type": "Vector3", + "value": "Vector3(1, 1, 1)" + }, + { + "name": "INF", + "type": "Vector3", + "value": "Vector3(inf, inf, inf)" + }, + { + "name": "LEFT", + "type": "Vector3", + "value": "Vector3(-1, 0, 0)" + }, + { + "name": "RIGHT", + "type": "Vector3", + "value": "Vector3(1, 0, 0)" + }, + { + "name": "UP", + "type": "Vector3", + "value": "Vector3(0, 1, 0)" + }, + { + "name": "DOWN", + "type": "Vector3", + "value": "Vector3(0, -1, 0)" + }, + { + "name": "FORWARD", + "type": "Vector3", + "value": "Vector3(0, 0, -1)" + }, + { + "name": "BACK", + "type": "Vector3", + "value": "Vector3(0, 0, 1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Vector3" + }, + { + "name": "unary+", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Vector3" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Vector3" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Vector3" + }, + { + "name": "==", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Vector3", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "-", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "/", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Quaternion", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Basis", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "Transform3D", + "return_type": "Vector3" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedVector3Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "min_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "max_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "angle_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "signed_angle_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to", + "type": "Vector3" + }, + { + "name": "axis", + "type": "Vector3" + } + ] + }, + { + "name": "direction_to", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "distance_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "distance_squared_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "length_squared", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "limit_length", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "length", + "type": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "normalized", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "is_normalized", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "inverse", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "clamp", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "min", + "type": "Vector3" + }, + { + "name": "max", + "type": "Vector3" + } + ] + }, + { + "name": "snapped", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "step", + "type": "Vector3" + } + ] + }, + { + "name": "rotated", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, + { + "name": "lerp", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Vector3" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "slerp", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Vector3" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "cubic_interpolate", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "b", + "type": "Vector3" + }, + { + "name": "pre_a", + "type": "Vector3" + }, + { + "name": "post_b", + "type": "Vector3" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "move_toward", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Vector3" + }, + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "dot", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "with", + "type": "Vector3" + } + ] + }, + { + "name": "cross", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "with", + "type": "Vector3" + } + ] + }, + { + "name": "outer", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "with", + "type": "Vector3" + } + ] + }, + { + "name": "abs", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "floor", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "ceil", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "round", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "posmod", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "mod", + "type": "float" + } + ] + }, + { + "name": "posmodv", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "modv", + "type": "Vector3" + } + ] + }, + { + "name": "project", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "b", + "type": "Vector3" + } + ] + }, + { + "name": "slide", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "n", + "type": "Vector3" + } + ] + }, + { + "name": "bounce", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "n", + "type": "Vector3" + } + ] + }, + { + "name": "reflect", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "n", + "type": "Vector3" + } + ] + }, + { + "name": "sign", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "octahedron_encode", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "octahedron_decode", + "return_type": "Vector3", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 5, + "arguments": [ + { + "name": "uv", + "type": "Vector2" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Vector3" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Vector3i" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Vector3i", + "indexing_return_type": "int", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + }, + { + "name": "z", + "type": "int" + } + ], + "constants": [ + { + "name": "AXIS_X", + "type": "int", + "value": "0" + }, + { + "name": "AXIS_Y", + "type": "int", + "value": "1" + }, + { + "name": "AXIS_Z", + "type": "int", + "value": "2" + }, + { + "name": "ZERO", + "type": "Vector3i", + "value": "Vector3i(0, 0, 0)" + }, + { + "name": "ONE", + "type": "Vector3i", + "value": "Vector3i(1, 1, 1)" + }, + { + "name": "LEFT", + "type": "Vector3i", + "value": "Vector3i(-1, 0, 0)" + }, + { + "name": "RIGHT", + "type": "Vector3i", + "value": "Vector3i(1, 0, 0)" + }, + { + "name": "UP", + "type": "Vector3i", + "value": "Vector3i(0, 1, 0)" + }, + { + "name": "DOWN", + "type": "Vector3i", + "value": "Vector3i(0, -1, 0)" + }, + { + "name": "FORWARD", + "type": "Vector3i", + "value": "Vector3i(0, 0, -1)" + }, + { + "name": "BACK", + "type": "Vector3i", + "value": "Vector3i(0, 0, 1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Vector3i" + }, + { + "name": "unary+", + "return_type": "Vector3i" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Vector3i" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Vector3i" + }, + { + "name": "%", + "right_type": "int", + "return_type": "Vector3i" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Vector3" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Vector3" + }, + { + "name": "==", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Vector3i", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Vector3i", + "return_type": "Vector3i" + }, + { + "name": "-", + "right_type": "Vector3i", + "return_type": "Vector3i" + }, + { + "name": "*", + "right_type": "Vector3i", + "return_type": "Vector3i" + }, + { + "name": "/", + "right_type": "Vector3i", + "return_type": "Vector3i" + }, + { + "name": "%", + "right_type": "Vector3i", + "return_type": "Vector3i" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "min_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "max_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "length_squared", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "sign", + "return_type": "Vector3i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193073 + }, + { + "name": "abs", + "return_type": "Vector3i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193073 + }, + { + "name": "clamp", + "return_type": "Vector3i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 10, + "arguments": [ + { + "name": "min", + "type": "Vector3i" + }, + { + "name": "max", + "type": "Vector3i" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Vector3i" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Vector3" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + }, + { + "name": "z", + "type": "int" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Transform2D", + "indexing_return_type": "Vector2", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "Vector2" + }, + { + "name": "y", + "type": "Vector2" + }, + { + "name": "origin", + "type": "Vector2" + } + ], + "constants": [ + { + "name": "IDENTITY", + "type": "Transform2D", + "value": "Transform2D(1, 0, 0, 1, 0, 0)" + }, + { + "name": "FLIP_X", + "type": "Transform2D", + "value": "Transform2D(-1, 0, 0, 1, 0, 0)" + }, + { + "name": "FLIP_Y", + "type": "Transform2D", + "value": "Transform2D(1, 0, 0, -1, 0, 0)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Transform2D" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Transform2D" + }, + { + "name": "*", + "right_type": "Vector2", + "return_type": "Vector2" + }, + { + "name": "*", + "right_type": "Rect2", + "return_type": "Rect2" + }, + { + "name": "==", + "right_type": "Transform2D", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Transform2D", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Transform2D", + "return_type": "Transform2D" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "PackedVector2Array", + "return_type": "PackedVector2Array" + } + ], + "methods": [ + { + "name": "inverse", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193106 + }, + { + "name": "affine_inverse", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193106 + }, + { + "name": "get_rotation", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "get_origin", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "get_scale", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192908 + }, + { + "name": "get_skew", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "orthonormalized", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193106 + }, + { + "name": "rotated", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "angle", + "type": "float" + } + ] + }, + { + "name": "scaled", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "translated", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "basis_xform", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "v", + "type": "Vector2" + } + ] + }, + { + "name": "basis_xform_inv", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "v", + "type": "Vector2" + } + ] + }, + { + "name": "interpolate_with", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 11, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + } + ] + }, + { + "name": "set_rotation", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "rotation", + "type": "float" + } + ] + }, + { + "name": "set_scale", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "set_skew", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "skew", + "type": "float" + } + ] + }, + { + "name": "looking_at", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "target", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Transform2D" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "rotation", + "type": "float" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "rotation", + "type": "float" + }, + { + "name": "scale", + "type": "Vector2" + }, + { + "name": "skew", + "type": "float" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "x_axis", + "type": "Vector2" + }, + { + "name": "y_axis", + "type": "Vector2" + }, + { + "name": "origin", + "type": "Vector2" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Plane", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + }, + { + "name": "d", + "type": "float" + }, + { + "name": "normal", + "type": "Vector3" + } + ], + "constants": [ + { + "name": "PLANE_YZ", + "type": "Plane", + "value": "Plane(1, 0, 0, 0)" + }, + { + "name": "PLANE_XZ", + "type": "Plane", + "value": "Plane(0, 1, 0, 0)" + }, + { + "name": "PLANE_XY", + "type": "Plane", + "value": "Plane(0, 0, 1, 0)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Plane" + }, + { + "name": "unary+", + "return_type": "Plane" + }, + { + "name": "==", + "right_type": "Plane", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Plane", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "normalized", + "return_type": "Plane", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193139 + }, + { + "name": "center", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 12, + "arguments": [ + { + "name": "to_plane", + "type": "Plane" + } + ] + }, + { + "name": "is_point_over", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "plane", + "type": "Vector3" + } + ] + }, + { + "name": "distance_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "point", + "type": "Vector3" + } + ] + }, + { + "name": "has_point", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "point", + "type": "Vector3" + }, + { + "name": "epsilon", + "type": "float", + "default_value": "1e-05" + } + ] + }, + { + "name": "project", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "point", + "type": "Vector3" + } + ] + }, + { + "name": "intersect_3", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 12, + "arguments": [ + { + "name": "b", + "type": "Plane" + }, + { + "name": "c", + "type": "Plane" + } + ] + }, + { + "name": "intersects_ray", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "dir", + "type": "Vector3" + } + ] + }, + { + "name": "intersects_segment", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Plane" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "normal", + "type": "Vector3" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "normal", + "type": "Vector3" + }, + { + "name": "d", + "type": "float" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "normal", + "type": "Vector3" + }, + { + "name": "point", + "type": "Vector3" + } + ] + }, + { + "index": 5, + "arguments": [ + { + "name": "point1", + "type": "Vector3" + }, + { + "name": "point2", + "type": "Vector3" + }, + { + "name": "point3", + "type": "Vector3" + } + ] + }, + { + "index": 6, + "arguments": [ + { + "name": "a", + "type": "float" + }, + { + "name": "b", + "type": "float" + }, + { + "name": "c", + "type": "float" + }, + { + "name": "d", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Quaternion", + "indexing_return_type": "float", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + }, + { + "name": "w", + "type": "float" + } + ], + "constants": [ + { + "name": "IDENTITY", + "type": "Quaternion", + "value": "Quaternion(0, 0, 0, 1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Quaternion" + }, + { + "name": "unary+", + "return_type": "Quaternion" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Quaternion" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Quaternion" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Quaternion" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Quaternion" + }, + { + "name": "*", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "==", + "right_type": "Quaternion", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Quaternion", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Quaternion", + "return_type": "Quaternion" + }, + { + "name": "-", + "right_type": "Quaternion", + "return_type": "Quaternion" + }, + { + "name": "*", + "right_type": "Quaternion", + "return_type": "Quaternion" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "length_squared", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "normalized", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193172 + }, + { + "name": "is_normalized", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 13, + "arguments": [ + { + "name": "to", + "type": "Quaternion" + } + ] + }, + { + "name": "inverse", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193172 + }, + { + "name": "log", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193172 + }, + { + "name": "exp", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193172 + }, + { + "name": "angle_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 13, + "arguments": [ + { + "name": "to", + "type": "Quaternion" + } + ] + }, + { + "name": "dot", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 13, + "arguments": [ + { + "name": "with", + "type": "Quaternion" + } + ] + }, + { + "name": "slerp", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Quaternion" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "slerpni", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Quaternion" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "cubic_slerp", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "b", + "type": "Quaternion" + }, + { + "name": "pre_a", + "type": "Quaternion" + }, + { + "name": "post_b", + "type": "Quaternion" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "get_euler", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "get_axis", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "get_angle", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Quaternion" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Basis" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "arc_from", + "type": "Vector3" + }, + { + "name": "arc_to", + "type": "Vector3" + } + ] + }, + { + "index": 5, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + }, + { + "name": "w", + "type": "float" + } + ] + }, + { + "index": 6, + "arguments": [ + { + "name": "euler_yxz", + "type": "Vector3" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "AABB", + "is_keyed": true, + "members": [ + { + "name": "position", + "type": "Vector3" + }, + { + "name": "size", + "type": "Vector3" + }, + { + "name": "end", + "type": "Vector3" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "AABB", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "AABB", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Transform3D", + "return_type": "AABB" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "abs", + "return_type": "AABB", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193205 + }, + { + "name": "get_center", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "get_volume", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "has_no_volume", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "has_no_surface", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "has_point", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "point", + "type": "Vector3" + } + ] + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 14, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "intersects", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 14, + "arguments": [ + { + "name": "with", + "type": "AABB" + } + ] + }, + { + "name": "encloses", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 14, + "arguments": [ + { + "name": "with", + "type": "AABB" + } + ] + }, + { + "name": "intersects_plane", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 12, + "arguments": [ + { + "name": "plane", + "type": "Plane" + } + ] + }, + { + "name": "intersection", + "return_type": "AABB", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 14, + "arguments": [ + { + "name": "with", + "type": "AABB" + } + ] + }, + { + "name": "merge", + "return_type": "AABB", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 14, + "arguments": [ + { + "name": "with", + "type": "AABB" + } + ] + }, + { + "name": "expand", + "return_type": "AABB", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "to_point", + "type": "Vector3" + } + ] + }, + { + "name": "grow", + "return_type": "AABB", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "by", + "type": "float" + } + ] + }, + { + "name": "get_support", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "dir", + "type": "Vector3" + } + ] + }, + { + "name": "get_longest_axis", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "get_longest_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "get_longest_axis_size", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "get_shortest_axis", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "get_shortest_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "get_shortest_axis_size", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "get_endpoint", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "intersects_segment", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "intersects_ray", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "dir", + "type": "Vector3" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "AABB" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "position", + "type": "Vector3" + }, + { + "name": "size", + "type": "Vector3" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Basis", + "indexing_return_type": "Vector3", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "Vector3" + }, + { + "name": "y", + "type": "Vector3" + }, + { + "name": "z", + "type": "Vector3" + } + ], + "constants": [ + { + "name": "EULER_ORDER_XYZ", + "type": "int", + "value": "0" + }, + { + "name": "EULER_ORDER_XZY", + "type": "int", + "value": "1" + }, + { + "name": "EULER_ORDER_YXZ", + "type": "int", + "value": "2" + }, + { + "name": "EULER_ORDER_YZX", + "type": "int", + "value": "3" + }, + { + "name": "EULER_ORDER_ZXY", + "type": "int", + "value": "4" + }, + { + "name": "EULER_ORDER_ZYX", + "type": "int", + "value": "5" + }, + { + "name": "IDENTITY", + "type": "Basis", + "value": "Basis(1, 0, 0, 0, 1, 0, 0, 0, 1)" + }, + { + "name": "FLIP_X", + "type": "Basis", + "value": "Basis(-1, 0, 0, 0, 1, 0, 0, 0, 1)" + }, + { + "name": "FLIP_Y", + "type": "Basis", + "value": "Basis(1, 0, 0, 0, -1, 0, 0, 0, 1)" + }, + { + "name": "FLIP_Z", + "type": "Basis", + "value": "Basis(1, 0, 0, 0, 1, 0, 0, 0, -1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Basis" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Basis" + }, + { + "name": "*", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "==", + "right_type": "Basis", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Basis", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Basis", + "return_type": "Basis" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "inverse", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193238 + }, + { + "name": "transposed", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193238 + }, + { + "name": "orthonormalized", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193238 + }, + { + "name": "determinant", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "rotated", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, + { + "name": "scaled", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "get_scale", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193040 + }, + { + "name": "get_euler", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "order", + "type": "int", + "default_value": "2" + } + ] + }, + { + "name": "tdotx", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "with", + "type": "Vector3" + } + ] + }, + { + "name": "tdoty", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "with", + "type": "Vector3" + } + ] + }, + { + "name": "tdotz", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "with", + "type": "Vector3" + } + ] + }, + { + "name": "get_orthogonal_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "slerp", + "return_type": "Basis", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Basis" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 15, + "arguments": [ + { + "name": "b", + "type": "Basis" + } + ] + }, + { + "name": "get_rotation_quaternion", + "return_type": "Quaternion", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193172 + }, + { + "name": "looking_at", + "return_type": "Basis", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 9, + "arguments": [ + { + "name": "target", + "type": "Vector3" + }, + { + "name": "up", + "type": "Vector3", + "default_value": "Vector3(0, 1, 0)" + } + ] + }, + { + "name": "from_scale", + "return_type": "Basis", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 9, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "from_euler", + "return_type": "Basis", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "euler", + "type": "Vector3" + }, + { + "name": "order", + "type": "int", + "default_value": "2" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Basis" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Quaternion" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "x_axis", + "type": "Vector3" + }, + { + "name": "y_axis", + "type": "Vector3" + }, + { + "name": "z_axis", + "type": "Vector3" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Transform3D", + "is_keyed": true, + "members": [ + { + "name": "basis", + "type": "Basis" + }, + { + "name": "origin", + "type": "Vector3" + } + ], + "constants": [ + { + "name": "IDENTITY", + "type": "Transform3D", + "value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" + }, + { + "name": "FLIP_X", + "type": "Transform3D", + "value": "Transform3D(-1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" + }, + { + "name": "FLIP_Y", + "type": "Transform3D", + "value": "Transform3D(1, 0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0)" + }, + { + "name": "FLIP_Z", + "type": "Transform3D", + "value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Transform3D" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Transform3D" + }, + { + "name": "*", + "right_type": "Vector3", + "return_type": "Vector3" + }, + { + "name": "*", + "right_type": "AABB", + "return_type": "AABB" + }, + { + "name": "==", + "right_type": "Transform3D", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Transform3D", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Transform3D", + "return_type": "Transform3D" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "PackedVector3Array", + "return_type": "PackedVector3Array" + } + ], + "methods": [ + { + "name": "inverse", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193271 + }, + { + "name": "affine_inverse", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193271 + }, + { + "name": "orthonormalized", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193271 + }, + { + "name": "rotated", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, + { + "name": "scaled", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "translated", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "looking_at", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "target", + "type": "Vector3" + }, + { + "name": "up", + "type": "Vector3", + "default_value": "Vector3(0, 1, 0)" + } + ] + }, + { + "name": "sphere_interpolate_with", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "xform", + "type": "Transform3D" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "interpolate_with", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "xform", + "type": "Transform3D" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 16, + "arguments": [ + { + "name": "xform", + "type": "Transform3D" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Transform3D" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "basis", + "type": "Basis" + }, + { + "name": "origin", + "type": "Vector3" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x_axis", + "type": "Vector3" + }, + { + "name": "y_axis", + "type": "Vector3" + }, + { + "name": "z_axis", + "type": "Vector3" + }, + { + "name": "origin", + "type": "Vector3" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Color", + "indexing_return_type": "float", + "is_keyed": true, + "members": [ + { + "name": "r", + "type": "float" + }, + { + "name": "g", + "type": "float" + }, + { + "name": "b", + "type": "float" + }, + { + "name": "a", + "type": "float" + }, + { + "name": "r8", + "type": "int" + }, + { + "name": "g8", + "type": "int" + }, + { + "name": "b8", + "type": "int" + }, + { + "name": "a8", + "type": "int" + }, + { + "name": "h", + "type": "float" + }, + { + "name": "s", + "type": "float" + }, + { + "name": "v", + "type": "float" + } + ], + "constants": [ + { + "name": "ALICE_BLUE", + "type": "Color", + "value": "Color(0.941176, 0.972549, 1, 1)" + }, + { + "name": "ANTIQUE_WHITE", + "type": "Color", + "value": "Color(0.980392, 0.921569, 0.843137, 1)" + }, + { + "name": "AQUA", + "type": "Color", + "value": "Color(0, 1, 1, 1)" + }, + { + "name": "AQUAMARINE", + "type": "Color", + "value": "Color(0.498039, 1, 0.831373, 1)" + }, + { + "name": "AZURE", + "type": "Color", + "value": "Color(0.941176, 1, 1, 1)" + }, + { + "name": "BEIGE", + "type": "Color", + "value": "Color(0.960784, 0.960784, 0.862745, 1)" + }, + { + "name": "BISQUE", + "type": "Color", + "value": "Color(1, 0.894118, 0.768627, 1)" + }, + { + "name": "BLACK", + "type": "Color", + "value": "Color(0, 0, 0, 1)" + }, + { + "name": "BLANCHED_ALMOND", + "type": "Color", + "value": "Color(1, 0.921569, 0.803922, 1)" + }, + { + "name": "BLUE", + "type": "Color", + "value": "Color(0, 0, 1, 1)" + }, + { + "name": "BLUE_VIOLET", + "type": "Color", + "value": "Color(0.541176, 0.168627, 0.886275, 1)" + }, + { + "name": "BROWN", + "type": "Color", + "value": "Color(0.647059, 0.164706, 0.164706, 1)" + }, + { + "name": "BURLYWOOD", + "type": "Color", + "value": "Color(0.870588, 0.721569, 0.529412, 1)" + }, + { + "name": "CADET_BLUE", + "type": "Color", + "value": "Color(0.372549, 0.619608, 0.627451, 1)" + }, + { + "name": "CHARTREUSE", + "type": "Color", + "value": "Color(0.498039, 1, 0, 1)" + }, + { + "name": "CHOCOLATE", + "type": "Color", + "value": "Color(0.823529, 0.411765, 0.117647, 1)" + }, + { + "name": "CORAL", + "type": "Color", + "value": "Color(1, 0.498039, 0.313726, 1)" + }, + { + "name": "CORNFLOWER_BLUE", + "type": "Color", + "value": "Color(0.392157, 0.584314, 0.929412, 1)" + }, + { + "name": "CORNSILK", + "type": "Color", + "value": "Color(1, 0.972549, 0.862745, 1)" + }, + { + "name": "CRIMSON", + "type": "Color", + "value": "Color(0.862745, 0.0784314, 0.235294, 1)" + }, + { + "name": "CYAN", + "type": "Color", + "value": "Color(0, 1, 1, 1)" + }, + { + "name": "DARK_BLUE", + "type": "Color", + "value": "Color(0, 0, 0.545098, 1)" + }, + { + "name": "DARK_CYAN", + "type": "Color", + "value": "Color(0, 0.545098, 0.545098, 1)" + }, + { + "name": "DARK_GOLDENROD", + "type": "Color", + "value": "Color(0.721569, 0.52549, 0.0431373, 1)" + }, + { + "name": "DARK_GRAY", + "type": "Color", + "value": "Color(0.662745, 0.662745, 0.662745, 1)" + }, + { + "name": "DARK_GREEN", + "type": "Color", + "value": "Color(0, 0.392157, 0, 1)" + }, + { + "name": "DARK_KHAKI", + "type": "Color", + "value": "Color(0.741176, 0.717647, 0.419608, 1)" + }, + { + "name": "DARK_MAGENTA", + "type": "Color", + "value": "Color(0.545098, 0, 0.545098, 1)" + }, + { + "name": "DARK_OLIVE_GREEN", + "type": "Color", + "value": "Color(0.333333, 0.419608, 0.184314, 1)" + }, + { + "name": "DARK_ORANGE", + "type": "Color", + "value": "Color(1, 0.54902, 0, 1)" + }, + { + "name": "DARK_ORCHID", + "type": "Color", + "value": "Color(0.6, 0.196078, 0.8, 1)" + }, + { + "name": "DARK_RED", + "type": "Color", + "value": "Color(0.545098, 0, 0, 1)" + }, + { + "name": "DARK_SALMON", + "type": "Color", + "value": "Color(0.913725, 0.588235, 0.478431, 1)" + }, + { + "name": "DARK_SEA_GREEN", + "type": "Color", + "value": "Color(0.560784, 0.737255, 0.560784, 1)" + }, + { + "name": "DARK_SLATE_BLUE", + "type": "Color", + "value": "Color(0.282353, 0.239216, 0.545098, 1)" + }, + { + "name": "DARK_SLATE_GRAY", + "type": "Color", + "value": "Color(0.184314, 0.309804, 0.309804, 1)" + }, + { + "name": "DARK_TURQUOISE", + "type": "Color", + "value": "Color(0, 0.807843, 0.819608, 1)" + }, + { + "name": "DARK_VIOLET", + "type": "Color", + "value": "Color(0.580392, 0, 0.827451, 1)" + }, + { + "name": "DEEP_PINK", + "type": "Color", + "value": "Color(1, 0.0784314, 0.576471, 1)" + }, + { + "name": "DEEP_SKY_BLUE", + "type": "Color", + "value": "Color(0, 0.74902, 1, 1)" + }, + { + "name": "DIM_GRAY", + "type": "Color", + "value": "Color(0.411765, 0.411765, 0.411765, 1)" + }, + { + "name": "DODGER_BLUE", + "type": "Color", + "value": "Color(0.117647, 0.564706, 1, 1)" + }, + { + "name": "FIREBRICK", + "type": "Color", + "value": "Color(0.698039, 0.133333, 0.133333, 1)" + }, + { + "name": "FLORAL_WHITE", + "type": "Color", + "value": "Color(1, 0.980392, 0.941176, 1)" + }, + { + "name": "FOREST_GREEN", + "type": "Color", + "value": "Color(0.133333, 0.545098, 0.133333, 1)" + }, + { + "name": "FUCHSIA", + "type": "Color", + "value": "Color(1, 0, 1, 1)" + }, + { + "name": "GAINSBORO", + "type": "Color", + "value": "Color(0.862745, 0.862745, 0.862745, 1)" + }, + { + "name": "GHOST_WHITE", + "type": "Color", + "value": "Color(0.972549, 0.972549, 1, 1)" + }, + { + "name": "GOLD", + "type": "Color", + "value": "Color(1, 0.843137, 0, 1)" + }, + { + "name": "GOLDENROD", + "type": "Color", + "value": "Color(0.854902, 0.647059, 0.12549, 1)" + }, + { + "name": "GRAY", + "type": "Color", + "value": "Color(0.745098, 0.745098, 0.745098, 1)" + }, + { + "name": "GREEN", + "type": "Color", + "value": "Color(0, 1, 0, 1)" + }, + { + "name": "GREEN_YELLOW", + "type": "Color", + "value": "Color(0.678431, 1, 0.184314, 1)" + }, + { + "name": "HONEYDEW", + "type": "Color", + "value": "Color(0.941176, 1, 0.941176, 1)" + }, + { + "name": "HOT_PINK", + "type": "Color", + "value": "Color(1, 0.411765, 0.705882, 1)" + }, + { + "name": "INDIAN_RED", + "type": "Color", + "value": "Color(0.803922, 0.360784, 0.360784, 1)" + }, + { + "name": "INDIGO", + "type": "Color", + "value": "Color(0.294118, 0, 0.509804, 1)" + }, + { + "name": "IVORY", + "type": "Color", + "value": "Color(1, 1, 0.941176, 1)" + }, + { + "name": "KHAKI", + "type": "Color", + "value": "Color(0.941176, 0.901961, 0.54902, 1)" + }, + { + "name": "LAVENDER", + "type": "Color", + "value": "Color(0.901961, 0.901961, 0.980392, 1)" + }, + { + "name": "LAVENDER_BLUSH", + "type": "Color", + "value": "Color(1, 0.941176, 0.960784, 1)" + }, + { + "name": "LAWN_GREEN", + "type": "Color", + "value": "Color(0.486275, 0.988235, 0, 1)" + }, + { + "name": "LEMON_CHIFFON", + "type": "Color", + "value": "Color(1, 0.980392, 0.803922, 1)" + }, + { + "name": "LIGHT_BLUE", + "type": "Color", + "value": "Color(0.678431, 0.847059, 0.901961, 1)" + }, + { + "name": "LIGHT_CORAL", + "type": "Color", + "value": "Color(0.941176, 0.501961, 0.501961, 1)" + }, + { + "name": "LIGHT_CYAN", + "type": "Color", + "value": "Color(0.878431, 1, 1, 1)" + }, + { + "name": "LIGHT_GOLDENROD", + "type": "Color", + "value": "Color(0.980392, 0.980392, 0.823529, 1)" + }, + { + "name": "LIGHT_GRAY", + "type": "Color", + "value": "Color(0.827451, 0.827451, 0.827451, 1)" + }, + { + "name": "LIGHT_GREEN", + "type": "Color", + "value": "Color(0.564706, 0.933333, 0.564706, 1)" + }, + { + "name": "LIGHT_PINK", + "type": "Color", + "value": "Color(1, 0.713726, 0.756863, 1)" + }, + { + "name": "LIGHT_SALMON", + "type": "Color", + "value": "Color(1, 0.627451, 0.478431, 1)" + }, + { + "name": "LIGHT_SEA_GREEN", + "type": "Color", + "value": "Color(0.12549, 0.698039, 0.666667, 1)" + }, + { + "name": "LIGHT_SKY_BLUE", + "type": "Color", + "value": "Color(0.529412, 0.807843, 0.980392, 1)" + }, + { + "name": "LIGHT_SLATE_GRAY", + "type": "Color", + "value": "Color(0.466667, 0.533333, 0.6, 1)" + }, + { + "name": "LIGHT_STEEL_BLUE", + "type": "Color", + "value": "Color(0.690196, 0.768627, 0.870588, 1)" + }, + { + "name": "LIGHT_YELLOW", + "type": "Color", + "value": "Color(1, 1, 0.878431, 1)" + }, + { + "name": "LIME", + "type": "Color", + "value": "Color(0, 1, 0, 1)" + }, + { + "name": "LIME_GREEN", + "type": "Color", + "value": "Color(0.196078, 0.803922, 0.196078, 1)" + }, + { + "name": "LINEN", + "type": "Color", + "value": "Color(0.980392, 0.941176, 0.901961, 1)" + }, + { + "name": "MAGENTA", + "type": "Color", + "value": "Color(1, 0, 1, 1)" + }, + { + "name": "MAROON", + "type": "Color", + "value": "Color(0.690196, 0.188235, 0.376471, 1)" + }, + { + "name": "MEDIUM_AQUAMARINE", + "type": "Color", + "value": "Color(0.4, 0.803922, 0.666667, 1)" + }, + { + "name": "MEDIUM_BLUE", + "type": "Color", + "value": "Color(0, 0, 0.803922, 1)" + }, + { + "name": "MEDIUM_ORCHID", + "type": "Color", + "value": "Color(0.729412, 0.333333, 0.827451, 1)" + }, + { + "name": "MEDIUM_PURPLE", + "type": "Color", + "value": "Color(0.576471, 0.439216, 0.858824, 1)" + }, + { + "name": "MEDIUM_SEA_GREEN", + "type": "Color", + "value": "Color(0.235294, 0.701961, 0.443137, 1)" + }, + { + "name": "MEDIUM_SLATE_BLUE", + "type": "Color", + "value": "Color(0.482353, 0.407843, 0.933333, 1)" + }, + { + "name": "MEDIUM_SPRING_GREEN", + "type": "Color", + "value": "Color(0, 0.980392, 0.603922, 1)" + }, + { + "name": "MEDIUM_TURQUOISE", + "type": "Color", + "value": "Color(0.282353, 0.819608, 0.8, 1)" + }, + { + "name": "MEDIUM_VIOLET_RED", + "type": "Color", + "value": "Color(0.780392, 0.0823529, 0.521569, 1)" + }, + { + "name": "MIDNIGHT_BLUE", + "type": "Color", + "value": "Color(0.0980392, 0.0980392, 0.439216, 1)" + }, + { + "name": "MINT_CREAM", + "type": "Color", + "value": "Color(0.960784, 1, 0.980392, 1)" + }, + { + "name": "MISTY_ROSE", + "type": "Color", + "value": "Color(1, 0.894118, 0.882353, 1)" + }, + { + "name": "MOCCASIN", + "type": "Color", + "value": "Color(1, 0.894118, 0.709804, 1)" + }, + { + "name": "NAVAJO_WHITE", + "type": "Color", + "value": "Color(1, 0.870588, 0.678431, 1)" + }, + { + "name": "NAVY_BLUE", + "type": "Color", + "value": "Color(0, 0, 0.501961, 1)" + }, + { + "name": "OLD_LACE", + "type": "Color", + "value": "Color(0.992157, 0.960784, 0.901961, 1)" + }, + { + "name": "OLIVE", + "type": "Color", + "value": "Color(0.501961, 0.501961, 0, 1)" + }, + { + "name": "OLIVE_DRAB", + "type": "Color", + "value": "Color(0.419608, 0.556863, 0.137255, 1)" + }, + { + "name": "ORANGE", + "type": "Color", + "value": "Color(1, 0.647059, 0, 1)" + }, + { + "name": "ORANGE_RED", + "type": "Color", + "value": "Color(1, 0.270588, 0, 1)" + }, + { + "name": "ORCHID", + "type": "Color", + "value": "Color(0.854902, 0.439216, 0.839216, 1)" + }, + { + "name": "PALE_GOLDENROD", + "type": "Color", + "value": "Color(0.933333, 0.909804, 0.666667, 1)" + }, + { + "name": "PALE_GREEN", + "type": "Color", + "value": "Color(0.596078, 0.984314, 0.596078, 1)" + }, + { + "name": "PALE_TURQUOISE", + "type": "Color", + "value": "Color(0.686275, 0.933333, 0.933333, 1)" + }, + { + "name": "PALE_VIOLET_RED", + "type": "Color", + "value": "Color(0.858824, 0.439216, 0.576471, 1)" + }, + { + "name": "PAPAYA_WHIP", + "type": "Color", + "value": "Color(1, 0.937255, 0.835294, 1)" + }, + { + "name": "PEACH_PUFF", + "type": "Color", + "value": "Color(1, 0.854902, 0.72549, 1)" + }, + { + "name": "PERU", + "type": "Color", + "value": "Color(0.803922, 0.521569, 0.247059, 1)" + }, + { + "name": "PINK", + "type": "Color", + "value": "Color(1, 0.752941, 0.796078, 1)" + }, + { + "name": "PLUM", + "type": "Color", + "value": "Color(0.866667, 0.627451, 0.866667, 1)" + }, + { + "name": "POWDER_BLUE", + "type": "Color", + "value": "Color(0.690196, 0.878431, 0.901961, 1)" + }, + { + "name": "PURPLE", + "type": "Color", + "value": "Color(0.627451, 0.12549, 0.941176, 1)" + }, + { + "name": "REBECCA_PURPLE", + "type": "Color", + "value": "Color(0.4, 0.2, 0.6, 1)" + }, + { + "name": "RED", + "type": "Color", + "value": "Color(1, 0, 0, 1)" + }, + { + "name": "ROSY_BROWN", + "type": "Color", + "value": "Color(0.737255, 0.560784, 0.560784, 1)" + }, + { + "name": "ROYAL_BLUE", + "type": "Color", + "value": "Color(0.254902, 0.411765, 0.882353, 1)" + }, + { + "name": "SADDLE_BROWN", + "type": "Color", + "value": "Color(0.545098, 0.270588, 0.0745098, 1)" + }, + { + "name": "SALMON", + "type": "Color", + "value": "Color(0.980392, 0.501961, 0.447059, 1)" + }, + { + "name": "SANDY_BROWN", + "type": "Color", + "value": "Color(0.956863, 0.643137, 0.376471, 1)" + }, + { + "name": "SEA_GREEN", + "type": "Color", + "value": "Color(0.180392, 0.545098, 0.341176, 1)" + }, + { + "name": "SEASHELL", + "type": "Color", + "value": "Color(1, 0.960784, 0.933333, 1)" + }, + { + "name": "SIENNA", + "type": "Color", + "value": "Color(0.627451, 0.321569, 0.176471, 1)" + }, + { + "name": "SILVER", + "type": "Color", + "value": "Color(0.752941, 0.752941, 0.752941, 1)" + }, + { + "name": "SKY_BLUE", + "type": "Color", + "value": "Color(0.529412, 0.807843, 0.921569, 1)" + }, + { + "name": "SLATE_BLUE", + "type": "Color", + "value": "Color(0.415686, 0.352941, 0.803922, 1)" + }, + { + "name": "SLATE_GRAY", + "type": "Color", + "value": "Color(0.439216, 0.501961, 0.564706, 1)" + }, + { + "name": "SNOW", + "type": "Color", + "value": "Color(1, 0.980392, 0.980392, 1)" + }, + { + "name": "SPRING_GREEN", + "type": "Color", + "value": "Color(0, 1, 0.498039, 1)" + }, + { + "name": "STEEL_BLUE", + "type": "Color", + "value": "Color(0.27451, 0.509804, 0.705882, 1)" + }, + { + "name": "TAN", + "type": "Color", + "value": "Color(0.823529, 0.705882, 0.54902, 1)" + }, + { + "name": "TEAL", + "type": "Color", + "value": "Color(0, 0.501961, 0.501961, 1)" + }, + { + "name": "THISTLE", + "type": "Color", + "value": "Color(0.847059, 0.74902, 0.847059, 1)" + }, + { + "name": "TOMATO", + "type": "Color", + "value": "Color(1, 0.388235, 0.278431, 1)" + }, + { + "name": "TRANSPARENT", + "type": "Color", + "value": "Color(1, 1, 1, 0)" + }, + { + "name": "TURQUOISE", + "type": "Color", + "value": "Color(0.25098, 0.878431, 0.815686, 1)" + }, + { + "name": "VIOLET", + "type": "Color", + "value": "Color(0.933333, 0.509804, 0.933333, 1)" + }, + { + "name": "WEB_GRAY", + "type": "Color", + "value": "Color(0.501961, 0.501961, 0.501961, 1)" + }, + { + "name": "WEB_GREEN", + "type": "Color", + "value": "Color(0, 0.501961, 0, 1)" + }, + { + "name": "WEB_MAROON", + "type": "Color", + "value": "Color(0.501961, 0, 0, 1)" + }, + { + "name": "WEB_PURPLE", + "type": "Color", + "value": "Color(0.501961, 0, 0.501961, 1)" + }, + { + "name": "WHEAT", + "type": "Color", + "value": "Color(0.960784, 0.870588, 0.701961, 1)" + }, + { + "name": "WHITE", + "type": "Color", + "value": "Color(1, 1, 1, 1)" + }, + { + "name": "WHITE_SMOKE", + "type": "Color", + "value": "Color(0.960784, 0.960784, 0.960784, 1)" + }, + { + "name": "YELLOW", + "type": "Color", + "value": "Color(1, 1, 0, 1)" + }, + { + "name": "YELLOW_GREEN", + "type": "Color", + "value": "Color(0.603922, 0.803922, 0.196078, 1)" + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Color" + }, + { + "name": "unary+", + "return_type": "Color" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Color" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Color" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Color" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Color" + }, + { + "name": "==", + "right_type": "Color", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Color", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Color", + "return_type": "Color" + }, + { + "name": "-", + "right_type": "Color", + "return_type": "Color" + }, + { + "name": "*", + "right_type": "Color", + "return_type": "Color" + }, + { + "name": "/", + "right_type": "Color", + "return_type": "Color" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "PackedColorArray", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "to_argb32", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_abgr32", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_rgba32", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_argb64", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_abgr64", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_rgba64", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "to_html", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "with_alpha", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "clamp", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "min", + "type": "Color", + "default_value": "Color(0, 0, 0, 0)" + }, + { + "name": "max", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "inverted", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193304 + }, + { + "name": "lerp", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "to", + "type": "Color" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "lightened", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "amount", + "type": "float" + } + ] + }, + { + "name": "darkened", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "amount", + "type": "float" + } + ] + }, + { + "name": "blend", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "over", + "type": "Color" + } + ] + }, + { + "name": "get_luminance", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192842 + }, + { + "name": "srgb_to_linear", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193304 + }, + { + "name": "linear_to_srgb", + "return_type": "Color", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193304 + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "to", + "type": "Color" + } + ] + }, + { + "name": "hex", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "hex", + "type": "int" + } + ] + }, + { + "name": "hex64", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "hex", + "type": "int" + } + ] + }, + { + "name": "html", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 4, + "arguments": [ + { + "name": "rgba", + "type": "String" + } + ] + }, + { + "name": "html_is_valid", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 4, + "arguments": [ + { + "name": "color", + "type": "String" + } + ] + }, + { + "name": "find_named_color", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 4, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_named_color_count", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 133243337 + }, + { + "name": "get_named_color_name", + "return_type": "String", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "get_named_color", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "from_string", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 17, + "arguments": [ + { + "name": "str", + "type": "String" + }, + { + "name": "default", + "type": "Color" + } + ] + }, + { + "name": "from_hsv", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3, + "arguments": [ + { + "name": "h", + "type": "float" + }, + { + "name": "s", + "type": "float" + }, + { + "name": "v", + "type": "float" + }, + { + "name": "alpha", + "type": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "from_ok_hsl", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3, + "arguments": [ + { + "name": "h", + "type": "float" + }, + { + "name": "s", + "type": "float" + }, + { + "name": "l", + "type": "float" + }, + { + "name": "alpha", + "type": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "from_rgbe9995", + "return_type": "Color", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2, + "arguments": [ + { + "name": "rgbe", + "type": "int" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Color" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Color" + }, + { + "name": "alpha", + "type": "float" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "r", + "type": "float" + }, + { + "name": "g", + "type": "float" + }, + { + "name": "b", + "type": "float" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "r", + "type": "float" + }, + { + "name": "g", + "type": "float" + }, + { + "name": "b", + "type": "float" + }, + { + "name": "a", + "type": "float" + } + ] + }, + { + "index": 5, + "arguments": [ + { + "name": "code", + "type": "String" + } + ] + }, + { + "index": 6, + "arguments": [ + { + "name": "code", + "type": "String" + }, + { + "name": "alpha", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "StringName", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "String", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "StringName", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Object", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "hash", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "StringName" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "String" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "NodePath", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "NodePath", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "NodePath", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "is_absolute", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "get_name_count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "get_name", + "return_type": "StringName", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "get_subname_count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "hash", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "get_subname", + "return_type": "StringName", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "get_concatenated_subnames", + "return_type": "StringName", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193337 + }, + { + "name": "get_as_property_path", + "return_type": "NodePath", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193370 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "NodePath" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "String" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "RID", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "RID", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "RID", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "is_valid", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "get_id", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "RID" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Callable", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Callable", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Callable", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "is_null", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_custom", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_standard", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "is_valid", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "get_object", + "return_type": "Object", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193436 + }, + { + "name": "get_object_id", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "get_method", + "return_type": "StringName", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193337 + }, + { + "name": "hash", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "unbind", + "return_type": "Callable", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "argcount", + "type": "int" + } + ] + }, + { + "name": "call", + "return_type": "Variant", + "is_vararg": true, + "is_const": true, + "is_static": false, + "hash": 171228680 + }, + { + "name": "call_deferred", + "is_vararg": true, + "is_const": true, + "is_static": false, + "hash": 135339239 + }, + { + "name": "rpc", + "is_vararg": true, + "is_const": true, + "is_static": false, + "hash": 135339239 + }, + { + "name": "rpc_id", + "is_vararg": true, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "peer_id", + "type": "int" + } + ] + }, + { + "name": "bind", + "return_type": "Callable", + "is_vararg": true, + "is_const": true, + "is_static": false, + "hash": 171229406 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Callable" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Signal", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Signal", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Signal", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "is_null", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "get_object", + "return_type": "Object", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193436 + }, + { + "name": "get_object_id", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "get_name", + "return_type": "StringName", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193337 + }, + { + "name": "connect", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "callable", + "type": "Callable" + }, + { + "name": "flags", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "disconnect", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "is_connected", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "get_connections", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193568 + }, + { + "name": "emit", + "is_vararg": true, + "is_const": true, + "is_static": false, + "hash": 135339239 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Signal" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "signal", + "type": "StringName" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Dictionary", + "indexing_return_type": "Variant", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "clear", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "merge", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "dictionary", + "type": "Dictionary" + }, + { + "name": "overwrite", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "key", + "type": "Variant" + } + ] + }, + { + "name": "has_all", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 25, + "arguments": [ + { + "name": "keys", + "type": "Array" + } + ] + }, + { + "name": "erase", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "key", + "type": "Variant" + } + ] + }, + { + "name": "hash", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "keys", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193568 + }, + { + "name": "values", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193568 + }, + { + "name": "duplicate", + "return_type": "Dictionary", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "deep", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "key", + "type": "Variant" + }, + { + "name": "default", + "type": "Variant", + "default_value": "null" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Dictionary" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "Array", + "indexing_return_type": "Variant", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Array", + "return_type": "Array" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "clear", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "hash", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "push_back", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "push_front", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "append", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 25, + "arguments": [ + { + "name": "array", + "type": "Array" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "position", + "type": "int" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "position", + "type": "int" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "erase", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "front", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192743 + }, + { + "name": "back", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192743 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "Variant" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "what", + "type": "Variant" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "find_last", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "pop_back", + "return_type": "Variant", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132057350 + }, + { + "name": "pop_front", + "return_type": "Variant", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132057350 + }, + { + "name": "pop_at", + "return_type": "Variant", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "position", + "type": "int" + } + ] + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "sort_custom", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "func", + "type": "Callable" + } + ] + }, + { + "name": "shuffle", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "Variant" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "bsearch_custom", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "Variant" + }, + { + "name": "func", + "type": "Callable" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "duplicate", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "deep", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "slice", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + }, + { + "name": "step", + "type": "int", + "default_value": "1" + }, + { + "name": "deep", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "filter", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "method", + "type": "Callable" + } + ] + }, + { + "name": "map", + "return_type": "Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "method", + "type": "Callable" + } + ] + }, + { + "name": "reduce", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 0, + "arguments": [ + { + "name": "method", + "type": "Callable" + }, + { + "name": "accum", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "any", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "method", + "type": "Callable" + } + ] + }, + { + "name": "all", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 22, + "arguments": [ + { + "name": "method", + "type": "Callable" + } + ] + }, + { + "name": "max", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192743 + }, + { + "name": "min", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192743 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "PackedByteArray" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "from", + "type": "PackedInt32Array" + } + ] + }, + { + "index": 4, + "arguments": [ + { + "name": "from", + "type": "PackedInt64Array" + } + ] + }, + { + "index": 5, + "arguments": [ + { + "name": "from", + "type": "PackedFloat32Array" + } + ] + }, + { + "index": 6, + "arguments": [ + { + "name": "from", + "type": "PackedFloat64Array" + } + ] + }, + { + "index": 7, + "arguments": [ + { + "name": "from", + "type": "PackedStringArray" + } + ] + }, + { + "index": 8, + "arguments": [ + { + "name": "from", + "type": "PackedVector2Array" + } + ] + }, + { + "index": 9, + "arguments": [ + { + "name": "from", + "type": "PackedVector3Array" + } + ] + }, + { + "index": 10, + "arguments": [ + { + "name": "from", + "type": "PackedColorArray" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedByteArray", + "indexing_return_type": "int", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedByteArray", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedByteArray", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedByteArray", + "return_type": "PackedByteArray" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 26, + "arguments": [ + { + "name": "array", + "type": "PackedByteArray" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058208 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "get_string_from_ascii", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "get_string_from_utf8", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "get_string_from_utf16", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "get_string_from_utf32", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "hex_encode", + "return_type": "String", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192875 + }, + { + "name": "compress", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "compression_mode", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "decompress", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "buffer_size", + "type": "int" + }, + { + "name": "compression_mode", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "decompress_dynamic", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "max_output_size", + "type": "int" + }, + { + "name": "compression_mode", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "decode_u8", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_s8", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_u16", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_s16", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_u32", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_s32", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_u64", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_s64", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_half", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_float", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "decode_double", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + } + ] + }, + { + "name": "has_encoded_var", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "decode_var", + "return_type": "Variant", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "decode_var_size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "to_int32_array", + "return_type": "PackedInt32Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193634 + }, + { + "name": "to_int64_array", + "return_type": "PackedInt64Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193667 + }, + { + "name": "to_float32_array", + "return_type": "PackedFloat32Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193700 + }, + { + "name": "to_float64_array", + "return_type": "PackedFloat64Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193733 + }, + { + "name": "encode_u8", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_s8", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_u16", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_s16", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_u32", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_s32", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_u64", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_s64", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "encode_half", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "encode_float", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "encode_double", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "encode_var", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "byte_offset", + "type": "int" + }, + { + "name": "value", + "type": "Variant" + }, + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedByteArray" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedInt32Array", + "indexing_return_type": "int", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedInt32Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedInt32Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedInt32Array", + "return_type": "PackedInt32Array" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 27, + "arguments": [ + { + "name": "array", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedInt32Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedInt32Array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058241 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedInt32Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedInt64Array", + "indexing_return_type": "int", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedInt64Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedInt64Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedInt64Array", + "return_type": "PackedInt64Array" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 28, + "arguments": [ + { + "name": "array", + "type": "PackedInt64Array" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedInt64Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedInt64Array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058274 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "int" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedInt64Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedFloat32Array", + "indexing_return_type": "float", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedFloat32Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedFloat32Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedFloat32Array", + "return_type": "PackedFloat32Array" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 29, + "arguments": [ + { + "name": "array", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedFloat32Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedFloat32Array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058307 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedFloat32Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedFloat64Array", + "indexing_return_type": "float", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedFloat64Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedFloat64Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedFloat64Array", + "return_type": "PackedFloat64Array" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 30, + "arguments": [ + { + "name": "array", + "type": "PackedFloat64Array" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedFloat64Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedFloat64Array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058340 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "float" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3, + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedFloat64Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedStringArray", + "indexing_return_type": "String", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedStringArray", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedStringArray", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedStringArray", + "return_type": "PackedStringArray" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 31, + "arguments": [ + { + "name": "array", + "type": "PackedStringArray" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedStringArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "String" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedStringArray", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058373 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "String" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedStringArray" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedVector2Array", + "indexing_return_type": "Vector2", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Transform2D", + "return_type": "PackedVector2Array" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedVector2Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedVector2Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedVector2Array", + "return_type": "PackedVector2Array" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 32, + "arguments": [ + { + "name": "array", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedVector2Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "Vector2" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedVector2Array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058406 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "Vector2" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "Vector2" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 5, + "arguments": [ + { + "name": "value", + "type": "Vector2" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedVector2Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedVector3Array", + "indexing_return_type": "Vector3", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Transform3D", + "return_type": "PackedVector3Array" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedVector3Array", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedVector3Array", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedVector3Array", + "return_type": "PackedVector3Array" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 33, + "arguments": [ + { + "name": "array", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedVector3Array", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "Vector3" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedVector3Array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058439 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "Vector3" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "Vector3" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 9, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedVector3Array" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + }, + { + "name": "PackedColorArray", + "indexing_return_type": "Color", + "is_keyed": true, + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "PackedColorArray", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "PackedColorArray", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "PackedColorArray", + "return_type": "PackedColorArray" + } + ], + "methods": [ + { + "name": "size", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192809 + }, + { + "name": "is_empty", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171192776 + }, + { + "name": "set", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "push_back", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "append", + "return_type": "bool", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "append_array", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 34, + "arguments": [ + { + "name": "array", + "type": "PackedColorArray" + } + ] + }, + { + "name": "remove_at", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "insert", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "at_index", + "type": "int" + }, + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "fill", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "resize", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "new_size", + "type": "int" + } + ] + }, + { + "name": "has", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "reverse", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "slice", + "return_type": "PackedColorArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "begin", + "type": "int" + }, + { + "name": "end", + "type": "int", + "default_value": "2147483647" + } + ] + }, + { + "name": "to_byte_array", + "return_type": "PackedByteArray", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 171193601 + }, + { + "name": "sort", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 134152229 + }, + { + "name": "bsearch", + "return_type": "int", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 1, + "arguments": [ + { + "name": "value", + "type": "Color" + }, + { + "name": "before", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "duplicate", + "return_type": "PackedColorArray", + "is_vararg": false, + "is_const": false, + "is_static": false, + "hash": 132058472 + }, + { + "name": "find", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "Color" + }, + { + "name": "from", + "type": "int", + "default_value": "0" + } + ] + }, + { + "name": "rfind", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2, + "arguments": [ + { + "name": "value", + "type": "Color" + }, + { + "name": "from", + "type": "int", + "default_value": "-1" + } + ] + }, + { + "name": "count", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 17, + "arguments": [ + { + "name": "value", + "type": "Color" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "PackedColorArray" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Array" + } + ] + } + ], + "has_destructor": true + } + ], + "classes": [ + { + "name": "AESContext", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_ECB_ENCRYPT", + "value": 0 + }, + { + "name": "MODE_ECB_DECRYPT", + "value": 1 + }, + { + "name": "MODE_CBC_ENCRYPT", + "value": 2 + }, + { + "name": "MODE_CBC_DECRYPT", + "value": 3 + }, + { + "name": "MODE_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::AESContext.Mode" + }, + { + "name": "key", + "type": "PackedByteArray" + }, + { + "name": "iv", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + } + ] + }, + { + "name": "update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "src", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_iv_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "finish", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "AStar2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "_estimate_cost", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "from_id", + "type": "int" + }, + { + "name": "to_id", + "type": "int" + } + ] + }, + { + "name": "_compute_cost", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "from_id", + "type": "int" + }, + { + "name": "to_id", + "type": "int" + } + ] + }, + { + "name": "get_available_point_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + }, + { + "name": "weight_scale", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "get_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_point_weight_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_weight_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "weight_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_ids", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_point_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "is_point_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "connect_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + }, + { + "name": "bidirectional", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "disconnect_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "are_points_connected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_point_capacity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "reserve_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "num_nodes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "to_position", + "type": "Vector2" + }, + { + "name": "include_disabled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_closest_position_in_segment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "to_position", + "type": "Vector2" + } + ] + }, + { + "name": "get_point_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "from_id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_id_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "from_id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "AStar3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "_estimate_cost", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "from_id", + "type": "int" + }, + { + "name": "to_id", + "type": "int" + } + ] + }, + { + "name": "_compute_cost", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "from_id", + "type": "int" + }, + { + "name": "to_id", + "type": "int" + } + ] + }, + { + "name": "get_available_point_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector3" + }, + { + "name": "weight_scale", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "get_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_point_weight_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_weight_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "weight_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_ids", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_point_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "is_point_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "connect_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + }, + { + "name": "bidirectional", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "disconnect_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + }, + { + "name": "bidirectional", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "are_points_connected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + }, + { + "name": "bidirectional", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_point_capacity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "reserve_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "num_nodes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "to_position", + "type": "Vector3" + }, + { + "name": "include_disabled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_closest_position_in_segment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "to_position", + "type": "Vector3" + } + ] + }, + { + "name": "get_point_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "from_id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_id_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "from_id", + "type": "int", + "meta": "int32" + }, + { + "name": "to_id", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "AcceptDialog", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Window", + "api_type": "core", + "methods": [ + { + "name": "get_ok_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Button" + } + }, + { + "name": "get_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Label" + } + }, + { + "name": "set_hide_on_ok", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_hide_on_ok", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_close_on_escape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_close_on_escape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "add_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474135307, + "return_value": { + "type": "Button" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "right", + "type": "bool", + "default_value": "false" + }, + { + "name": "action", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "add_cancel_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Button" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "remove_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "button", + "type": "Control" + } + ] + }, + { + "name": "register_text_enter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line_edit", + "type": "Control" + } + ] + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_autowrap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "autowrap", + "type": "bool" + } + ] + }, + { + "name": "has_autowrap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "confirmed" + }, + { + "name": "cancelled" + }, + { + "name": "custom_action", + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "dialog_text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "bool", + "name": "dialog_hide_on_ok", + "setter": "set_hide_on_ok", + "getter": "get_hide_on_ok", + "index": -1 + }, + { + "type": "bool", + "name": "dialog_close_on_escape", + "setter": "set_close_on_escape", + "getter": "get_close_on_escape", + "index": -1 + }, + { + "type": "bool", + "name": "dialog_autowrap", + "setter": "set_autowrap", + "getter": "has_autowrap", + "index": -1 + } + ] + }, + { + "name": "AnimatableBody2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "StaticBody2D", + "api_type": "core", + "methods": [ + { + "name": "set_sync_to_physics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_sync_to_physics_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync_to_physics", + "setter": "set_sync_to_physics", + "getter": "is_sync_to_physics_enabled", + "index": -1 + } + ] + }, + { + "name": "AnimatableBody3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "StaticBody3D", + "api_type": "core", + "methods": [ + { + "name": "set_sync_to_physics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_sync_to_physics_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync_to_physics", + "setter": "set_sync_to_physics", + "getter": "is_sync_to_physics_enabled", + "index": -1 + } + ] + }, + { + "name": "AnimatedSprite2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_sprite_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sprite_frames", + "type": "SpriteFrames" + } + ] + }, + { + "name": "get_sprite_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SpriteFrames" + } + }, + { + "name": "set_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "animation", + "type": "StringName" + } + ] + }, + { + "name": "get_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_playing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "playing", + "type": "bool" + } + ] + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 143531945, + "arguments": [ + { + "name": "anim", + "type": "StringName", + "default_value": "&\"\"" + }, + { + "name": "backwards", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_centered", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "centered", + "type": "bool" + } + ] + }, + { + "name": "is_centered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_flip_h", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_h", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_h", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_v", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "speed_scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + } + ], + "signals": [ + { + "name": "frame_changed" + }, + { + "name": "animation_finished" + } + ], + "properties": [ + { + "type": "SpriteFrames", + "name": "frames", + "setter": "set_sprite_frames", + "getter": "get_sprite_frames", + "index": -1 + }, + { + "type": "StringName", + "name": "animation", + "setter": "set_animation", + "getter": "get_animation", + "index": -1 + }, + { + "type": "int", + "name": "frame", + "setter": "set_frame", + "getter": "get_frame", + "index": -1 + }, + { + "type": "float", + "name": "speed_scale", + "setter": "set_speed_scale", + "getter": "get_speed_scale", + "index": -1 + }, + { + "type": "bool", + "name": "playing", + "setter": "set_playing", + "getter": "is_playing", + "index": -1 + }, + { + "type": "bool", + "name": "centered", + "setter": "set_centered", + "getter": "is_centered", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "bool", + "name": "flip_h", + "setter": "set_flip_h", + "getter": "is_flipped_h", + "index": -1 + }, + { + "type": "bool", + "name": "flip_v", + "setter": "set_flip_v", + "getter": "is_flipped_v", + "index": -1 + } + ] + }, + { + "name": "AnimatedSprite3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "SpriteBase3D", + "api_type": "core", + "methods": [ + { + "name": "set_sprite_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sprite_frames", + "type": "SpriteFrames" + } + ] + }, + { + "name": "get_sprite_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SpriteFrames" + } + }, + { + "name": "set_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "animation", + "type": "StringName" + } + ] + }, + { + "name": "get_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133278119, + "arguments": [ + { + "name": "anim", + "type": "StringName", + "default_value": "&\"\"" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "signals": [ + { + "name": "frame_changed" + }, + { + "name": "animation_finished" + } + ], + "properties": [ + { + "type": "SpriteFrames", + "name": "frames", + "setter": "set_sprite_frames", + "getter": "get_sprite_frames", + "index": -1 + }, + { + "type": "String", + "name": "animation", + "setter": "set_animation", + "getter": "get_animation", + "index": -1 + }, + { + "type": "int", + "name": "frame", + "setter": "set_frame", + "getter": "get_frame", + "index": -1 + }, + { + "type": "bool", + "name": "playing", + "setter": "_set_playing", + "getter": "_is_playing", + "index": -1 + } + ] + }, + { + "name": "AnimatedTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "constants": [ + { + "name": "MAX_FRAMES", + "value": 256 + } + ], + "methods": [ + { + "name": "set_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_current_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_pause", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pause", + "type": "bool" + } + ] + }, + { + "name": "get_pause", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_oneshot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "oneshot", + "type": "bool" + } + ] + }, + { + "name": "get_oneshot", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fps", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_frame_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_frame_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_frame_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + }, + { + "name": "delay", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_frame_delay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "frames", + "setter": "set_frames", + "getter": "get_frames", + "index": -1 + }, + { + "type": "int", + "name": "current_frame", + "setter": "set_current_frame", + "getter": "get_current_frame", + "index": -1 + }, + { + "type": "bool", + "name": "pause", + "setter": "set_pause", + "getter": "get_pause", + "index": -1 + }, + { + "type": "bool", + "name": "oneshot", + "setter": "set_oneshot", + "getter": "get_oneshot", + "index": -1 + }, + { + "type": "float", + "name": "fps", + "setter": "set_fps", + "getter": "get_fps", + "index": -1 + }, + { + "type": "Texture2D", + "name": "frame_0/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 0 + }, + { + "type": "float", + "name": "frame_0/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 0 + }, + { + "type": "Texture2D", + "name": "frame_1/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 1 + }, + { + "type": "float", + "name": "frame_1/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 1 + }, + { + "type": "Texture2D", + "name": "frame_2/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 2 + }, + { + "type": "float", + "name": "frame_2/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 2 + }, + { + "type": "Texture2D", + "name": "frame_3/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 3 + }, + { + "type": "float", + "name": "frame_3/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 3 + }, + { + "type": "Texture2D", + "name": "frame_4/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 4 + }, + { + "type": "float", + "name": "frame_4/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 4 + }, + { + "type": "Texture2D", + "name": "frame_5/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 5 + }, + { + "type": "float", + "name": "frame_5/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 5 + }, + { + "type": "Texture2D", + "name": "frame_6/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 6 + }, + { + "type": "float", + "name": "frame_6/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 6 + }, + { + "type": "Texture2D", + "name": "frame_7/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 7 + }, + { + "type": "float", + "name": "frame_7/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 7 + }, + { + "type": "Texture2D", + "name": "frame_8/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 8 + }, + { + "type": "float", + "name": "frame_8/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 8 + }, + { + "type": "Texture2D", + "name": "frame_9/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 9 + }, + { + "type": "float", + "name": "frame_9/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 9 + }, + { + "type": "Texture2D", + "name": "frame_10/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 10 + }, + { + "type": "float", + "name": "frame_10/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 10 + }, + { + "type": "Texture2D", + "name": "frame_11/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 11 + }, + { + "type": "float", + "name": "frame_11/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 11 + }, + { + "type": "Texture2D", + "name": "frame_12/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 12 + }, + { + "type": "float", + "name": "frame_12/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 12 + }, + { + "type": "Texture2D", + "name": "frame_13/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 13 + }, + { + "type": "float", + "name": "frame_13/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 13 + }, + { + "type": "Texture2D", + "name": "frame_14/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 14 + }, + { + "type": "float", + "name": "frame_14/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 14 + }, + { + "type": "Texture2D", + "name": "frame_15/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 15 + }, + { + "type": "float", + "name": "frame_15/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 15 + }, + { + "type": "Texture2D", + "name": "frame_16/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 16 + }, + { + "type": "float", + "name": "frame_16/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 16 + }, + { + "type": "Texture2D", + "name": "frame_17/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 17 + }, + { + "type": "float", + "name": "frame_17/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 17 + }, + { + "type": "Texture2D", + "name": "frame_18/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 18 + }, + { + "type": "float", + "name": "frame_18/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 18 + }, + { + "type": "Texture2D", + "name": "frame_19/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 19 + }, + { + "type": "float", + "name": "frame_19/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 19 + }, + { + "type": "Texture2D", + "name": "frame_20/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 20 + }, + { + "type": "float", + "name": "frame_20/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 20 + }, + { + "type": "Texture2D", + "name": "frame_21/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 21 + }, + { + "type": "float", + "name": "frame_21/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 21 + }, + { + "type": "Texture2D", + "name": "frame_22/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 22 + }, + { + "type": "float", + "name": "frame_22/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 22 + }, + { + "type": "Texture2D", + "name": "frame_23/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 23 + }, + { + "type": "float", + "name": "frame_23/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 23 + }, + { + "type": "Texture2D", + "name": "frame_24/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 24 + }, + { + "type": "float", + "name": "frame_24/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 24 + }, + { + "type": "Texture2D", + "name": "frame_25/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 25 + }, + { + "type": "float", + "name": "frame_25/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 25 + }, + { + "type": "Texture2D", + "name": "frame_26/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 26 + }, + { + "type": "float", + "name": "frame_26/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 26 + }, + { + "type": "Texture2D", + "name": "frame_27/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 27 + }, + { + "type": "float", + "name": "frame_27/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 27 + }, + { + "type": "Texture2D", + "name": "frame_28/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 28 + }, + { + "type": "float", + "name": "frame_28/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 28 + }, + { + "type": "Texture2D", + "name": "frame_29/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 29 + }, + { + "type": "float", + "name": "frame_29/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 29 + }, + { + "type": "Texture2D", + "name": "frame_30/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 30 + }, + { + "type": "float", + "name": "frame_30/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 30 + }, + { + "type": "Texture2D", + "name": "frame_31/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 31 + }, + { + "type": "float", + "name": "frame_31/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 31 + }, + { + "type": "Texture2D", + "name": "frame_32/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 32 + }, + { + "type": "float", + "name": "frame_32/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 32 + }, + { + "type": "Texture2D", + "name": "frame_33/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 33 + }, + { + "type": "float", + "name": "frame_33/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 33 + }, + { + "type": "Texture2D", + "name": "frame_34/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 34 + }, + { + "type": "float", + "name": "frame_34/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 34 + }, + { + "type": "Texture2D", + "name": "frame_35/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 35 + }, + { + "type": "float", + "name": "frame_35/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 35 + }, + { + "type": "Texture2D", + "name": "frame_36/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 36 + }, + { + "type": "float", + "name": "frame_36/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 36 + }, + { + "type": "Texture2D", + "name": "frame_37/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 37 + }, + { + "type": "float", + "name": "frame_37/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 37 + }, + { + "type": "Texture2D", + "name": "frame_38/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 38 + }, + { + "type": "float", + "name": "frame_38/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 38 + }, + { + "type": "Texture2D", + "name": "frame_39/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 39 + }, + { + "type": "float", + "name": "frame_39/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 39 + }, + { + "type": "Texture2D", + "name": "frame_40/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 40 + }, + { + "type": "float", + "name": "frame_40/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 40 + }, + { + "type": "Texture2D", + "name": "frame_41/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 41 + }, + { + "type": "float", + "name": "frame_41/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 41 + }, + { + "type": "Texture2D", + "name": "frame_42/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 42 + }, + { + "type": "float", + "name": "frame_42/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 42 + }, + { + "type": "Texture2D", + "name": "frame_43/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 43 + }, + { + "type": "float", + "name": "frame_43/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 43 + }, + { + "type": "Texture2D", + "name": "frame_44/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 44 + }, + { + "type": "float", + "name": "frame_44/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 44 + }, + { + "type": "Texture2D", + "name": "frame_45/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 45 + }, + { + "type": "float", + "name": "frame_45/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 45 + }, + { + "type": "Texture2D", + "name": "frame_46/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 46 + }, + { + "type": "float", + "name": "frame_46/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 46 + }, + { + "type": "Texture2D", + "name": "frame_47/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 47 + }, + { + "type": "float", + "name": "frame_47/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 47 + }, + { + "type": "Texture2D", + "name": "frame_48/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 48 + }, + { + "type": "float", + "name": "frame_48/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 48 + }, + { + "type": "Texture2D", + "name": "frame_49/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 49 + }, + { + "type": "float", + "name": "frame_49/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 49 + }, + { + "type": "Texture2D", + "name": "frame_50/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 50 + }, + { + "type": "float", + "name": "frame_50/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 50 + }, + { + "type": "Texture2D", + "name": "frame_51/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 51 + }, + { + "type": "float", + "name": "frame_51/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 51 + }, + { + "type": "Texture2D", + "name": "frame_52/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 52 + }, + { + "type": "float", + "name": "frame_52/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 52 + }, + { + "type": "Texture2D", + "name": "frame_53/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 53 + }, + { + "type": "float", + "name": "frame_53/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 53 + }, + { + "type": "Texture2D", + "name": "frame_54/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 54 + }, + { + "type": "float", + "name": "frame_54/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 54 + }, + { + "type": "Texture2D", + "name": "frame_55/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 55 + }, + { + "type": "float", + "name": "frame_55/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 55 + }, + { + "type": "Texture2D", + "name": "frame_56/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 56 + }, + { + "type": "float", + "name": "frame_56/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 56 + }, + { + "type": "Texture2D", + "name": "frame_57/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 57 + }, + { + "type": "float", + "name": "frame_57/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 57 + }, + { + "type": "Texture2D", + "name": "frame_58/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 58 + }, + { + "type": "float", + "name": "frame_58/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 58 + }, + { + "type": "Texture2D", + "name": "frame_59/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 59 + }, + { + "type": "float", + "name": "frame_59/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 59 + }, + { + "type": "Texture2D", + "name": "frame_60/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 60 + }, + { + "type": "float", + "name": "frame_60/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 60 + }, + { + "type": "Texture2D", + "name": "frame_61/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 61 + }, + { + "type": "float", + "name": "frame_61/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 61 + }, + { + "type": "Texture2D", + "name": "frame_62/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 62 + }, + { + "type": "float", + "name": "frame_62/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 62 + }, + { + "type": "Texture2D", + "name": "frame_63/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 63 + }, + { + "type": "float", + "name": "frame_63/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 63 + }, + { + "type": "Texture2D", + "name": "frame_64/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 64 + }, + { + "type": "float", + "name": "frame_64/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 64 + }, + { + "type": "Texture2D", + "name": "frame_65/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 65 + }, + { + "type": "float", + "name": "frame_65/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 65 + }, + { + "type": "Texture2D", + "name": "frame_66/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 66 + }, + { + "type": "float", + "name": "frame_66/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 66 + }, + { + "type": "Texture2D", + "name": "frame_67/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 67 + }, + { + "type": "float", + "name": "frame_67/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 67 + }, + { + "type": "Texture2D", + "name": "frame_68/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 68 + }, + { + "type": "float", + "name": "frame_68/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 68 + }, + { + "type": "Texture2D", + "name": "frame_69/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 69 + }, + { + "type": "float", + "name": "frame_69/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 69 + }, + { + "type": "Texture2D", + "name": "frame_70/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 70 + }, + { + "type": "float", + "name": "frame_70/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 70 + }, + { + "type": "Texture2D", + "name": "frame_71/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 71 + }, + { + "type": "float", + "name": "frame_71/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 71 + }, + { + "type": "Texture2D", + "name": "frame_72/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 72 + }, + { + "type": "float", + "name": "frame_72/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 72 + }, + { + "type": "Texture2D", + "name": "frame_73/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 73 + }, + { + "type": "float", + "name": "frame_73/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 73 + }, + { + "type": "Texture2D", + "name": "frame_74/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 74 + }, + { + "type": "float", + "name": "frame_74/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 74 + }, + { + "type": "Texture2D", + "name": "frame_75/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 75 + }, + { + "type": "float", + "name": "frame_75/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 75 + }, + { + "type": "Texture2D", + "name": "frame_76/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 76 + }, + { + "type": "float", + "name": "frame_76/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 76 + }, + { + "type": "Texture2D", + "name": "frame_77/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 77 + }, + { + "type": "float", + "name": "frame_77/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 77 + }, + { + "type": "Texture2D", + "name": "frame_78/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 78 + }, + { + "type": "float", + "name": "frame_78/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 78 + }, + { + "type": "Texture2D", + "name": "frame_79/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 79 + }, + { + "type": "float", + "name": "frame_79/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 79 + }, + { + "type": "Texture2D", + "name": "frame_80/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 80 + }, + { + "type": "float", + "name": "frame_80/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 80 + }, + { + "type": "Texture2D", + "name": "frame_81/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 81 + }, + { + "type": "float", + "name": "frame_81/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 81 + }, + { + "type": "Texture2D", + "name": "frame_82/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 82 + }, + { + "type": "float", + "name": "frame_82/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 82 + }, + { + "type": "Texture2D", + "name": "frame_83/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 83 + }, + { + "type": "float", + "name": "frame_83/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 83 + }, + { + "type": "Texture2D", + "name": "frame_84/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 84 + }, + { + "type": "float", + "name": "frame_84/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 84 + }, + { + "type": "Texture2D", + "name": "frame_85/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 85 + }, + { + "type": "float", + "name": "frame_85/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 85 + }, + { + "type": "Texture2D", + "name": "frame_86/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 86 + }, + { + "type": "float", + "name": "frame_86/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 86 + }, + { + "type": "Texture2D", + "name": "frame_87/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 87 + }, + { + "type": "float", + "name": "frame_87/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 87 + }, + { + "type": "Texture2D", + "name": "frame_88/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 88 + }, + { + "type": "float", + "name": "frame_88/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 88 + }, + { + "type": "Texture2D", + "name": "frame_89/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 89 + }, + { + "type": "float", + "name": "frame_89/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 89 + }, + { + "type": "Texture2D", + "name": "frame_90/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 90 + }, + { + "type": "float", + "name": "frame_90/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 90 + }, + { + "type": "Texture2D", + "name": "frame_91/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 91 + }, + { + "type": "float", + "name": "frame_91/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 91 + }, + { + "type": "Texture2D", + "name": "frame_92/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 92 + }, + { + "type": "float", + "name": "frame_92/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 92 + }, + { + "type": "Texture2D", + "name": "frame_93/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 93 + }, + { + "type": "float", + "name": "frame_93/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 93 + }, + { + "type": "Texture2D", + "name": "frame_94/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 94 + }, + { + "type": "float", + "name": "frame_94/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 94 + }, + { + "type": "Texture2D", + "name": "frame_95/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 95 + }, + { + "type": "float", + "name": "frame_95/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 95 + }, + { + "type": "Texture2D", + "name": "frame_96/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 96 + }, + { + "type": "float", + "name": "frame_96/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 96 + }, + { + "type": "Texture2D", + "name": "frame_97/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 97 + }, + { + "type": "float", + "name": "frame_97/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 97 + }, + { + "type": "Texture2D", + "name": "frame_98/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 98 + }, + { + "type": "float", + "name": "frame_98/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 98 + }, + { + "type": "Texture2D", + "name": "frame_99/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 99 + }, + { + "type": "float", + "name": "frame_99/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 99 + }, + { + "type": "Texture2D", + "name": "frame_100/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 100 + }, + { + "type": "float", + "name": "frame_100/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 100 + }, + { + "type": "Texture2D", + "name": "frame_101/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 101 + }, + { + "type": "float", + "name": "frame_101/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 101 + }, + { + "type": "Texture2D", + "name": "frame_102/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 102 + }, + { + "type": "float", + "name": "frame_102/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 102 + }, + { + "type": "Texture2D", + "name": "frame_103/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 103 + }, + { + "type": "float", + "name": "frame_103/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 103 + }, + { + "type": "Texture2D", + "name": "frame_104/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 104 + }, + { + "type": "float", + "name": "frame_104/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 104 + }, + { + "type": "Texture2D", + "name": "frame_105/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 105 + }, + { + "type": "float", + "name": "frame_105/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 105 + }, + { + "type": "Texture2D", + "name": "frame_106/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 106 + }, + { + "type": "float", + "name": "frame_106/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 106 + }, + { + "type": "Texture2D", + "name": "frame_107/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 107 + }, + { + "type": "float", + "name": "frame_107/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 107 + }, + { + "type": "Texture2D", + "name": "frame_108/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 108 + }, + { + "type": "float", + "name": "frame_108/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 108 + }, + { + "type": "Texture2D", + "name": "frame_109/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 109 + }, + { + "type": "float", + "name": "frame_109/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 109 + }, + { + "type": "Texture2D", + "name": "frame_110/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 110 + }, + { + "type": "float", + "name": "frame_110/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 110 + }, + { + "type": "Texture2D", + "name": "frame_111/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 111 + }, + { + "type": "float", + "name": "frame_111/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 111 + }, + { + "type": "Texture2D", + "name": "frame_112/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 112 + }, + { + "type": "float", + "name": "frame_112/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 112 + }, + { + "type": "Texture2D", + "name": "frame_113/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 113 + }, + { + "type": "float", + "name": "frame_113/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 113 + }, + { + "type": "Texture2D", + "name": "frame_114/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 114 + }, + { + "type": "float", + "name": "frame_114/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 114 + }, + { + "type": "Texture2D", + "name": "frame_115/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 115 + }, + { + "type": "float", + "name": "frame_115/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 115 + }, + { + "type": "Texture2D", + "name": "frame_116/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 116 + }, + { + "type": "float", + "name": "frame_116/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 116 + }, + { + "type": "Texture2D", + "name": "frame_117/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 117 + }, + { + "type": "float", + "name": "frame_117/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 117 + }, + { + "type": "Texture2D", + "name": "frame_118/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 118 + }, + { + "type": "float", + "name": "frame_118/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 118 + }, + { + "type": "Texture2D", + "name": "frame_119/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 119 + }, + { + "type": "float", + "name": "frame_119/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 119 + }, + { + "type": "Texture2D", + "name": "frame_120/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 120 + }, + { + "type": "float", + "name": "frame_120/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 120 + }, + { + "type": "Texture2D", + "name": "frame_121/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 121 + }, + { + "type": "float", + "name": "frame_121/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 121 + }, + { + "type": "Texture2D", + "name": "frame_122/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 122 + }, + { + "type": "float", + "name": "frame_122/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 122 + }, + { + "type": "Texture2D", + "name": "frame_123/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 123 + }, + { + "type": "float", + "name": "frame_123/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 123 + }, + { + "type": "Texture2D", + "name": "frame_124/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 124 + }, + { + "type": "float", + "name": "frame_124/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 124 + }, + { + "type": "Texture2D", + "name": "frame_125/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 125 + }, + { + "type": "float", + "name": "frame_125/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 125 + }, + { + "type": "Texture2D", + "name": "frame_126/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 126 + }, + { + "type": "float", + "name": "frame_126/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 126 + }, + { + "type": "Texture2D", + "name": "frame_127/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 127 + }, + { + "type": "float", + "name": "frame_127/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 127 + }, + { + "type": "Texture2D", + "name": "frame_128/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 128 + }, + { + "type": "float", + "name": "frame_128/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 128 + }, + { + "type": "Texture2D", + "name": "frame_129/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 129 + }, + { + "type": "float", + "name": "frame_129/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 129 + }, + { + "type": "Texture2D", + "name": "frame_130/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 130 + }, + { + "type": "float", + "name": "frame_130/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 130 + }, + { + "type": "Texture2D", + "name": "frame_131/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 131 + }, + { + "type": "float", + "name": "frame_131/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 131 + }, + { + "type": "Texture2D", + "name": "frame_132/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 132 + }, + { + "type": "float", + "name": "frame_132/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 132 + }, + { + "type": "Texture2D", + "name": "frame_133/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 133 + }, + { + "type": "float", + "name": "frame_133/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 133 + }, + { + "type": "Texture2D", + "name": "frame_134/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 134 + }, + { + "type": "float", + "name": "frame_134/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 134 + }, + { + "type": "Texture2D", + "name": "frame_135/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 135 + }, + { + "type": "float", + "name": "frame_135/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 135 + }, + { + "type": "Texture2D", + "name": "frame_136/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 136 + }, + { + "type": "float", + "name": "frame_136/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 136 + }, + { + "type": "Texture2D", + "name": "frame_137/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 137 + }, + { + "type": "float", + "name": "frame_137/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 137 + }, + { + "type": "Texture2D", + "name": "frame_138/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 138 + }, + { + "type": "float", + "name": "frame_138/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 138 + }, + { + "type": "Texture2D", + "name": "frame_139/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 139 + }, + { + "type": "float", + "name": "frame_139/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 139 + }, + { + "type": "Texture2D", + "name": "frame_140/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 140 + }, + { + "type": "float", + "name": "frame_140/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 140 + }, + { + "type": "Texture2D", + "name": "frame_141/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 141 + }, + { + "type": "float", + "name": "frame_141/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 141 + }, + { + "type": "Texture2D", + "name": "frame_142/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 142 + }, + { + "type": "float", + "name": "frame_142/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 142 + }, + { + "type": "Texture2D", + "name": "frame_143/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 143 + }, + { + "type": "float", + "name": "frame_143/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 143 + }, + { + "type": "Texture2D", + "name": "frame_144/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 144 + }, + { + "type": "float", + "name": "frame_144/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 144 + }, + { + "type": "Texture2D", + "name": "frame_145/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 145 + }, + { + "type": "float", + "name": "frame_145/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 145 + }, + { + "type": "Texture2D", + "name": "frame_146/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 146 + }, + { + "type": "float", + "name": "frame_146/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 146 + }, + { + "type": "Texture2D", + "name": "frame_147/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 147 + }, + { + "type": "float", + "name": "frame_147/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 147 + }, + { + "type": "Texture2D", + "name": "frame_148/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 148 + }, + { + "type": "float", + "name": "frame_148/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 148 + }, + { + "type": "Texture2D", + "name": "frame_149/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 149 + }, + { + "type": "float", + "name": "frame_149/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 149 + }, + { + "type": "Texture2D", + "name": "frame_150/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 150 + }, + { + "type": "float", + "name": "frame_150/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 150 + }, + { + "type": "Texture2D", + "name": "frame_151/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 151 + }, + { + "type": "float", + "name": "frame_151/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 151 + }, + { + "type": "Texture2D", + "name": "frame_152/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 152 + }, + { + "type": "float", + "name": "frame_152/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 152 + }, + { + "type": "Texture2D", + "name": "frame_153/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 153 + }, + { + "type": "float", + "name": "frame_153/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 153 + }, + { + "type": "Texture2D", + "name": "frame_154/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 154 + }, + { + "type": "float", + "name": "frame_154/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 154 + }, + { + "type": "Texture2D", + "name": "frame_155/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 155 + }, + { + "type": "float", + "name": "frame_155/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 155 + }, + { + "type": "Texture2D", + "name": "frame_156/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 156 + }, + { + "type": "float", + "name": "frame_156/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 156 + }, + { + "type": "Texture2D", + "name": "frame_157/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 157 + }, + { + "type": "float", + "name": "frame_157/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 157 + }, + { + "type": "Texture2D", + "name": "frame_158/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 158 + }, + { + "type": "float", + "name": "frame_158/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 158 + }, + { + "type": "Texture2D", + "name": "frame_159/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 159 + }, + { + "type": "float", + "name": "frame_159/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 159 + }, + { + "type": "Texture2D", + "name": "frame_160/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 160 + }, + { + "type": "float", + "name": "frame_160/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 160 + }, + { + "type": "Texture2D", + "name": "frame_161/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 161 + }, + { + "type": "float", + "name": "frame_161/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 161 + }, + { + "type": "Texture2D", + "name": "frame_162/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 162 + }, + { + "type": "float", + "name": "frame_162/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 162 + }, + { + "type": "Texture2D", + "name": "frame_163/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 163 + }, + { + "type": "float", + "name": "frame_163/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 163 + }, + { + "type": "Texture2D", + "name": "frame_164/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 164 + }, + { + "type": "float", + "name": "frame_164/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 164 + }, + { + "type": "Texture2D", + "name": "frame_165/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 165 + }, + { + "type": "float", + "name": "frame_165/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 165 + }, + { + "type": "Texture2D", + "name": "frame_166/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 166 + }, + { + "type": "float", + "name": "frame_166/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 166 + }, + { + "type": "Texture2D", + "name": "frame_167/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 167 + }, + { + "type": "float", + "name": "frame_167/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 167 + }, + { + "type": "Texture2D", + "name": "frame_168/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 168 + }, + { + "type": "float", + "name": "frame_168/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 168 + }, + { + "type": "Texture2D", + "name": "frame_169/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 169 + }, + { + "type": "float", + "name": "frame_169/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 169 + }, + { + "type": "Texture2D", + "name": "frame_170/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 170 + }, + { + "type": "float", + "name": "frame_170/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 170 + }, + { + "type": "Texture2D", + "name": "frame_171/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 171 + }, + { + "type": "float", + "name": "frame_171/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 171 + }, + { + "type": "Texture2D", + "name": "frame_172/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 172 + }, + { + "type": "float", + "name": "frame_172/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 172 + }, + { + "type": "Texture2D", + "name": "frame_173/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 173 + }, + { + "type": "float", + "name": "frame_173/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 173 + }, + { + "type": "Texture2D", + "name": "frame_174/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 174 + }, + { + "type": "float", + "name": "frame_174/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 174 + }, + { + "type": "Texture2D", + "name": "frame_175/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 175 + }, + { + "type": "float", + "name": "frame_175/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 175 + }, + { + "type": "Texture2D", + "name": "frame_176/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 176 + }, + { + "type": "float", + "name": "frame_176/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 176 + }, + { + "type": "Texture2D", + "name": "frame_177/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 177 + }, + { + "type": "float", + "name": "frame_177/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 177 + }, + { + "type": "Texture2D", + "name": "frame_178/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 178 + }, + { + "type": "float", + "name": "frame_178/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 178 + }, + { + "type": "Texture2D", + "name": "frame_179/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 179 + }, + { + "type": "float", + "name": "frame_179/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 179 + }, + { + "type": "Texture2D", + "name": "frame_180/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 180 + }, + { + "type": "float", + "name": "frame_180/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 180 + }, + { + "type": "Texture2D", + "name": "frame_181/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 181 + }, + { + "type": "float", + "name": "frame_181/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 181 + }, + { + "type": "Texture2D", + "name": "frame_182/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 182 + }, + { + "type": "float", + "name": "frame_182/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 182 + }, + { + "type": "Texture2D", + "name": "frame_183/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 183 + }, + { + "type": "float", + "name": "frame_183/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 183 + }, + { + "type": "Texture2D", + "name": "frame_184/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 184 + }, + { + "type": "float", + "name": "frame_184/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 184 + }, + { + "type": "Texture2D", + "name": "frame_185/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 185 + }, + { + "type": "float", + "name": "frame_185/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 185 + }, + { + "type": "Texture2D", + "name": "frame_186/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 186 + }, + { + "type": "float", + "name": "frame_186/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 186 + }, + { + "type": "Texture2D", + "name": "frame_187/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 187 + }, + { + "type": "float", + "name": "frame_187/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 187 + }, + { + "type": "Texture2D", + "name": "frame_188/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 188 + }, + { + "type": "float", + "name": "frame_188/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 188 + }, + { + "type": "Texture2D", + "name": "frame_189/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 189 + }, + { + "type": "float", + "name": "frame_189/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 189 + }, + { + "type": "Texture2D", + "name": "frame_190/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 190 + }, + { + "type": "float", + "name": "frame_190/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 190 + }, + { + "type": "Texture2D", + "name": "frame_191/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 191 + }, + { + "type": "float", + "name": "frame_191/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 191 + }, + { + "type": "Texture2D", + "name": "frame_192/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 192 + }, + { + "type": "float", + "name": "frame_192/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 192 + }, + { + "type": "Texture2D", + "name": "frame_193/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 193 + }, + { + "type": "float", + "name": "frame_193/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 193 + }, + { + "type": "Texture2D", + "name": "frame_194/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 194 + }, + { + "type": "float", + "name": "frame_194/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 194 + }, + { + "type": "Texture2D", + "name": "frame_195/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 195 + }, + { + "type": "float", + "name": "frame_195/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 195 + }, + { + "type": "Texture2D", + "name": "frame_196/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 196 + }, + { + "type": "float", + "name": "frame_196/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 196 + }, + { + "type": "Texture2D", + "name": "frame_197/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 197 + }, + { + "type": "float", + "name": "frame_197/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 197 + }, + { + "type": "Texture2D", + "name": "frame_198/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 198 + }, + { + "type": "float", + "name": "frame_198/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 198 + }, + { + "type": "Texture2D", + "name": "frame_199/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 199 + }, + { + "type": "float", + "name": "frame_199/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 199 + }, + { + "type": "Texture2D", + "name": "frame_200/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 200 + }, + { + "type": "float", + "name": "frame_200/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 200 + }, + { + "type": "Texture2D", + "name": "frame_201/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 201 + }, + { + "type": "float", + "name": "frame_201/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 201 + }, + { + "type": "Texture2D", + "name": "frame_202/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 202 + }, + { + "type": "float", + "name": "frame_202/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 202 + }, + { + "type": "Texture2D", + "name": "frame_203/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 203 + }, + { + "type": "float", + "name": "frame_203/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 203 + }, + { + "type": "Texture2D", + "name": "frame_204/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 204 + }, + { + "type": "float", + "name": "frame_204/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 204 + }, + { + "type": "Texture2D", + "name": "frame_205/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 205 + }, + { + "type": "float", + "name": "frame_205/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 205 + }, + { + "type": "Texture2D", + "name": "frame_206/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 206 + }, + { + "type": "float", + "name": "frame_206/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 206 + }, + { + "type": "Texture2D", + "name": "frame_207/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 207 + }, + { + "type": "float", + "name": "frame_207/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 207 + }, + { + "type": "Texture2D", + "name": "frame_208/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 208 + }, + { + "type": "float", + "name": "frame_208/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 208 + }, + { + "type": "Texture2D", + "name": "frame_209/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 209 + }, + { + "type": "float", + "name": "frame_209/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 209 + }, + { + "type": "Texture2D", + "name": "frame_210/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 210 + }, + { + "type": "float", + "name": "frame_210/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 210 + }, + { + "type": "Texture2D", + "name": "frame_211/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 211 + }, + { + "type": "float", + "name": "frame_211/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 211 + }, + { + "type": "Texture2D", + "name": "frame_212/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 212 + }, + { + "type": "float", + "name": "frame_212/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 212 + }, + { + "type": "Texture2D", + "name": "frame_213/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 213 + }, + { + "type": "float", + "name": "frame_213/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 213 + }, + { + "type": "Texture2D", + "name": "frame_214/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 214 + }, + { + "type": "float", + "name": "frame_214/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 214 + }, + { + "type": "Texture2D", + "name": "frame_215/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 215 + }, + { + "type": "float", + "name": "frame_215/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 215 + }, + { + "type": "Texture2D", + "name": "frame_216/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 216 + }, + { + "type": "float", + "name": "frame_216/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 216 + }, + { + "type": "Texture2D", + "name": "frame_217/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 217 + }, + { + "type": "float", + "name": "frame_217/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 217 + }, + { + "type": "Texture2D", + "name": "frame_218/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 218 + }, + { + "type": "float", + "name": "frame_218/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 218 + }, + { + "type": "Texture2D", + "name": "frame_219/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 219 + }, + { + "type": "float", + "name": "frame_219/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 219 + }, + { + "type": "Texture2D", + "name": "frame_220/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 220 + }, + { + "type": "float", + "name": "frame_220/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 220 + }, + { + "type": "Texture2D", + "name": "frame_221/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 221 + }, + { + "type": "float", + "name": "frame_221/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 221 + }, + { + "type": "Texture2D", + "name": "frame_222/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 222 + }, + { + "type": "float", + "name": "frame_222/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 222 + }, + { + "type": "Texture2D", + "name": "frame_223/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 223 + }, + { + "type": "float", + "name": "frame_223/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 223 + }, + { + "type": "Texture2D", + "name": "frame_224/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 224 + }, + { + "type": "float", + "name": "frame_224/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 224 + }, + { + "type": "Texture2D", + "name": "frame_225/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 225 + }, + { + "type": "float", + "name": "frame_225/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 225 + }, + { + "type": "Texture2D", + "name": "frame_226/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 226 + }, + { + "type": "float", + "name": "frame_226/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 226 + }, + { + "type": "Texture2D", + "name": "frame_227/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 227 + }, + { + "type": "float", + "name": "frame_227/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 227 + }, + { + "type": "Texture2D", + "name": "frame_228/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 228 + }, + { + "type": "float", + "name": "frame_228/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 228 + }, + { + "type": "Texture2D", + "name": "frame_229/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 229 + }, + { + "type": "float", + "name": "frame_229/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 229 + }, + { + "type": "Texture2D", + "name": "frame_230/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 230 + }, + { + "type": "float", + "name": "frame_230/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 230 + }, + { + "type": "Texture2D", + "name": "frame_231/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 231 + }, + { + "type": "float", + "name": "frame_231/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 231 + }, + { + "type": "Texture2D", + "name": "frame_232/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 232 + }, + { + "type": "float", + "name": "frame_232/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 232 + }, + { + "type": "Texture2D", + "name": "frame_233/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 233 + }, + { + "type": "float", + "name": "frame_233/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 233 + }, + { + "type": "Texture2D", + "name": "frame_234/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 234 + }, + { + "type": "float", + "name": "frame_234/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 234 + }, + { + "type": "Texture2D", + "name": "frame_235/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 235 + }, + { + "type": "float", + "name": "frame_235/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 235 + }, + { + "type": "Texture2D", + "name": "frame_236/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 236 + }, + { + "type": "float", + "name": "frame_236/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 236 + }, + { + "type": "Texture2D", + "name": "frame_237/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 237 + }, + { + "type": "float", + "name": "frame_237/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 237 + }, + { + "type": "Texture2D", + "name": "frame_238/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 238 + }, + { + "type": "float", + "name": "frame_238/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 238 + }, + { + "type": "Texture2D", + "name": "frame_239/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 239 + }, + { + "type": "float", + "name": "frame_239/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 239 + }, + { + "type": "Texture2D", + "name": "frame_240/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 240 + }, + { + "type": "float", + "name": "frame_240/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 240 + }, + { + "type": "Texture2D", + "name": "frame_241/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 241 + }, + { + "type": "float", + "name": "frame_241/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 241 + }, + { + "type": "Texture2D", + "name": "frame_242/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 242 + }, + { + "type": "float", + "name": "frame_242/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 242 + }, + { + "type": "Texture2D", + "name": "frame_243/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 243 + }, + { + "type": "float", + "name": "frame_243/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 243 + }, + { + "type": "Texture2D", + "name": "frame_244/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 244 + }, + { + "type": "float", + "name": "frame_244/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 244 + }, + { + "type": "Texture2D", + "name": "frame_245/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 245 + }, + { + "type": "float", + "name": "frame_245/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 245 + }, + { + "type": "Texture2D", + "name": "frame_246/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 246 + }, + { + "type": "float", + "name": "frame_246/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 246 + }, + { + "type": "Texture2D", + "name": "frame_247/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 247 + }, + { + "type": "float", + "name": "frame_247/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 247 + }, + { + "type": "Texture2D", + "name": "frame_248/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 248 + }, + { + "type": "float", + "name": "frame_248/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 248 + }, + { + "type": "Texture2D", + "name": "frame_249/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 249 + }, + { + "type": "float", + "name": "frame_249/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 249 + }, + { + "type": "Texture2D", + "name": "frame_250/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 250 + }, + { + "type": "float", + "name": "frame_250/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 250 + }, + { + "type": "Texture2D", + "name": "frame_251/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 251 + }, + { + "type": "float", + "name": "frame_251/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 251 + }, + { + "type": "Texture2D", + "name": "frame_252/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 252 + }, + { + "type": "float", + "name": "frame_252/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 252 + }, + { + "type": "Texture2D", + "name": "frame_253/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 253 + }, + { + "type": "float", + "name": "frame_253/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 253 + }, + { + "type": "Texture2D", + "name": "frame_254/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 254 + }, + { + "type": "float", + "name": "frame_254/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 254 + }, + { + "type": "Texture2D", + "name": "frame_255/texture", + "setter": "set_frame_texture", + "getter": "get_frame_texture", + "index": 255 + }, + { + "type": "float", + "name": "frame_255/delay_sec", + "setter": "set_frame_delay", + "getter": "get_frame_delay", + "index": 255 + } + ] + }, + { + "name": "Animation", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "TrackType", + "values": [ + { + "name": "TYPE_VALUE", + "value": 0 + }, + { + "name": "TYPE_POSITION_3D", + "value": 1 + }, + { + "name": "TYPE_ROTATION_3D", + "value": 2 + }, + { + "name": "TYPE_SCALE_3D", + "value": 3 + }, + { + "name": "TYPE_BLEND_SHAPE", + "value": 4 + }, + { + "name": "TYPE_METHOD", + "value": 5 + }, + { + "name": "TYPE_BEZIER", + "value": 6 + }, + { + "name": "TYPE_AUDIO", + "value": 7 + }, + { + "name": "TYPE_ANIMATION", + "value": 8 + } + ] + }, + { + "name": "InterpolationType", + "values": [ + { + "name": "INTERPOLATION_NEAREST", + "value": 0 + }, + { + "name": "INTERPOLATION_LINEAR", + "value": 1 + }, + { + "name": "INTERPOLATION_CUBIC", + "value": 2 + } + ] + }, + { + "name": "UpdateMode", + "values": [ + { + "name": "UPDATE_CONTINUOUS", + "value": 0 + }, + { + "name": "UPDATE_DISCRETE", + "value": 1 + }, + { + "name": "UPDATE_TRIGGER", + "value": 2 + }, + { + "name": "UPDATE_CAPTURE", + "value": 3 + } + ] + }, + { + "name": "LoopMode", + "values": [ + { + "name": "LOOP_NONE", + "value": 0 + }, + { + "name": "LOOP_LINEAR", + "value": 1 + }, + { + "name": "LOOP_PINGPONG", + "value": 2 + } + ] + }, + { + "name": "HandleMode", + "values": [ + { + "name": "HANDLE_MODE_FREE", + "value": 0 + }, + { + "name": "HANDLE_MODE_BALANCED", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "add_track", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "type", + "type": "enum::Animation.TrackType" + }, + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_track", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_track_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "track_get_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Animation.TrackType" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_set_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "find_track", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "type", + "type": "enum::Animation.TrackType" + } + ] + }, + { + "name": "track_move_up", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_move_down", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_move_to", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "to_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_swap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "with_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_set_imported", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "imported", + "type": "bool" + } + ] + }, + { + "name": "track_is_imported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "track_is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "position_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "rotation_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "rotation", + "type": "Quaternion" + } + ] + }, + { + "name": "scale_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "blend_shape_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "key", + "type": "Variant" + }, + { + "name": "transition", + "type": "float", + "meta": "float", + "default_value": "1" + } + ] + }, + { + "name": "track_remove_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_remove_key_at_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "track_set_key_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "track_set_key_transition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "transition", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "track_set_key_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "track_get_key_transition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_get_key_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_get_key_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_get_key_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_find_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "exact", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "track_set_interpolation_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "interpolation", + "type": "enum::Animation.InterpolationType" + } + ] + }, + { + "name": "track_get_interpolation_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Animation.InterpolationType" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_set_interpolation_loop_wrap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "interpolation", + "type": "bool" + } + ] + }, + { + "name": "track_get_interpolation_loop_wrap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "track_is_compressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "value_track_set_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "mode", + "type": "enum::Animation.UpdateMode" + } + ] + }, + { + "name": "value_track_get_update_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Animation.UpdateMode" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "value_track_get_key_indices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time_sec", + "type": "float", + "meta": "double" + }, + { + "name": "delta", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "value_track_interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time_sec", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "method_track_get_key_indices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time_sec", + "type": "float", + "meta": "double" + }, + { + "name": "delta", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "method_track_get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "method_track_get_params", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "bezier_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1020396879, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "value", + "type": "float", + "meta": "float" + }, + { + "name": "in_handle", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + }, + { + "name": "out_handle", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + }, + { + "name": "handle_mode", + "type": "enum::Animation.HandleMode", + "default_value": "1" + } + ] + }, + { + "name": "bezier_track_set_key_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "bezier_track_set_key_in_handle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "in_handle", + "type": "Vector2" + }, + { + "name": "balanced_value_time_ratio", + "type": "float", + "meta": "double", + "default_value": "1.0" + } + ] + }, + { + "name": "bezier_track_set_key_out_handle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "out_handle", + "type": "Vector2" + }, + { + "name": "balanced_value_time_ratio", + "type": "float", + "meta": "double", + "default_value": "1.0" + } + ] + }, + { + "name": "bezier_track_get_key_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "bezier_track_get_key_in_handle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "bezier_track_get_key_out_handle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "bezier_track_interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "audio_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1552406093, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "stream", + "type": "Resource" + }, + { + "name": "start_offset", + "type": "float", + "meta": "float", + "default_value": "0" + }, + { + "name": "end_offset", + "type": "float", + "meta": "float", + "default_value": "0" + } + ] + }, + { + "name": "audio_track_set_key_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "stream", + "type": "Resource" + } + ] + }, + { + "name": "audio_track_set_key_start_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "audio_track_set_key_end_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "audio_track_get_key_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Resource" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "audio_track_get_key_start_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "audio_track_get_key_end_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "bezier_track_set_key_handle_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_handle_mode", + "type": "enum::Animation.HandleMode" + }, + { + "name": "balanced_value_time_ratio", + "type": "float", + "meta": "double", + "default_value": "1.0" + } + ] + }, + { + "name": "bezier_track_get_key_handle_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "animation_track_insert_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "animation", + "type": "StringName" + } + ] + }, + { + "name": "animation_track_set_key_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "animation", + "type": "StringName" + } + ] + }, + { + "name": "animation_track_get_key_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "key_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time_sec", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_loop_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop_mode", + "type": "enum::Animation.LoopMode" + } + ] + }, + { + "name": "get_loop_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Animation.LoopMode" + } + }, + { + "name": "set_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size_sec", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "copy_track", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "to_animation", + "type": "Animation" + } + ] + }, + { + "name": "compress", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 39534237, + "arguments": [ + { + "name": "page_size", + "type": "int", + "meta": "uint32", + "default_value": "8192" + }, + { + "name": "fps", + "type": "int", + "meta": "uint32", + "default_value": "120" + }, + { + "name": "split_tolerance", + "type": "float", + "meta": "float", + "default_value": "4.0" + } + ] + } + ], + "signals": [ + { + "name": "tracks_changed" + } + ], + "properties": [ + { + "type": "float", + "name": "length", + "setter": "set_length", + "getter": "get_length", + "index": -1 + }, + { + "type": "int", + "name": "loop_mode", + "setter": "set_loop_mode", + "getter": "get_loop_mode", + "index": -1 + }, + { + "type": "float", + "name": "step", + "setter": "set_step", + "getter": "get_step", + "index": -1 + } + ] + }, + { + "name": "AnimationLibrary", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "add_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "animation", + "type": "Animation" + } + ] + }, + { + "name": "remove_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "newname", + "type": "StringName" + } + ] + }, + { + "name": "has_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Animation" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "signals": [ + { + "name": "animation_added", + "arguments": [ + { + "name": "name", + "type": "Animation" + } + ] + }, + { + "name": "animation_removed", + "arguments": [ + { + "name": "name", + "type": "Animation" + } + ] + }, + { + "name": "animation_renamed", + "arguments": [ + { + "name": "name", + "type": "Animation" + }, + { + "name": "to_name", + "type": "Animation" + } + ] + } + ] + }, + { + "name": "AnimationNode", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "FilterAction", + "values": [ + { + "name": "FILTER_IGNORE", + "value": 0 + }, + { + "name": "FILTER_PASS", + "value": 1 + }, + { + "name": "FILTER_STOP", + "value": 2 + }, + { + "name": "FILTER_BLEND", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "_get_child_nodes", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "_get_parameter_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_get_child_by_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "AnimationNode" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "_get_parameter_default_value", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "parameter", + "type": "StringName" + } + ] + }, + { + "name": "_process", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "time", + "type": "float" + }, + { + "name": "seek", + "type": "bool" + }, + { + "name": "seek_root", + "type": "bool" + } + ] + }, + { + "name": "_get_caption", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_has_filter", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_input_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_input_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "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": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "remove_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_filter_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_path_filtered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "set_filter_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_filter_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "blend_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 140393645, + "arguments": [ + { + "name": "animation", + "type": "StringName" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "delta", + "type": "float", + "meta": "double" + }, + { + "name": "seeked", + "type": "bool" + }, + { + "name": "seek_root", + "type": "bool" + }, + { + "name": "blend", + "type": "float", + "meta": "float" + }, + { + "name": "pingponged", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "blend_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1669812272, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "node", + "type": "AnimationNode" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "seek", + "type": "bool" + }, + { + "name": "seek_root", + "type": "bool" + }, + { + "name": "blend", + "type": "float", + "meta": "float" + }, + { + "name": "filter", + "type": "enum::AnimationNode.FilterAction", + "default_value": "0" + }, + { + "name": "optimize", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "blend_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1630676879, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "input_index", + "type": "int", + "meta": "int32" + }, + { + "name": "time", + "type": "float", + "meta": "double" + }, + { + "name": "seek", + "type": "bool" + }, + { + "name": "seek_root", + "type": "bool" + }, + { + "name": "blend", + "type": "float", + "meta": "float" + }, + { + "name": "filter", + "type": "enum::AnimationNode.FilterAction", + "default_value": "0" + }, + { + "name": "optimize", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_parameter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_parameter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + } + ], + "signals": [ + { + "name": "removed_from_graph" + }, + { + "name": "tree_changed" + } + ], + "properties": [ + { + "type": "bool", + "name": "filter_enabled", + "setter": "set_filter_enabled", + "getter": "is_filter_enabled", + "index": -1 + }, + { + "type": "Array", + "name": "filters", + "setter": "_set_filters", + "getter": "_get_filters", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeAdd2", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "methods": [ + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeAdd3", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "methods": [ + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeAnimation", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationRootNode", + "api_type": "core", + "enums": [ + { + "name": "PlayMode", + "values": [ + { + "name": "PLAY_MODE_FORWARD", + "value": 0 + }, + { + "name": "PLAY_MODE_BACKWARD", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_play_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationNodeAnimation.PlayMode" + } + ] + }, + { + "name": "get_play_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationNodeAnimation.PlayMode" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "animation", + "setter": "set_animation", + "getter": "get_animation", + "index": -1 + }, + { + "type": "int", + "name": "play_mode", + "setter": "set_play_mode", + "getter": "get_play_mode", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeBlend2", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "methods": [ + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeBlend3", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "methods": [ + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeBlendSpace1D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationRootNode", + "api_type": "core", + "methods": [ + { + "name": "add_blend_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "node", + "type": "AnimationRootNode" + }, + { + "name": "pos", + "type": "float", + "meta": "float" + }, + { + "name": "at_index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_blend_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + }, + { + "name": "pos", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_blend_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_blend_point_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + }, + { + "name": "node", + "type": "AnimationRootNode" + } + ] + }, + { + "name": "get_blend_point_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AnimationRootNode" + }, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_blend_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_blend_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_min_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "min_space", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_min_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_space", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_snap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "snap", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_snap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_value_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_value_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "AnimationRootNode", + "name": "blend_point_0/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 0 + }, + { + "type": "float", + "name": "blend_point_0/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 0 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_1/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 1 + }, + { + "type": "float", + "name": "blend_point_1/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 1 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_2/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 2 + }, + { + "type": "float", + "name": "blend_point_2/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 2 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_3/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 3 + }, + { + "type": "float", + "name": "blend_point_3/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 3 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_4/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 4 + }, + { + "type": "float", + "name": "blend_point_4/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 4 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_5/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 5 + }, + { + "type": "float", + "name": "blend_point_5/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 5 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_6/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 6 + }, + { + "type": "float", + "name": "blend_point_6/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 6 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_7/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 7 + }, + { + "type": "float", + "name": "blend_point_7/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 7 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_8/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 8 + }, + { + "type": "float", + "name": "blend_point_8/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 8 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_9/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 9 + }, + { + "type": "float", + "name": "blend_point_9/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 9 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_10/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 10 + }, + { + "type": "float", + "name": "blend_point_10/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 10 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_11/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 11 + }, + { + "type": "float", + "name": "blend_point_11/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 11 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_12/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 12 + }, + { + "type": "float", + "name": "blend_point_12/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 12 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_13/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 13 + }, + { + "type": "float", + "name": "blend_point_13/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 13 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_14/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 14 + }, + { + "type": "float", + "name": "blend_point_14/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 14 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_15/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 15 + }, + { + "type": "float", + "name": "blend_point_15/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 15 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_16/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 16 + }, + { + "type": "float", + "name": "blend_point_16/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 16 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_17/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 17 + }, + { + "type": "float", + "name": "blend_point_17/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 17 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_18/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 18 + }, + { + "type": "float", + "name": "blend_point_18/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 18 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_19/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 19 + }, + { + "type": "float", + "name": "blend_point_19/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 19 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_20/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 20 + }, + { + "type": "float", + "name": "blend_point_20/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 20 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_21/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 21 + }, + { + "type": "float", + "name": "blend_point_21/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 21 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_22/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 22 + }, + { + "type": "float", + "name": "blend_point_22/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 22 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_23/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 23 + }, + { + "type": "float", + "name": "blend_point_23/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 23 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_24/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 24 + }, + { + "type": "float", + "name": "blend_point_24/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 24 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_25/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 25 + }, + { + "type": "float", + "name": "blend_point_25/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 25 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_26/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 26 + }, + { + "type": "float", + "name": "blend_point_26/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 26 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_27/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 27 + }, + { + "type": "float", + "name": "blend_point_27/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 27 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_28/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 28 + }, + { + "type": "float", + "name": "blend_point_28/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 28 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_29/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 29 + }, + { + "type": "float", + "name": "blend_point_29/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 29 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_30/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 30 + }, + { + "type": "float", + "name": "blend_point_30/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 30 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_31/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 31 + }, + { + "type": "float", + "name": "blend_point_31/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 31 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_32/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 32 + }, + { + "type": "float", + "name": "blend_point_32/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 32 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_33/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 33 + }, + { + "type": "float", + "name": "blend_point_33/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 33 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_34/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 34 + }, + { + "type": "float", + "name": "blend_point_34/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 34 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_35/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 35 + }, + { + "type": "float", + "name": "blend_point_35/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 35 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_36/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 36 + }, + { + "type": "float", + "name": "blend_point_36/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 36 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_37/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 37 + }, + { + "type": "float", + "name": "blend_point_37/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 37 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_38/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 38 + }, + { + "type": "float", + "name": "blend_point_38/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 38 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_39/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 39 + }, + { + "type": "float", + "name": "blend_point_39/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 39 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_40/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 40 + }, + { + "type": "float", + "name": "blend_point_40/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 40 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_41/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 41 + }, + { + "type": "float", + "name": "blend_point_41/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 41 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_42/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 42 + }, + { + "type": "float", + "name": "blend_point_42/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 42 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_43/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 43 + }, + { + "type": "float", + "name": "blend_point_43/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 43 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_44/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 44 + }, + { + "type": "float", + "name": "blend_point_44/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 44 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_45/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 45 + }, + { + "type": "float", + "name": "blend_point_45/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 45 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_46/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 46 + }, + { + "type": "float", + "name": "blend_point_46/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 46 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_47/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 47 + }, + { + "type": "float", + "name": "blend_point_47/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 47 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_48/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 48 + }, + { + "type": "float", + "name": "blend_point_48/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 48 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_49/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 49 + }, + { + "type": "float", + "name": "blend_point_49/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 49 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_50/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 50 + }, + { + "type": "float", + "name": "blend_point_50/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 50 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_51/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 51 + }, + { + "type": "float", + "name": "blend_point_51/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 51 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_52/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 52 + }, + { + "type": "float", + "name": "blend_point_52/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 52 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_53/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 53 + }, + { + "type": "float", + "name": "blend_point_53/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 53 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_54/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 54 + }, + { + "type": "float", + "name": "blend_point_54/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 54 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_55/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 55 + }, + { + "type": "float", + "name": "blend_point_55/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 55 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_56/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 56 + }, + { + "type": "float", + "name": "blend_point_56/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 56 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_57/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 57 + }, + { + "type": "float", + "name": "blend_point_57/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 57 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_58/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 58 + }, + { + "type": "float", + "name": "blend_point_58/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 58 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_59/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 59 + }, + { + "type": "float", + "name": "blend_point_59/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 59 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_60/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 60 + }, + { + "type": "float", + "name": "blend_point_60/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 60 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_61/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 61 + }, + { + "type": "float", + "name": "blend_point_61/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 61 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_62/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 62 + }, + { + "type": "float", + "name": "blend_point_62/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 62 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_63/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 63 + }, + { + "type": "float", + "name": "blend_point_63/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 63 + }, + { + "type": "float", + "name": "min_space", + "setter": "set_min_space", + "getter": "get_min_space", + "index": -1 + }, + { + "type": "float", + "name": "max_space", + "setter": "set_max_space", + "getter": "get_max_space", + "index": -1 + }, + { + "type": "float", + "name": "snap", + "setter": "set_snap", + "getter": "get_snap", + "index": -1 + }, + { + "type": "String", + "name": "value_label", + "setter": "set_value_label", + "getter": "get_value_label", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeBlendSpace2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationRootNode", + "api_type": "core", + "enums": [ + { + "name": "BlendMode", + "values": [ + { + "name": "BLEND_MODE_INTERPOLATED", + "value": 0 + }, + { + "name": "BLEND_MODE_DISCRETE", + "value": 1 + }, + { + "name": "BLEND_MODE_DISCRETE_CARRY", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "add_blend_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "node", + "type": "AnimationRootNode" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "at_index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_blend_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + }, + { + "name": "pos", + "type": "Vector2" + } + ] + }, + { + "name": "get_blend_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_blend_point_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + }, + { + "name": "node", + "type": "AnimationRootNode" + } + ] + }, + { + "name": "get_blend_point_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AnimationRootNode" + }, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_blend_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_blend_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_triangle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "x", + "type": "int", + "meta": "int32" + }, + { + "name": "y", + "type": "int", + "meta": "int32" + }, + { + "name": "z", + "type": "int", + "meta": "int32" + }, + { + "name": "at_index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_triangle_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "triangle", + "type": "int", + "meta": "int32" + }, + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_triangle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "triangle", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_triangle_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_min_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "min_space", + "type": "Vector2" + } + ] + }, + { + "name": "get_min_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_max_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_space", + "type": "Vector2" + } + ] + }, + { + "name": "get_max_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_snap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "snap", + "type": "Vector2" + } + ] + }, + { + "name": "get_snap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_x_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_x_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_y_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_y_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_auto_triangles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_auto_triangles", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_blend_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationNodeBlendSpace2D.BlendMode" + } + ] + }, + { + "name": "get_blend_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationNodeBlendSpace2D.BlendMode" + } + } + ], + "signals": [ + { + "name": "triangles_updated" + } + ], + "properties": [ + { + "type": "bool", + "name": "auto_triangles", + "setter": "set_auto_triangles", + "getter": "get_auto_triangles", + "index": -1 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_0/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 0 + }, + { + "type": "Vector2", + "name": "blend_point_0/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 0 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_1/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 1 + }, + { + "type": "Vector2", + "name": "blend_point_1/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 1 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_2/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 2 + }, + { + "type": "Vector2", + "name": "blend_point_2/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 2 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_3/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 3 + }, + { + "type": "Vector2", + "name": "blend_point_3/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 3 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_4/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 4 + }, + { + "type": "Vector2", + "name": "blend_point_4/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 4 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_5/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 5 + }, + { + "type": "Vector2", + "name": "blend_point_5/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 5 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_6/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 6 + }, + { + "type": "Vector2", + "name": "blend_point_6/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 6 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_7/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 7 + }, + { + "type": "Vector2", + "name": "blend_point_7/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 7 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_8/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 8 + }, + { + "type": "Vector2", + "name": "blend_point_8/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 8 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_9/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 9 + }, + { + "type": "Vector2", + "name": "blend_point_9/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 9 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_10/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 10 + }, + { + "type": "Vector2", + "name": "blend_point_10/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 10 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_11/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 11 + }, + { + "type": "Vector2", + "name": "blend_point_11/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 11 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_12/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 12 + }, + { + "type": "Vector2", + "name": "blend_point_12/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 12 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_13/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 13 + }, + { + "type": "Vector2", + "name": "blend_point_13/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 13 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_14/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 14 + }, + { + "type": "Vector2", + "name": "blend_point_14/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 14 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_15/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 15 + }, + { + "type": "Vector2", + "name": "blend_point_15/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 15 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_16/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 16 + }, + { + "type": "Vector2", + "name": "blend_point_16/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 16 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_17/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 17 + }, + { + "type": "Vector2", + "name": "blend_point_17/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 17 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_18/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 18 + }, + { + "type": "Vector2", + "name": "blend_point_18/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 18 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_19/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 19 + }, + { + "type": "Vector2", + "name": "blend_point_19/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 19 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_20/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 20 + }, + { + "type": "Vector2", + "name": "blend_point_20/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 20 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_21/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 21 + }, + { + "type": "Vector2", + "name": "blend_point_21/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 21 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_22/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 22 + }, + { + "type": "Vector2", + "name": "blend_point_22/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 22 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_23/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 23 + }, + { + "type": "Vector2", + "name": "blend_point_23/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 23 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_24/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 24 + }, + { + "type": "Vector2", + "name": "blend_point_24/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 24 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_25/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 25 + }, + { + "type": "Vector2", + "name": "blend_point_25/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 25 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_26/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 26 + }, + { + "type": "Vector2", + "name": "blend_point_26/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 26 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_27/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 27 + }, + { + "type": "Vector2", + "name": "blend_point_27/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 27 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_28/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 28 + }, + { + "type": "Vector2", + "name": "blend_point_28/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 28 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_29/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 29 + }, + { + "type": "Vector2", + "name": "blend_point_29/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 29 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_30/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 30 + }, + { + "type": "Vector2", + "name": "blend_point_30/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 30 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_31/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 31 + }, + { + "type": "Vector2", + "name": "blend_point_31/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 31 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_32/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 32 + }, + { + "type": "Vector2", + "name": "blend_point_32/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 32 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_33/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 33 + }, + { + "type": "Vector2", + "name": "blend_point_33/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 33 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_34/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 34 + }, + { + "type": "Vector2", + "name": "blend_point_34/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 34 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_35/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 35 + }, + { + "type": "Vector2", + "name": "blend_point_35/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 35 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_36/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 36 + }, + { + "type": "Vector2", + "name": "blend_point_36/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 36 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_37/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 37 + }, + { + "type": "Vector2", + "name": "blend_point_37/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 37 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_38/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 38 + }, + { + "type": "Vector2", + "name": "blend_point_38/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 38 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_39/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 39 + }, + { + "type": "Vector2", + "name": "blend_point_39/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 39 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_40/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 40 + }, + { + "type": "Vector2", + "name": "blend_point_40/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 40 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_41/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 41 + }, + { + "type": "Vector2", + "name": "blend_point_41/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 41 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_42/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 42 + }, + { + "type": "Vector2", + "name": "blend_point_42/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 42 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_43/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 43 + }, + { + "type": "Vector2", + "name": "blend_point_43/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 43 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_44/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 44 + }, + { + "type": "Vector2", + "name": "blend_point_44/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 44 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_45/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 45 + }, + { + "type": "Vector2", + "name": "blend_point_45/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 45 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_46/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 46 + }, + { + "type": "Vector2", + "name": "blend_point_46/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 46 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_47/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 47 + }, + { + "type": "Vector2", + "name": "blend_point_47/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 47 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_48/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 48 + }, + { + "type": "Vector2", + "name": "blend_point_48/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 48 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_49/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 49 + }, + { + "type": "Vector2", + "name": "blend_point_49/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 49 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_50/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 50 + }, + { + "type": "Vector2", + "name": "blend_point_50/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 50 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_51/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 51 + }, + { + "type": "Vector2", + "name": "blend_point_51/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 51 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_52/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 52 + }, + { + "type": "Vector2", + "name": "blend_point_52/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 52 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_53/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 53 + }, + { + "type": "Vector2", + "name": "blend_point_53/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 53 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_54/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 54 + }, + { + "type": "Vector2", + "name": "blend_point_54/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 54 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_55/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 55 + }, + { + "type": "Vector2", + "name": "blend_point_55/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 55 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_56/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 56 + }, + { + "type": "Vector2", + "name": "blend_point_56/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 56 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_57/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 57 + }, + { + "type": "Vector2", + "name": "blend_point_57/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 57 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_58/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 58 + }, + { + "type": "Vector2", + "name": "blend_point_58/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 58 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_59/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 59 + }, + { + "type": "Vector2", + "name": "blend_point_59/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 59 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_60/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 60 + }, + { + "type": "Vector2", + "name": "blend_point_60/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 60 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_61/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 61 + }, + { + "type": "Vector2", + "name": "blend_point_61/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 61 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_62/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 62 + }, + { + "type": "Vector2", + "name": "blend_point_62/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 62 + }, + { + "type": "AnimationRootNode", + "name": "blend_point_63/node", + "setter": "_add_blend_point", + "getter": "get_blend_point_node", + "index": 63 + }, + { + "type": "Vector2", + "name": "blend_point_63/pos", + "setter": "set_blend_point_position", + "getter": "get_blend_point_position", + "index": 63 + }, + { + "type": "PackedInt32Array", + "name": "triangles", + "setter": "_set_triangles", + "getter": "_get_triangles", + "index": -1 + }, + { + "type": "Vector2", + "name": "min_space", + "setter": "set_min_space", + "getter": "get_min_space", + "index": -1 + }, + { + "type": "Vector2", + "name": "max_space", + "setter": "set_max_space", + "getter": "get_max_space", + "index": -1 + }, + { + "type": "Vector2", + "name": "snap", + "setter": "set_snap", + "getter": "get_snap", + "index": -1 + }, + { + "type": "String", + "name": "x_label", + "setter": "set_x_label", + "getter": "get_x_label", + "index": -1 + }, + { + "type": "String", + "name": "y_label", + "setter": "set_y_label", + "getter": "get_y_label", + "index": -1 + }, + { + "type": "int", + "name": "blend_mode", + "setter": "set_blend_mode", + "getter": "get_blend_mode", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeBlendTree", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationRootNode", + "api_type": "core", + "constants": [ + { + "name": "CONNECTION_OK", + "value": 0 + }, + { + "name": "CONNECTION_ERROR_NO_INPUT", + "value": 1 + }, + { + "name": "CONNECTION_ERROR_NO_INPUT_INDEX", + "value": 2 + }, + { + "name": "CONNECTION_ERROR_NO_OUTPUT", + "value": 3 + }, + { + "name": "CONNECTION_ERROR_SAME_NODE", + "value": 4 + }, + { + "name": "CONNECTION_ERROR_CONNECTION_EXISTS", + "value": 5 + } + ], + "methods": [ + { + "name": "add_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "node", + "type": "AnimationNode" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "get_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AnimationNode" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "new_name", + "type": "StringName" + } + ] + }, + { + "name": "has_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "connect_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "input_node", + "type": "StringName" + }, + { + "name": "input_index", + "type": "int", + "meta": "int32" + }, + { + "name": "output_node", + "type": "StringName" + } + ] + }, + { + "name": "disconnect_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "input_node", + "type": "StringName" + }, + { + "name": "input_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_node_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_node_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "set_graph_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_graph_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "graph_offset", + "setter": "set_graph_offset", + "getter": "get_graph_offset", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeOneShot", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "enums": [ + { + "name": "MixMode", + "values": [ + { + "name": "MIX_MODE_BLEND", + "value": 0 + }, + { + "name": "MIX_MODE_ADD", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_fadein_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fadein_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fadeout_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fadeout_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_autorestart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_autorestart", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_autorestart_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_autorestart_delay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_autorestart_random_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_autorestart_random_delay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mix_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationNodeOneShot.MixMode" + } + ] + }, + { + "name": "get_mix_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationNodeOneShot.MixMode" + } + }, + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "mix_mode", + "setter": "set_mix_mode", + "getter": "get_mix_mode", + "index": -1 + }, + { + "type": "float", + "name": "fadein_time", + "setter": "set_fadein_time", + "getter": "get_fadein_time", + "index": -1 + }, + { + "type": "float", + "name": "fadeout_time", + "setter": "set_fadeout_time", + "getter": "get_fadeout_time", + "index": -1 + }, + { + "type": "bool", + "name": "autorestart", + "setter": "set_autorestart", + "getter": "has_autorestart", + "index": -1 + }, + { + "type": "float", + "name": "autorestart_delay", + "setter": "set_autorestart_delay", + "getter": "get_autorestart_delay", + "index": -1 + }, + { + "type": "float", + "name": "autorestart_random_delay", + "setter": "set_autorestart_random_delay", + "getter": "get_autorestart_random_delay", + "index": -1 + }, + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeOutput", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core" + }, + { + "name": "AnimationNodeStateMachine", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationRootNode", + "api_type": "core", + "methods": [ + { + "name": "add_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "node", + "type": "AnimationNode" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "replace_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "node", + "type": "AnimationNode" + } + ] + }, + { + "name": "get_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AnimationNode" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "new_name", + "type": "StringName" + } + ] + }, + { + "name": "has_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_node_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "node", + "type": "AnimationNode" + } + ] + }, + { + "name": "set_node_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_node_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_transition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "to", + "type": "StringName" + } + ] + }, + { + "name": "add_transition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "transition", + "type": "AnimationNodeStateMachineTransition" + } + ] + }, + { + "name": "get_transition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AnimationNodeStateMachineTransition" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_transition_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_transition_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_transition_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "remove_transition_by_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_transition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "to", + "type": "StringName" + } + ] + }, + { + "name": "set_graph_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_graph_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ] + }, + { + "name": "AnimationNodeStateMachinePlayback", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "travel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to_node", + "type": "StringName" + } + ] + }, + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "StringName" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_current_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "get_current_play_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_current_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_travel_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + } + ] + }, + { + "name": "AnimationNodeStateMachineTransition", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "SwitchMode", + "values": [ + { + "name": "SWITCH_MODE_IMMEDIATE", + "value": 0 + }, + { + "name": "SWITCH_MODE_SYNC", + "value": 1 + }, + { + "name": "SWITCH_MODE_AT_END", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_switch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationNodeStateMachineTransition.SwitchMode" + } + ] + }, + { + "name": "get_switch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationNodeStateMachineTransition.SwitchMode" + } + }, + { + "name": "set_auto_advance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "auto_advance", + "type": "bool" + } + ] + }, + { + "name": "has_auto_advance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_advance_condition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_advance_condition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_xfade_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_xfade_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "signals": [ + { + "name": "advance_condition_changed" + } + ], + "properties": [ + { + "type": "int", + "name": "switch_mode", + "setter": "set_switch_mode", + "getter": "get_switch_mode", + "index": -1 + }, + { + "type": "bool", + "name": "auto_advance", + "setter": "set_auto_advance", + "getter": "has_auto_advance", + "index": -1 + }, + { + "type": "StringName", + "name": "advance_condition", + "setter": "set_advance_condition", + "getter": "get_advance_condition", + "index": -1 + }, + { + "type": "float", + "name": "xfade_time", + "setter": "set_xfade_time", + "getter": "get_xfade_time", + "index": -1 + }, + { + "type": "int", + "name": "priority", + "setter": "set_priority", + "getter": "get_priority", + "index": -1 + }, + { + "type": "bool", + "name": "disabled", + "setter": "set_disabled", + "getter": "is_disabled", + "index": -1 + } + ] + }, + { + "name": "AnimationNodeTimeScale", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core" + }, + { + "name": "AnimationNodeTimeSeek", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core" + }, + { + "name": "AnimationNodeTransition", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "methods": [ + { + "name": "set_enabled_inputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_enabled_inputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_input_as_auto_advance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "input", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_input_set_as_auto_advance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "input", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_input_caption", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "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": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "input", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_cross_fade_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cross_fade_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "input_count", + "setter": "set_enabled_inputs", + "getter": "get_enabled_inputs", + "index": -1 + }, + { + "type": "float", + "name": "xfade_time", + "setter": "set_cross_fade_time", + "getter": "get_cross_fade_time", + "index": -1 + }, + { + "type": "String", + "name": "input_0/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 0 + }, + { + "type": "bool", + "name": "input_0/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 0 + }, + { + "type": "String", + "name": "input_1/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 1 + }, + { + "type": "bool", + "name": "input_1/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 1 + }, + { + "type": "String", + "name": "input_2/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 2 + }, + { + "type": "bool", + "name": "input_2/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 2 + }, + { + "type": "String", + "name": "input_3/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 3 + }, + { + "type": "bool", + "name": "input_3/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 3 + }, + { + "type": "String", + "name": "input_4/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 4 + }, + { + "type": "bool", + "name": "input_4/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 4 + }, + { + "type": "String", + "name": "input_5/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 5 + }, + { + "type": "bool", + "name": "input_5/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 5 + }, + { + "type": "String", + "name": "input_6/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 6 + }, + { + "type": "bool", + "name": "input_6/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 6 + }, + { + "type": "String", + "name": "input_7/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 7 + }, + { + "type": "bool", + "name": "input_7/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 7 + }, + { + "type": "String", + "name": "input_8/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 8 + }, + { + "type": "bool", + "name": "input_8/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 8 + }, + { + "type": "String", + "name": "input_9/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 9 + }, + { + "type": "bool", + "name": "input_9/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 9 + }, + { + "type": "String", + "name": "input_10/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 10 + }, + { + "type": "bool", + "name": "input_10/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 10 + }, + { + "type": "String", + "name": "input_11/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 11 + }, + { + "type": "bool", + "name": "input_11/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 11 + }, + { + "type": "String", + "name": "input_12/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 12 + }, + { + "type": "bool", + "name": "input_12/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 12 + }, + { + "type": "String", + "name": "input_13/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 13 + }, + { + "type": "bool", + "name": "input_13/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 13 + }, + { + "type": "String", + "name": "input_14/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 14 + }, + { + "type": "bool", + "name": "input_14/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 14 + }, + { + "type": "String", + "name": "input_15/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 15 + }, + { + "type": "bool", + "name": "input_15/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 15 + }, + { + "type": "String", + "name": "input_16/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 16 + }, + { + "type": "bool", + "name": "input_16/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 16 + }, + { + "type": "String", + "name": "input_17/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 17 + }, + { + "type": "bool", + "name": "input_17/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 17 + }, + { + "type": "String", + "name": "input_18/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 18 + }, + { + "type": "bool", + "name": "input_18/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 18 + }, + { + "type": "String", + "name": "input_19/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 19 + }, + { + "type": "bool", + "name": "input_19/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 19 + }, + { + "type": "String", + "name": "input_20/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 20 + }, + { + "type": "bool", + "name": "input_20/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 20 + }, + { + "type": "String", + "name": "input_21/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 21 + }, + { + "type": "bool", + "name": "input_21/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 21 + }, + { + "type": "String", + "name": "input_22/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 22 + }, + { + "type": "bool", + "name": "input_22/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 22 + }, + { + "type": "String", + "name": "input_23/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 23 + }, + { + "type": "bool", + "name": "input_23/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 23 + }, + { + "type": "String", + "name": "input_24/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 24 + }, + { + "type": "bool", + "name": "input_24/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 24 + }, + { + "type": "String", + "name": "input_25/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 25 + }, + { + "type": "bool", + "name": "input_25/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 25 + }, + { + "type": "String", + "name": "input_26/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 26 + }, + { + "type": "bool", + "name": "input_26/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 26 + }, + { + "type": "String", + "name": "input_27/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 27 + }, + { + "type": "bool", + "name": "input_27/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 27 + }, + { + "type": "String", + "name": "input_28/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 28 + }, + { + "type": "bool", + "name": "input_28/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 28 + }, + { + "type": "String", + "name": "input_29/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 29 + }, + { + "type": "bool", + "name": "input_29/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 29 + }, + { + "type": "String", + "name": "input_30/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 30 + }, + { + "type": "bool", + "name": "input_30/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 30 + }, + { + "type": "String", + "name": "input_31/name", + "setter": "set_input_caption", + "getter": "get_input_caption", + "index": 31 + }, + { + "type": "bool", + "name": "input_31/auto_advance", + "setter": "set_input_as_auto_advance", + "getter": "is_input_set_as_auto_advance", + "index": 31 + } + ] + }, + { + "name": "AnimationPlayer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "enums": [ + { + "name": "AnimationProcessCallback", + "values": [ + { + "name": "ANIMATION_PROCESS_PHYSICS", + "value": 0 + }, + { + "name": "ANIMATION_PROCESS_IDLE", + "value": 1 + }, + { + "name": "ANIMATION_PROCESS_MANUAL", + "value": 2 + } + ] + }, + { + "name": "AnimationMethodCallMode", + "values": [ + { + "name": "ANIMATION_METHOD_CALL_DEFERRED", + "value": 0 + }, + { + "name": "ANIMATION_METHOD_CALL_IMMEDIATE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "add_animation_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "library", + "type": "AnimationLibrary" + } + ] + }, + { + "name": "remove_animation_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_animation_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "newname", + "type": "StringName" + } + ] + }, + { + "name": "has_animation_library", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation_library", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AnimationLibrary" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation_library_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "has_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Animation" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_animation_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "animation_set_next", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "anim_from", + "type": "StringName" + }, + { + "name": "anim_to", + "type": "StringName" + } + ] + }, + { + "name": "animation_get_next", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "anim_from", + "type": "StringName" + } + ] + }, + { + "name": "set_blend_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "anim_from", + "type": "StringName" + }, + { + "name": "anim_to", + "type": "StringName" + }, + { + "name": "sec", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_blend_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "anim_from", + "type": "StringName" + }, + { + "name": "anim_to", + "type": "StringName" + } + ] + }, + { + "name": "set_default_blend_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sec", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_default_blend_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1002166806, + "arguments": [ + { + "name": "name", + "type": "StringName", + "default_value": "\"\"" + }, + { + "name": "custom_blend", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "custom_speed", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "from_end", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "play_backwards", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 313699832, + "arguments": [ + { + "name": "name", + "type": "StringName", + "default_value": "\"\"" + }, + { + "name": "custom_blend", + "type": "float", + "meta": "float", + "default_value": "-1" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133279208, + "arguments": [ + { + "name": "reset", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_current_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anim", + "type": "String" + } + ] + }, + { + "name": "get_current_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_assigned_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anim", + "type": "String" + } + ] + }, + { + "name": "get_assigned_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "queue", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_queue", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "clear_queue", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_playing_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_autoplay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_autoplay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_reset_on_save_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_reset_on_save_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_root", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "find_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "animation", + "type": "Animation" + } + ] + }, + { + "name": "find_animation_library", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "animation", + "type": "Animation" + } + ] + }, + { + "name": "clear_caches", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_process_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationPlayer.AnimationProcessCallback" + } + ] + }, + { + "name": "get_process_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationPlayer.AnimationProcessCallback" + } + }, + { + "name": "set_method_call_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationPlayer.AnimationMethodCallMode" + } + ] + }, + { + "name": "get_method_call_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationPlayer.AnimationMethodCallMode" + } + }, + { + "name": "get_current_animation_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_current_animation_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "double" + }, + { + "name": "update", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "advance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + } + ] + } + ], + "signals": [ + { + "name": "animation_finished", + "arguments": [ + { + "name": "anim_name", + "type": "StringName" + } + ] + }, + { + "name": "animation_changed", + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "new_name", + "type": "StringName" + } + ] + }, + { + "name": "animation_started", + "arguments": [ + { + "name": "anim_name", + "type": "StringName" + } + ] + }, + { + "name": "caches_cleared" + } + ], + "properties": [ + { + "type": "NodePath", + "name": "root_node", + "setter": "set_root", + "getter": "get_root", + "index": -1 + }, + { + "type": "StringName", + "name": "current_animation", + "setter": "set_current_animation", + "getter": "get_current_animation", + "index": -1 + }, + { + "type": "StringName", + "name": "assigned_animation", + "setter": "set_assigned_animation", + "getter": "get_assigned_animation", + "index": -1 + }, + { + "type": "StringName", + "name": "autoplay", + "setter": "set_autoplay", + "getter": "get_autoplay", + "index": -1 + }, + { + "type": "bool", + "name": "reset_on_save", + "setter": "set_reset_on_save_enabled", + "getter": "is_reset_on_save_enabled", + "index": -1 + }, + { + "type": "float", + "name": "current_animation_length", + "setter": "", + "getter": "get_current_animation_length", + "index": -1 + }, + { + "type": "float", + "name": "current_animation_position", + "setter": "", + "getter": "get_current_animation_position", + "index": -1 + }, + { + "type": "int", + "name": "playback_process_mode", + "setter": "set_process_callback", + "getter": "get_process_callback", + "index": -1 + }, + { + "type": "float", + "name": "playback_default_blend_time", + "setter": "set_default_blend_time", + "getter": "get_default_blend_time", + "index": -1 + }, + { + "type": "bool", + "name": "playback_active", + "setter": "set_active", + "getter": "is_active", + "index": -1 + }, + { + "type": "float", + "name": "playback_speed", + "setter": "set_speed_scale", + "getter": "get_speed_scale", + "index": -1 + }, + { + "type": "int", + "name": "method_call_mode", + "setter": "set_method_call_mode", + "getter": "get_method_call_mode", + "index": -1 + } + ] + }, + { + "name": "AnimationRootNode", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core" + }, + { + "name": "AnimationTrackEditPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor" + }, + { + "name": "AnimationTree", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "enums": [ + { + "name": "AnimationProcessCallback", + "values": [ + { + "name": "ANIMATION_PROCESS_PHYSICS", + "value": 0 + }, + { + "name": "ANIMATION_PROCESS_IDLE", + "value": 1 + }, + { + "name": "ANIMATION_PROCESS_MANUAL", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tree_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "root", + "type": "AnimationNode" + } + ] + }, + { + "name": "get_tree_root", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AnimationNode" + } + }, + { + "name": "set_process_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AnimationTree.AnimationProcessCallback" + } + ] + }, + { + "name": "get_process_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AnimationTree.AnimationProcessCallback" + } + }, + { + "name": "set_animation_player", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "root", + "type": "NodePath" + } + ] + }, + { + "name": "get_animation_player", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_root_motion_track", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_root_motion_track", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "get_root_motion_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "rename_parameter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "old_name", + "type": "String" + }, + { + "name": "new_name", + "type": "String" + } + ] + }, + { + "name": "advance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + } + ] + } + ], + "properties": [ + { + "type": "AnimationRootNode", + "name": "tree_root", + "setter": "set_tree_root", + "getter": "get_tree_root", + "index": -1 + }, + { + "type": "NodePath", + "name": "anim_player", + "setter": "set_animation_player", + "getter": "get_animation_player", + "index": -1 + }, + { + "type": "bool", + "name": "active", + "setter": "set_active", + "getter": "is_active", + "index": -1 + }, + { + "type": "int", + "name": "process_callback", + "setter": "set_process_callback", + "getter": "get_process_callback", + "index": -1 + }, + { + "type": "NodePath", + "name": "root_motion_track", + "setter": "set_root_motion_track", + "getter": "get_root_motion_track", + "index": -1 + } + ] + }, + { + "name": "Area2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CollisionObject2D", + "api_type": "core", + "enums": [ + { + "name": "SpaceOverride", + "values": [ + { + "name": "SPACE_OVERRIDE_DISABLED", + "value": 0 + }, + { + "name": "SPACE_OVERRIDE_COMBINE", + "value": 1 + }, + { + "name": "SPACE_OVERRIDE_COMBINE_REPLACE", + "value": 2 + }, + { + "name": "SPACE_OVERRIDE_REPLACE", + "value": 3 + }, + { + "name": "SPACE_OVERRIDE_REPLACE_COMBINE", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_gravity_space_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "space_override_mode", + "type": "enum::Area2D.SpaceOverride" + } + ] + }, + { + "name": "get_gravity_space_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Area2D.SpaceOverride" + } + }, + { + "name": "set_gravity_is_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_gravity_a_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_gravity_point_distance_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity_point_distance_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_gravity_point_center", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "center", + "type": "Vector2" + } + ] + }, + { + "name": "get_gravity_point_center", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_gravity_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "Vector2" + } + ] + }, + { + "name": "get_gravity_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_damp_space_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "space_override_mode", + "type": "enum::Area2D.SpaceOverride" + } + ] + }, + { + "name": "get_linear_damp_space_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Area2D.SpaceOverride" + } + }, + { + "name": "set_angular_damp_space_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "space_override_mode", + "type": "enum::Area2D.SpaceOverride" + } + ] + }, + { + "name": "get_angular_damp_space_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Area2D.SpaceOverride" + } + }, + { + "name": "set_linear_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_angular_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_monitoring", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_monitoring", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_monitorable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_monitorable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_overlapping_bodies", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_overlapping_areas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "overlaps_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "overlaps_area", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "area", + "type": "Node" + } + ] + }, + { + "name": "set_audio_bus_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_audio_bus_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_audio_bus_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_overriding_audio_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "body_shape_entered", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node2D" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_shape_exited", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node2D" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_entered", + "arguments": [ + { + "name": "body", + "type": "Node2D" + } + ] + }, + { + "name": "body_exited", + "arguments": [ + { + "name": "body", + "type": "Node2D" + } + ] + }, + { + "name": "area_shape_entered", + "arguments": [ + { + "name": "area_rid", + "type": "RID" + }, + { + "name": "area", + "type": "Area2D" + }, + { + "name": "area_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "area_shape_exited", + "arguments": [ + { + "name": "area_rid", + "type": "RID" + }, + { + "name": "area", + "type": "Area2D" + }, + { + "name": "area_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "area_entered", + "arguments": [ + { + "name": "area", + "type": "Area2D" + } + ] + }, + { + "name": "area_exited", + "arguments": [ + { + "name": "area", + "type": "Area2D" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "monitoring", + "setter": "set_monitoring", + "getter": "is_monitoring", + "index": -1 + }, + { + "type": "bool", + "name": "monitorable", + "setter": "set_monitorable", + "getter": "is_monitorable", + "index": -1 + }, + { + "type": "int", + "name": "priority", + "setter": "set_priority", + "getter": "get_priority", + "index": -1 + }, + { + "type": "int", + "name": "gravity_space_override", + "setter": "set_gravity_space_override_mode", + "getter": "get_gravity_space_override_mode", + "index": -1 + }, + { + "type": "bool", + "name": "gravity_point", + "setter": "set_gravity_is_point", + "getter": "is_gravity_a_point", + "index": -1 + }, + { + "type": "float", + "name": "gravity_point_distance_scale", + "setter": "set_gravity_point_distance_scale", + "getter": "get_gravity_point_distance_scale", + "index": -1 + }, + { + "type": "Vector2", + "name": "gravity_point_center", + "setter": "set_gravity_point_center", + "getter": "get_gravity_point_center", + "index": -1 + }, + { + "type": "Vector2", + "name": "gravity_direction", + "setter": "set_gravity_direction", + "getter": "get_gravity_direction", + "index": -1 + }, + { + "type": "float", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + }, + { + "type": "int", + "name": "linear_damp_space_override", + "setter": "set_linear_damp_space_override_mode", + "getter": "get_linear_damp_space_override_mode", + "index": -1 + }, + { + "type": "float", + "name": "linear_damp", + "setter": "set_linear_damp", + "getter": "get_linear_damp", + "index": -1 + }, + { + "type": "int", + "name": "angular_damp_space_override", + "setter": "set_angular_damp_space_override_mode", + "getter": "get_angular_damp_space_override_mode", + "index": -1 + }, + { + "type": "float", + "name": "angular_damp", + "setter": "set_angular_damp", + "getter": "get_angular_damp", + "index": -1 + }, + { + "type": "bool", + "name": "audio_bus_override", + "setter": "set_audio_bus_override", + "getter": "is_overriding_audio_bus", + "index": -1 + }, + { + "type": "StringName", + "name": "audio_bus_name", + "setter": "set_audio_bus_name", + "getter": "get_audio_bus_name", + "index": -1 + } + ] + }, + { + "name": "Area3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CollisionObject3D", + "api_type": "core", + "enums": [ + { + "name": "SpaceOverride", + "values": [ + { + "name": "SPACE_OVERRIDE_DISABLED", + "value": 0 + }, + { + "name": "SPACE_OVERRIDE_COMBINE", + "value": 1 + }, + { + "name": "SPACE_OVERRIDE_COMBINE_REPLACE", + "value": 2 + }, + { + "name": "SPACE_OVERRIDE_REPLACE", + "value": 3 + }, + { + "name": "SPACE_OVERRIDE_REPLACE_COMBINE", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_gravity_space_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "space_override_mode", + "type": "enum::Area3D.SpaceOverride" + } + ] + }, + { + "name": "get_gravity_space_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Area3D.SpaceOverride" + } + }, + { + "name": "set_gravity_is_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_gravity_a_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_gravity_point_distance_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity_point_distance_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_gravity_point_center", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "center", + "type": "Vector3" + } + ] + }, + { + "name": "get_gravity_point_center", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_gravity_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "Vector3" + } + ] + }, + { + "name": "get_gravity_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_damp_space_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "space_override_mode", + "type": "enum::Area3D.SpaceOverride" + } + ] + }, + { + "name": "get_linear_damp_space_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Area3D.SpaceOverride" + } + }, + { + "name": "set_angular_damp_space_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "space_override_mode", + "type": "enum::Area3D.SpaceOverride" + } + ] + }, + { + "name": "get_angular_damp_space_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Area3D.SpaceOverride" + } + }, + { + "name": "set_angular_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_wind_force_magnitude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "wind_force_magnitude", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_wind_force_magnitude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_wind_attenuation_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "wind_attenuation_factor", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_wind_attenuation_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_wind_source_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "wind_source_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_wind_source_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_monitorable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_monitorable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_monitoring", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_monitoring", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_overlapping_bodies", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_overlapping_areas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "overlaps_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "overlaps_area", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "area", + "type": "Node" + } + ] + }, + { + "name": "set_audio_bus_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_overriding_audio_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_audio_bus_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_audio_bus_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_use_reverb_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_reverb_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_reverb_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_reverb_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_reverb_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_reverb_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_reverb_uniformity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_reverb_uniformity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "signals": [ + { + "name": "body_shape_entered", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node3D" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_shape_exited", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node3D" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_entered", + "arguments": [ + { + "name": "body", + "type": "Node3D" + } + ] + }, + { + "name": "body_exited", + "arguments": [ + { + "name": "body", + "type": "Node3D" + } + ] + }, + { + "name": "area_shape_entered", + "arguments": [ + { + "name": "area_rid", + "type": "RID" + }, + { + "name": "area", + "type": "Area3D" + }, + { + "name": "area_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "area_shape_exited", + "arguments": [ + { + "name": "area_rid", + "type": "RID" + }, + { + "name": "area", + "type": "Area3D" + }, + { + "name": "area_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "area_entered", + "arguments": [ + { + "name": "area", + "type": "Area3D" + } + ] + }, + { + "name": "area_exited", + "arguments": [ + { + "name": "area", + "type": "Area3D" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "monitoring", + "setter": "set_monitoring", + "getter": "is_monitoring", + "index": -1 + }, + { + "type": "bool", + "name": "monitorable", + "setter": "set_monitorable", + "getter": "is_monitorable", + "index": -1 + }, + { + "type": "int", + "name": "priority", + "setter": "set_priority", + "getter": "get_priority", + "index": -1 + }, + { + "type": "int", + "name": "gravity_space_override", + "setter": "set_gravity_space_override_mode", + "getter": "get_gravity_space_override_mode", + "index": -1 + }, + { + "type": "bool", + "name": "gravity_point", + "setter": "set_gravity_is_point", + "getter": "is_gravity_a_point", + "index": -1 + }, + { + "type": "float", + "name": "gravity_point_distance_scale", + "setter": "set_gravity_point_distance_scale", + "getter": "get_gravity_point_distance_scale", + "index": -1 + }, + { + "type": "Vector3", + "name": "gravity_point_center", + "setter": "set_gravity_point_center", + "getter": "get_gravity_point_center", + "index": -1 + }, + { + "type": "Vector3", + "name": "gravity_direction", + "setter": "set_gravity_direction", + "getter": "get_gravity_direction", + "index": -1 + }, + { + "type": "float", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + }, + { + "type": "int", + "name": "linear_damp_space_override", + "setter": "set_linear_damp_space_override_mode", + "getter": "get_linear_damp_space_override_mode", + "index": -1 + }, + { + "type": "float", + "name": "linear_damp", + "setter": "set_linear_damp", + "getter": "get_linear_damp", + "index": -1 + }, + { + "type": "int", + "name": "angular_damp_space_override", + "setter": "set_angular_damp_space_override_mode", + "getter": "get_angular_damp_space_override_mode", + "index": -1 + }, + { + "type": "float", + "name": "angular_damp", + "setter": "set_angular_damp", + "getter": "get_angular_damp", + "index": -1 + }, + { + "type": "float", + "name": "wind_force_magnitude", + "setter": "set_wind_force_magnitude", + "getter": "get_wind_force_magnitude", + "index": -1 + }, + { + "type": "float", + "name": "wind_attenuation_factor", + "setter": "set_wind_attenuation_factor", + "getter": "get_wind_attenuation_factor", + "index": -1 + }, + { + "type": "NodePath", + "name": "wind_source_path", + "setter": "set_wind_source_path", + "getter": "get_wind_source_path", + "index": -1 + }, + { + "type": "bool", + "name": "audio_bus_override", + "setter": "set_audio_bus_override", + "getter": "is_overriding_audio_bus", + "index": -1 + }, + { + "type": "StringName", + "name": "audio_bus_name", + "setter": "set_audio_bus_name", + "getter": "get_audio_bus_name", + "index": -1 + }, + { + "type": "bool", + "name": "reverb_bus_enable", + "setter": "set_use_reverb_bus", + "getter": "is_using_reverb_bus", + "index": -1 + }, + { + "type": "StringName", + "name": "reverb_bus_name", + "setter": "set_reverb_bus", + "getter": "get_reverb_bus", + "index": -1 + }, + { + "type": "float", + "name": "reverb_bus_amount", + "setter": "set_reverb_amount", + "getter": "get_reverb_amount", + "index": -1 + }, + { + "type": "float", + "name": "reverb_bus_uniformity", + "setter": "set_reverb_uniformity", + "getter": "get_reverb_uniformity", + "index": -1 + } + ] + }, + { + "name": "ArrayMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Mesh", + "api_type": "core", + "methods": [ + { + "name": "add_blend_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_blend_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_blend_shape_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_blend_shape_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "clear_blend_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_blend_shape_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Mesh.BlendShapeMode" + } + ] + }, + { + "name": "get_blend_shape_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Mesh.BlendShapeMode" + } + }, + { + "name": "add_surface_from_arrays", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 253563115, + "arguments": [ + { + "name": "primitive", + "type": "enum::Mesh.PrimitiveType" + }, + { + "name": "arrays", + "type": "Array" + }, + { + "name": "blend_shapes", + "type": "Array", + "default_value": "[]" + }, + { + "name": "lods", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "compress_flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "clear_surfaces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "surface_update_vertex_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "surface_update_attribute_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "surface_update_skin_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "surface_get_array_len", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "surface_get_array_index_len", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "surface_get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "surface_get_primitive_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Mesh.PrimitiveType" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "surface_find_by_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "surface_set_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "surface_get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "regen_normal_maps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "lightmap_unwrap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "texel_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_custom_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "get_custom_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "set_shadow_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "ArrayMesh" + } + ] + }, + { + "name": "get_shadow_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ArrayMesh" + } + } + ], + "properties": [ + { + "type": "int", + "name": "blend_shape_mode", + "setter": "set_blend_shape_mode", + "getter": "get_blend_shape_mode", + "index": -1 + }, + { + "type": "AABB", + "name": "custom_aabb", + "setter": "set_custom_aabb", + "getter": "get_custom_aabb", + "index": -1 + }, + { + "type": "ArrayMesh", + "name": "shadow_mesh", + "setter": "set_shadow_mesh", + "getter": "get_shadow_mesh", + "index": -1 + } + ] + }, + { + "name": "ArrayOccluder3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Occluder3D", + "api_type": "core", + "methods": [ + { + "name": "set_arrays", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "vertices", + "type": "PackedVector3Array" + }, + { + "name": "indices", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "set_vertices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertices", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "set_indices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "indices", + "type": "PackedInt32Array" + } + ] + } + ], + "properties": [ + { + "type": "PackedVector3Array", + "name": "vertices", + "setter": "set_vertices", + "getter": "get_vertices", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "indices", + "setter": "set_indices", + "getter": "get_indices", + "index": -1 + } + ] + }, + { + "name": "AspectRatioContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "enums": [ + { + "name": "StretchMode", + "values": [ + { + "name": "STRETCH_WIDTH_CONTROLS_HEIGHT", + "value": 0 + }, + { + "name": "STRETCH_HEIGHT_CONTROLS_WIDTH", + "value": 1 + }, + { + "name": "STRETCH_FIT", + "value": 2 + }, + { + "name": "STRETCH_COVER", + "value": 3 + } + ] + }, + { + "name": "AlignmentMode", + "values": [ + { + "name": "ALIGNMENT_BEGIN", + "value": 0 + }, + { + "name": "ALIGNMENT_CENTER", + "value": 1 + }, + { + "name": "ALIGNMENT_END", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stretch_mode", + "type": "enum::AspectRatioContainer.StretchMode" + } + ] + }, + { + "name": "get_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AspectRatioContainer.StretchMode" + } + }, + { + "name": "set_alignment_horizontal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment_horizontal", + "type": "enum::AspectRatioContainer.AlignmentMode" + } + ] + }, + { + "name": "get_alignment_horizontal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AspectRatioContainer.AlignmentMode" + } + }, + { + "name": "set_alignment_vertical", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment_vertical", + "type": "enum::AspectRatioContainer.AlignmentMode" + } + ] + }, + { + "name": "get_alignment_vertical", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AspectRatioContainer.AlignmentMode" + } + } + ], + "properties": [ + { + "type": "float", + "name": "ratio", + "setter": "set_ratio", + "getter": "get_ratio", + "index": -1 + }, + { + "type": "int", + "name": "stretch_mode", + "setter": "set_stretch_mode", + "getter": "get_stretch_mode", + "index": -1 + }, + { + "type": "int", + "name": "alignment_horizontal", + "setter": "set_alignment_horizontal", + "getter": "get_alignment_horizontal", + "index": -1 + }, + { + "type": "int", + "name": "alignment_vertical", + "setter": "set_alignment_vertical", + "getter": "get_alignment_vertical", + "index": -1 + } + ] + }, + { + "name": "AtlasTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_atlas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "atlas", + "type": "Texture2D" + } + ] + }, + { + "name": "get_atlas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "region", + "type": "Rect2" + } + ] + }, + { + "name": "get_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "Rect2" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_filter_clip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_filter_clip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "atlas", + "setter": "set_atlas", + "getter": "get_atlas", + "index": -1 + }, + { + "type": "Rect2", + "name": "region", + "setter": "set_region", + "getter": "get_region", + "index": -1 + }, + { + "type": "Rect2", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "bool", + "name": "filter_clip", + "setter": "set_filter_clip", + "getter": "has_filter_clip", + "index": -1 + } + ] + }, + { + "name": "AudioBusLayout", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core" + }, + { + "name": "AudioEffect", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_instantiate", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "AudioEffectInstance" + } + } + ] + }, + { + "name": "AudioEffectAmplify", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_volume_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "volume", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volume_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "volume_db", + "setter": "set_volume_db", + "getter": "get_volume_db", + "index": -1 + } + ] + }, + { + "name": "AudioEffectBandLimitFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectBandPassFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectCapture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "can_get_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_buffer_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffer_length_seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_buffer_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_frames_available", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_discarded_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "get_buffer_length_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_pushed_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + } + ], + "properties": [ + { + "type": "float", + "name": "buffer_length", + "setter": "set_buffer_length", + "getter": "get_buffer_length", + "index": -1 + } + ] + }, + { + "name": "AudioEffectChorus", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_voice_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "voices", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_voice_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_voice_delay_ms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "delay_ms", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_voice_delay_ms", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_voice_rate_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "rate_hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_voice_rate_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_voice_depth_ms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "depth_ms", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_voice_depth_ms", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_voice_level_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "level_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_voice_level_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_voice_cutoff_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "cutoff_hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_voice_cutoff_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_voice_pan", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "pan", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_voice_pan", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "voice_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_wet", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_wet", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_dry", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dry", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "voice_count", + "setter": "set_voice_count", + "getter": "get_voice_count", + "index": -1 + }, + { + "type": "float", + "name": "dry", + "setter": "set_dry", + "getter": "get_dry", + "index": -1 + }, + { + "type": "float", + "name": "wet", + "setter": "set_wet", + "getter": "get_wet", + "index": -1 + }, + { + "type": "float", + "name": "voice/1/delay_ms", + "setter": "set_voice_delay_ms", + "getter": "get_voice_delay_ms", + "index": 0 + }, + { + "type": "float", + "name": "voice/1/rate_hz", + "setter": "set_voice_rate_hz", + "getter": "get_voice_rate_hz", + "index": 0 + }, + { + "type": "float", + "name": "voice/1/depth_ms", + "setter": "set_voice_depth_ms", + "getter": "get_voice_depth_ms", + "index": 0 + }, + { + "type": "float", + "name": "voice/1/level_db", + "setter": "set_voice_level_db", + "getter": "get_voice_level_db", + "index": 0 + }, + { + "type": "float", + "name": "voice/1/cutoff_hz", + "setter": "set_voice_cutoff_hz", + "getter": "get_voice_cutoff_hz", + "index": 0 + }, + { + "type": "float", + "name": "voice/1/pan", + "setter": "set_voice_pan", + "getter": "get_voice_pan", + "index": 0 + }, + { + "type": "float", + "name": "voice/2/delay_ms", + "setter": "set_voice_delay_ms", + "getter": "get_voice_delay_ms", + "index": 1 + }, + { + "type": "float", + "name": "voice/2/rate_hz", + "setter": "set_voice_rate_hz", + "getter": "get_voice_rate_hz", + "index": 1 + }, + { + "type": "float", + "name": "voice/2/depth_ms", + "setter": "set_voice_depth_ms", + "getter": "get_voice_depth_ms", + "index": 1 + }, + { + "type": "float", + "name": "voice/2/level_db", + "setter": "set_voice_level_db", + "getter": "get_voice_level_db", + "index": 1 + }, + { + "type": "float", + "name": "voice/2/cutoff_hz", + "setter": "set_voice_cutoff_hz", + "getter": "get_voice_cutoff_hz", + "index": 1 + }, + { + "type": "float", + "name": "voice/2/pan", + "setter": "set_voice_pan", + "getter": "get_voice_pan", + "index": 1 + }, + { + "type": "float", + "name": "voice/3/delay_ms", + "setter": "set_voice_delay_ms", + "getter": "get_voice_delay_ms", + "index": 2 + }, + { + "type": "float", + "name": "voice/3/rate_hz", + "setter": "set_voice_rate_hz", + "getter": "get_voice_rate_hz", + "index": 2 + }, + { + "type": "float", + "name": "voice/3/depth_ms", + "setter": "set_voice_depth_ms", + "getter": "get_voice_depth_ms", + "index": 2 + }, + { + "type": "float", + "name": "voice/3/level_db", + "setter": "set_voice_level_db", + "getter": "get_voice_level_db", + "index": 2 + }, + { + "type": "float", + "name": "voice/3/cutoff_hz", + "setter": "set_voice_cutoff_hz", + "getter": "get_voice_cutoff_hz", + "index": 2 + }, + { + "type": "float", + "name": "voice/3/pan", + "setter": "set_voice_pan", + "getter": "get_voice_pan", + "index": 2 + }, + { + "type": "float", + "name": "voice/4/delay_ms", + "setter": "set_voice_delay_ms", + "getter": "get_voice_delay_ms", + "index": 3 + }, + { + "type": "float", + "name": "voice/4/rate_hz", + "setter": "set_voice_rate_hz", + "getter": "get_voice_rate_hz", + "index": 3 + }, + { + "type": "float", + "name": "voice/4/depth_ms", + "setter": "set_voice_depth_ms", + "getter": "get_voice_depth_ms", + "index": 3 + }, + { + "type": "float", + "name": "voice/4/level_db", + "setter": "set_voice_level_db", + "getter": "get_voice_level_db", + "index": 3 + }, + { + "type": "float", + "name": "voice/4/cutoff_hz", + "setter": "set_voice_cutoff_hz", + "getter": "get_voice_cutoff_hz", + "index": 3 + }, + { + "type": "float", + "name": "voice/4/pan", + "setter": "set_voice_pan", + "getter": "get_voice_pan", + "index": 3 + } + ] + }, + { + "name": "AudioEffectCompressor", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "threshold", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_threshold", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_gain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gain", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_attack_us", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "attack_us", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_attack_us", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_release_ms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "release_ms", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_release_ms", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mix", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sidechain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sidechain", + "type": "StringName" + } + ] + }, + { + "name": "get_sidechain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "float", + "name": "threshold", + "setter": "set_threshold", + "getter": "get_threshold", + "index": -1 + }, + { + "type": "float", + "name": "ratio", + "setter": "set_ratio", + "getter": "get_ratio", + "index": -1 + }, + { + "type": "float", + "name": "gain", + "setter": "set_gain", + "getter": "get_gain", + "index": -1 + }, + { + "type": "float", + "name": "attack_us", + "setter": "set_attack_us", + "getter": "get_attack_us", + "index": -1 + }, + { + "type": "float", + "name": "release_ms", + "setter": "set_release_ms", + "getter": "get_release_ms", + "index": -1 + }, + { + "type": "float", + "name": "mix", + "setter": "set_mix", + "getter": "get_mix", + "index": -1 + }, + { + "type": "StringName", + "name": "sidechain", + "setter": "set_sidechain", + "getter": "get_sidechain", + "index": -1 + } + ] + }, + { + "name": "AudioEffectDelay", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_dry", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dry", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap1_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "bool" + } + ] + }, + { + "name": "is_tap1_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tap1_delay_ms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap1_delay_ms", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap1_level_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap1_level_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap1_pan", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap1_pan", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap2_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "bool" + } + ] + }, + { + "name": "is_tap2_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tap2_delay_ms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap2_delay_ms", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap2_level_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap2_level_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap2_pan", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap2_pan", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_feedback_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "bool" + } + ] + }, + { + "name": "is_feedback_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_feedback_delay_ms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_feedback_delay_ms", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_feedback_level_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_feedback_level_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_feedback_lowpass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_feedback_lowpass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "dry", + "setter": "set_dry", + "getter": "get_dry", + "index": -1 + }, + { + "type": "bool", + "name": "tap1/active", + "setter": "set_tap1_active", + "getter": "is_tap1_active", + "index": -1 + }, + { + "type": "float", + "name": "tap1/delay_ms", + "setter": "set_tap1_delay_ms", + "getter": "get_tap1_delay_ms", + "index": -1 + }, + { + "type": "float", + "name": "tap1/level_db", + "setter": "set_tap1_level_db", + "getter": "get_tap1_level_db", + "index": -1 + }, + { + "type": "float", + "name": "tap1/pan", + "setter": "set_tap1_pan", + "getter": "get_tap1_pan", + "index": -1 + }, + { + "type": "bool", + "name": "tap2/active", + "setter": "set_tap2_active", + "getter": "is_tap2_active", + "index": -1 + }, + { + "type": "float", + "name": "tap2/delay_ms", + "setter": "set_tap2_delay_ms", + "getter": "get_tap2_delay_ms", + "index": -1 + }, + { + "type": "float", + "name": "tap2/level_db", + "setter": "set_tap2_level_db", + "getter": "get_tap2_level_db", + "index": -1 + }, + { + "type": "float", + "name": "tap2/pan", + "setter": "set_tap2_pan", + "getter": "get_tap2_pan", + "index": -1 + }, + { + "type": "bool", + "name": "feedback/active", + "setter": "set_feedback_active", + "getter": "is_feedback_active", + "index": -1 + }, + { + "type": "float", + "name": "feedback/delay_ms", + "setter": "set_feedback_delay_ms", + "getter": "get_feedback_delay_ms", + "index": -1 + }, + { + "type": "float", + "name": "feedback/level_db", + "setter": "set_feedback_level_db", + "getter": "get_feedback_level_db", + "index": -1 + }, + { + "type": "float", + "name": "feedback/lowpass", + "setter": "set_feedback_lowpass", + "getter": "get_feedback_lowpass", + "index": -1 + } + ] + }, + { + "name": "AudioEffectDistortion", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_CLIP", + "value": 0 + }, + { + "name": "MODE_ATAN", + "value": 1 + }, + { + "name": "MODE_LOFI", + "value": 2 + }, + { + "name": "MODE_OVERDRIVE", + "value": 3 + }, + { + "name": "MODE_WAVESHAPE", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AudioEffectDistortion.Mode" + } + ] + }, + { + "name": "get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioEffectDistortion.Mode" + } + }, + { + "name": "set_pre_gain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pre_gain", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pre_gain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_keep_hf_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keep_hf_hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_keep_hf_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_drive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "drive", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_drive", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_post_gain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "post_gain", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_post_gain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "mode", + "setter": "set_mode", + "getter": "get_mode", + "index": -1 + }, + { + "type": "float", + "name": "pre_gain", + "setter": "set_pre_gain", + "getter": "get_pre_gain", + "index": -1 + }, + { + "type": "float", + "name": "keep_hf_hz", + "setter": "set_keep_hf_hz", + "getter": "get_keep_hf_hz", + "index": -1 + }, + { + "type": "float", + "name": "drive", + "setter": "set_drive", + "getter": "get_drive", + "index": -1 + }, + { + "type": "float", + "name": "post_gain", + "setter": "set_post_gain", + "getter": "get_post_gain", + "index": -1 + } + ] + }, + { + "name": "AudioEffectEQ", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_band_gain_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "band_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "volume_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_band_gain_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "band_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_band_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "AudioEffectEQ10", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectEQ", + "api_type": "core" + }, + { + "name": "AudioEffectEQ21", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectEQ", + "api_type": "core" + }, + { + "name": "AudioEffectEQ6", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectEQ", + "api_type": "core" + }, + { + "name": "AudioEffectFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "enums": [ + { + "name": "FilterDB", + "values": [ + { + "name": "FILTER_6DB", + "value": 0 + }, + { + "name": "FILTER_12DB", + "value": 1 + }, + { + "name": "FILTER_18DB", + "value": 2 + }, + { + "name": "FILTER_24DB", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_cutoff", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "freq", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cutoff", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_resonance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_resonance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_gain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "enum::AudioEffectFilter.FilterDB" + } + ] + }, + { + "name": "get_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioEffectFilter.FilterDB" + } + } + ], + "properties": [ + { + "type": "float", + "name": "cutoff_hz", + "setter": "set_cutoff", + "getter": "get_cutoff", + "index": -1 + }, + { + "type": "float", + "name": "resonance", + "setter": "set_resonance", + "getter": "get_resonance", + "index": -1 + }, + { + "type": "float", + "name": "gain", + "setter": "set_gain", + "getter": "get_gain", + "index": -1 + }, + { + "type": "int", + "name": "db", + "setter": "set_db", + "getter": "get_db", + "index": -1 + } + ] + }, + { + "name": "AudioEffectHighPassFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectHighShelfFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectInstance", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "src_buffer", + "type": "const void*" + }, + { + "name": "dst_buffer", + "type": "AudioFrame*" + }, + { + "name": "frame_count", + "type": "int" + } + ] + }, + { + "name": "_process_silence", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "AudioEffectLimiter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_ceiling_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ceiling", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ceiling_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_threshold_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "threshold", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_threshold_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_soft_clip_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "soft_clip", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_soft_clip_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_soft_clip_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "soft_clip", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_soft_clip_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "ceiling_db", + "setter": "set_ceiling_db", + "getter": "get_ceiling_db", + "index": -1 + }, + { + "type": "float", + "name": "threshold_db", + "setter": "set_threshold_db", + "getter": "get_threshold_db", + "index": -1 + }, + { + "type": "float", + "name": "soft_clip_db", + "setter": "set_soft_clip_db", + "getter": "get_soft_clip_db", + "index": -1 + }, + { + "type": "float", + "name": "soft_clip_ratio", + "setter": "set_soft_clip_ratio", + "getter": "get_soft_clip_ratio", + "index": -1 + } + ] + }, + { + "name": "AudioEffectLowPassFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectLowShelfFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectNotchFilter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffectFilter", + "api_type": "core" + }, + { + "name": "AudioEffectPanner", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_pan", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cpanume", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pan", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "pan", + "setter": "set_pan", + "getter": "get_pan", + "index": -1 + } + ] + }, + { + "name": "AudioEffectPhaser", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_range_min_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_range_min_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_range_max_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_range_max_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rate_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_rate_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_feedback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fbk", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_feedback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "range_min_hz", + "setter": "set_range_min_hz", + "getter": "get_range_min_hz", + "index": -1 + }, + { + "type": "float", + "name": "range_max_hz", + "setter": "set_range_max_hz", + "getter": "get_range_max_hz", + "index": -1 + }, + { + "type": "float", + "name": "rate_hz", + "setter": "set_rate_hz", + "getter": "get_rate_hz", + "index": -1 + }, + { + "type": "float", + "name": "feedback", + "setter": "set_feedback", + "getter": "get_feedback", + "index": -1 + }, + { + "type": "float", + "name": "depth", + "setter": "set_depth", + "getter": "get_depth", + "index": -1 + } + ] + }, + { + "name": "AudioEffectPitchShift", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "enums": [ + { + "name": "FFTSize", + "values": [ + { + "name": "FFT_SIZE_256", + "value": 0 + }, + { + "name": "FFT_SIZE_512", + "value": 1 + }, + { + "name": "FFT_SIZE_1024", + "value": 2 + }, + { + "name": "FFT_SIZE_2048", + "value": 3 + }, + { + "name": "FFT_SIZE_4096", + "value": 4 + }, + { + "name": "FFT_SIZE_MAX", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "set_pitch_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rate", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pitch_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_oversampling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_oversampling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_fft_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "enum::AudioEffectPitchShift.FFTSize" + } + ] + }, + { + "name": "get_fft_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioEffectPitchShift.FFTSize" + } + } + ], + "properties": [ + { + "type": "float", + "name": "pitch_scale", + "setter": "set_pitch_scale", + "getter": "get_pitch_scale", + "index": -1 + }, + { + "type": "float", + "name": "oversampling", + "setter": "set_oversampling", + "getter": "get_oversampling", + "index": -1 + }, + { + "type": "int", + "name": "fft_size", + "setter": "set_fft_size", + "getter": "get_fft_size", + "index": -1 + } + ] + }, + { + "name": "AudioEffectRecord", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_recording_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "record", + "type": "bool" + } + ] + }, + { + "name": "is_recording_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "format", + "type": "enum::AudioStreamSample.Format" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamSample.Format" + } + }, + { + "name": "get_recording", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AudioStreamSample" + } + } + ], + "properties": [ + { + "type": "int", + "name": "format", + "setter": "set_format", + "getter": "get_format", + "index": -1 + } + ] + }, + { + "name": "AudioEffectReverb", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_predelay_msec", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msec", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_predelay_msec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_predelay_feedback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "feedback", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_predelay_feedback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_room_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_room_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_spread", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_spread", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_dry", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dry", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_wet", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_wet", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_hpf", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_hpf", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "predelay_msec", + "setter": "set_predelay_msec", + "getter": "get_predelay_msec", + "index": -1 + }, + { + "type": "float", + "name": "predelay_feedback", + "setter": "set_predelay_feedback", + "getter": "get_predelay_feedback", + "index": -1 + }, + { + "type": "float", + "name": "room_size", + "setter": "set_room_size", + "getter": "get_room_size", + "index": -1 + }, + { + "type": "float", + "name": "damping", + "setter": "set_damping", + "getter": "get_damping", + "index": -1 + }, + { + "type": "float", + "name": "spread", + "setter": "set_spread", + "getter": "get_spread", + "index": -1 + }, + { + "type": "float", + "name": "hipass", + "setter": "set_hpf", + "getter": "get_hpf", + "index": -1 + }, + { + "type": "float", + "name": "dry", + "setter": "set_dry", + "getter": "get_dry", + "index": -1 + }, + { + "type": "float", + "name": "wet", + "setter": "set_wet", + "getter": "get_wet", + "index": -1 + } + ] + }, + { + "name": "AudioEffectSpectrumAnalyzer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "enums": [ + { + "name": "FFTSize", + "values": [ + { + "name": "FFT_SIZE_256", + "value": 0 + }, + { + "name": "FFT_SIZE_512", + "value": 1 + }, + { + "name": "FFT_SIZE_1024", + "value": 2 + }, + { + "name": "FFT_SIZE_2048", + "value": 3 + }, + { + "name": "FFT_SIZE_4096", + "value": 4 + }, + { + "name": "FFT_SIZE_MAX", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "set_buffer_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_buffer_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tap_back_pos", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tap_back_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fft_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "enum::AudioEffectSpectrumAnalyzer.FFTSize" + } + ] + }, + { + "name": "get_fft_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioEffectSpectrumAnalyzer.FFTSize" + } + } + ], + "properties": [ + { + "type": "float", + "name": "buffer_length", + "setter": "set_buffer_length", + "getter": "get_buffer_length", + "index": -1 + }, + { + "type": "float", + "name": "tap_back_pos", + "setter": "set_tap_back_pos", + "getter": "get_tap_back_pos", + "index": -1 + }, + { + "type": "int", + "name": "fft_size", + "setter": "set_fft_size", + "getter": "get_fft_size", + "index": -1 + } + ] + }, + { + "name": "AudioEffectSpectrumAnalyzerInstance", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "AudioEffectInstance", + "api_type": "core", + "enums": [ + { + "name": "MagnitudeMode", + "values": [ + { + "name": "MAGNITUDE_AVERAGE", + "value": 0 + }, + { + "name": "MAGNITUDE_MAX", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "get_magnitude_for_frequency_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "from_hz", + "type": "float", + "meta": "float" + }, + { + "name": "to_hz", + "type": "float", + "meta": "float" + }, + { + "name": "mode", + "type": "enum::AudioEffectSpectrumAnalyzerInstance.MagnitudeMode", + "default_value": "1" + } + ] + } + ] + }, + { + "name": "AudioEffectStereoEnhance", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioEffect", + "api_type": "core", + "methods": [ + { + "name": "set_pan_pullout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pan_pullout", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_time_pullout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_time_pullout", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_surround", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_surround", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "pan_pullout", + "setter": "set_pan_pullout", + "getter": "get_pan_pullout", + "index": -1 + }, + { + "type": "float", + "name": "time_pullout_ms", + "setter": "set_time_pullout", + "getter": "get_time_pullout", + "index": -1 + }, + { + "type": "float", + "name": "surround", + "setter": "set_surround", + "getter": "get_surround", + "index": -1 + } + ] + }, + { + "name": "AudioListener2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "make_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_current", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "AudioListener3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "make_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_current", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_listener_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + } + ] + }, + { + "name": "AudioServer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "SpeakerMode", + "values": [ + { + "name": "SPEAKER_MODE_STEREO", + "value": 0 + }, + { + "name": "SPEAKER_SURROUND_31", + "value": 1 + }, + { + "name": "SPEAKER_SURROUND_51", + "value": 2 + }, + { + "name": "SPEAKER_SURROUND_71", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_bus_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "remove_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "to_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_bus_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "bus_name", + "type": "StringName" + } + ] + }, + { + "name": "get_bus_channels", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_volume_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "volume_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bus_volume_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_send", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "send", + "type": "StringName" + } + ] + }, + { + "name": "get_bus_send", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_solo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_bus_solo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_mute", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_bus_mute", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_bypass_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_bus_bypassing_effects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_bus_effect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect", + "type": "AudioEffect" + }, + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_bus_effect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_effect_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_effect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "AudioEffect" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_effect_instance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "AudioEffectInstance" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "channel", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "swap_bus_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "by_effect_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bus_effect_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_bus_effect_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "effect_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_peak_volume_left_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "channel", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bus_peak_volume_right_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "bus_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "channel", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_playback_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_playback_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "lock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "unlock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_speaker_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioServer.SpeakerMode" + } + }, + { + "name": "get_mix_rate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_device_list", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "set_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "device", + "type": "String" + } + ] + }, + { + "name": "get_time_to_next_mix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_time_since_last_mix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_output_latency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "capture_get_device_list", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "capture_get_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "capture_set_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_bus_layout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bus_layout", + "type": "AudioBusLayout" + } + ] + }, + { + "name": "generate_bus_layout", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AudioBusLayout" + } + } + ], + "signals": [ + { + "name": "bus_layout_changed" + } + ], + "properties": [ + { + "type": "int", + "name": "bus_count", + "setter": "set_bus_count", + "getter": "get_bus_count", + "index": -1 + }, + { + "type": "String", + "name": "device", + "setter": "set_device", + "getter": "get_device", + "index": -1 + }, + { + "type": "String", + "name": "capture_device", + "setter": "capture_set_device", + "getter": "capture_get_device", + "index": -1 + }, + { + "type": "float", + "name": "playback_speed_scale", + "setter": "set_playback_speed_scale", + "getter": "get_playback_speed_scale", + "index": -1 + } + ] + }, + { + "name": "AudioStream", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_instance_playback", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "AudioStreamPlayback" + } + }, + { + "name": "_get_stream_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_length", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_is_monophonic", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "is_monophonic", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "instance_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "AudioStreamPlayback" + } + } + ] + }, + { + "name": "AudioStreamGenerator", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStream", + "api_type": "core", + "methods": [ + { + "name": "set_mix_rate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hz", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mix_rate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_buffer_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_buffer_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "mix_rate", + "setter": "set_mix_rate", + "getter": "get_mix_rate", + "index": -1 + }, + { + "type": "float", + "name": "buffer_length", + "setter": "set_buffer_length", + "getter": "get_buffer_length", + "index": -1 + } + ] + }, + { + "name": "AudioStreamGeneratorPlayback", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "AudioStreamPlaybackResampled", + "api_type": "core", + "methods": [ + { + "name": "push_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "frame", + "type": "Vector2" + } + ] + }, + { + "name": "can_push_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "push_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "frames", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_frames_available", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_skips", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "clear_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "AudioStreamMP3", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStream", + "api_type": "core", + "methods": [ + { + "name": "set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "set_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_loop_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_loop_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "PackedByteArray", + "name": "data", + "setter": "set_data", + "getter": "get_data", + "index": -1 + }, + { + "type": "bool", + "name": "loop", + "setter": "set_loop", + "getter": "has_loop", + "index": -1 + }, + { + "type": "float", + "name": "loop_offset", + "setter": "set_loop_offset", + "getter": "get_loop_offset", + "index": -1 + } + ] + }, + { + "name": "AudioStreamMicrophone", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStream", + "api_type": "core" + }, + { + "name": "AudioStreamOGGVorbis", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStream", + "api_type": "core", + "methods": [ + { + "name": "set_packet_sequence", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "packet_sequence", + "type": "OGGPacketSequence" + } + ] + }, + { + "name": "get_packet_sequence", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "OGGPacketSequence" + } + }, + { + "name": "set_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_loop_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_loop_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Object", + "name": "packet_sequence", + "setter": "set_packet_sequence", + "getter": "get_packet_sequence", + "index": -1 + }, + { + "type": "bool", + "name": "loop", + "setter": "set_loop", + "getter": "has_loop", + "index": -1 + }, + { + "type": "float", + "name": "loop_offset", + "setter": "set_loop_offset", + "getter": "get_loop_offset", + "index": -1 + } + ] + }, + { + "name": "AudioStreamPlayback", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "_start", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "from_pos", + "type": "float" + } + ] + }, + { + "name": "_stop", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_is_playing", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_loop_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_playback_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_seek", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "position", + "type": "float" + } + ] + }, + { + "name": "_mix", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "buffer", + "type": "AudioFrame*" + }, + { + "name": "rate_scale", + "type": "float" + }, + { + "name": "frames", + "type": "int" + } + ] + } + ] + }, + { + "name": "AudioStreamPlaybackOGGVorbis", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStreamPlaybackResampled", + "api_type": "core" + }, + { + "name": "AudioStreamPlaybackResampled", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStreamPlayback", + "api_type": "core", + "methods": [ + { + "name": "_mix_resampled", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "dst_buffer", + "type": "AudioFrame*" + }, + { + "name": "frame_count", + "type": "int" + } + ] + }, + { + "name": "_get_stream_sampling_rate", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "begin_resample", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "AudioStreamPlayer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "enums": [ + { + "name": "MixTarget", + "values": [ + { + "name": "MIX_TARGET_STEREO", + "value": 0 + }, + { + "name": "MIX_TARGET_SURROUND", + "value": 1 + }, + { + "name": "MIX_TARGET_CENTER", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stream", + "type": "AudioStream" + } + ] + }, + { + "name": "get_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AudioStream" + } + }, + { + "name": "set_volume_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "volume_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volume_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pitch_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pitch_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pitch_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2744538615, + "arguments": [ + { + "name": "from_position", + "type": "float", + "meta": "float", + "default_value": "0.0" + } + ] + }, + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to_position", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_playback_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bus", + "type": "StringName" + } + ] + }, + { + "name": "get_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_autoplay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_autoplay_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_mix_target", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mix_target", + "type": "enum::AudioStreamPlayer.MixTarget" + } + ] + }, + { + "name": "get_mix_target", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamPlayer.MixTarget" + } + }, + { + "name": "set_stream_paused", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pause", + "type": "bool" + } + ] + }, + { + "name": "get_stream_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_max_polyphony", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_polyphony", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_polyphony", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_stream_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "AudioStreamPlayback" + } + } + ], + "signals": [ + { + "name": "finished" + } + ], + "properties": [ + { + "type": "AudioStream", + "name": "stream", + "setter": "set_stream", + "getter": "get_stream", + "index": -1 + }, + { + "type": "float", + "name": "volume_db", + "setter": "set_volume_db", + "getter": "get_volume_db", + "index": -1 + }, + { + "type": "float", + "name": "pitch_scale", + "setter": "set_pitch_scale", + "getter": "get_pitch_scale", + "index": -1 + }, + { + "type": "bool", + "name": "playing", + "setter": "_set_playing", + "getter": "is_playing", + "index": -1 + }, + { + "type": "bool", + "name": "autoplay", + "setter": "set_autoplay", + "getter": "is_autoplay_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "stream_paused", + "setter": "set_stream_paused", + "getter": "get_stream_paused", + "index": -1 + }, + { + "type": "int", + "name": "mix_target", + "setter": "set_mix_target", + "getter": "get_mix_target", + "index": -1 + }, + { + "type": "int", + "name": "max_polyphony", + "setter": "set_max_polyphony", + "getter": "get_max_polyphony", + "index": -1 + }, + { + "type": "StringName", + "name": "bus", + "setter": "set_bus", + "getter": "get_bus", + "index": -1 + } + ] + }, + { + "name": "AudioStreamPlayer2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stream", + "type": "AudioStream" + } + ] + }, + { + "name": "get_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AudioStream" + } + }, + { + "name": "set_volume_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "volume_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volume_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pitch_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pitch_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pitch_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2744538615, + "arguments": [ + { + "name": "from_position", + "type": "float", + "meta": "float", + "default_value": "0.0" + } + ] + }, + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to_position", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_playback_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bus", + "type": "StringName" + } + ] + }, + { + "name": "get_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_autoplay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_autoplay_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_attenuation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_attenuation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_area_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_area_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_stream_paused", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pause", + "type": "bool" + } + ] + }, + { + "name": "get_stream_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_max_polyphony", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_polyphony", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_polyphony", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_stream_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "AudioStreamPlayback" + } + } + ], + "signals": [ + { + "name": "finished" + } + ], + "properties": [ + { + "type": "AudioStream", + "name": "stream", + "setter": "set_stream", + "getter": "get_stream", + "index": -1 + }, + { + "type": "float", + "name": "volume_db", + "setter": "set_volume_db", + "getter": "get_volume_db", + "index": -1 + }, + { + "type": "float", + "name": "pitch_scale", + "setter": "set_pitch_scale", + "getter": "get_pitch_scale", + "index": -1 + }, + { + "type": "bool", + "name": "playing", + "setter": "_set_playing", + "getter": "is_playing", + "index": -1 + }, + { + "type": "bool", + "name": "autoplay", + "setter": "set_autoplay", + "getter": "is_autoplay_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "stream_paused", + "setter": "set_stream_paused", + "getter": "get_stream_paused", + "index": -1 + }, + { + "type": "float", + "name": "max_distance", + "setter": "set_max_distance", + "getter": "get_max_distance", + "index": -1 + }, + { + "type": "float", + "name": "attenuation", + "setter": "set_attenuation", + "getter": "get_attenuation", + "index": -1 + }, + { + "type": "int", + "name": "max_polyphony", + "setter": "set_max_polyphony", + "getter": "get_max_polyphony", + "index": -1 + }, + { + "type": "StringName", + "name": "bus", + "setter": "set_bus", + "getter": "get_bus", + "index": -1 + }, + { + "type": "int", + "name": "area_mask", + "setter": "set_area_mask", + "getter": "get_area_mask", + "index": -1 + } + ] + }, + { + "name": "AudioStreamPlayer3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "enums": [ + { + "name": "AttenuationModel", + "values": [ + { + "name": "ATTENUATION_INVERSE_DISTANCE", + "value": 0 + }, + { + "name": "ATTENUATION_INVERSE_SQUARE_DISTANCE", + "value": 1 + }, + { + "name": "ATTENUATION_LOGARITHMIC", + "value": 2 + }, + { + "name": "ATTENUATION_DISABLED", + "value": 3 + } + ] + }, + { + "name": "DopplerTracking", + "values": [ + { + "name": "DOPPLER_TRACKING_DISABLED", + "value": 0 + }, + { + "name": "DOPPLER_TRACKING_IDLE_STEP", + "value": 1 + }, + { + "name": "DOPPLER_TRACKING_PHYSICS_STEP", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stream", + "type": "AudioStream" + } + ] + }, + { + "name": "get_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AudioStream" + } + }, + { + "name": "set_unit_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unit_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_unit_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_unit_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unit_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_unit_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pitch_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pitch_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pitch_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2744538615, + "arguments": [ + { + "name": "from_position", + "type": "float", + "meta": "float", + "default_value": "0.0" + } + ] + }, + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to_position", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_playback_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bus", + "type": "StringName" + } + ] + }, + { + "name": "get_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_autoplay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_autoplay_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "metres", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_area_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_area_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_emission_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_angle_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_emission_angle_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_emission_angle_filter_attenuation_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_angle_filter_attenuation_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_attenuation_filter_cutoff_hz", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_attenuation_filter_cutoff_hz", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_attenuation_filter_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_attenuation_filter_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_attenuation_model", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "model", + "type": "enum::AudioStreamPlayer3D.AttenuationModel" + } + ] + }, + { + "name": "get_attenuation_model", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamPlayer3D.AttenuationModel" + } + }, + { + "name": "set_doppler_tracking", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AudioStreamPlayer3D.DopplerTracking" + } + ] + }, + { + "name": "get_doppler_tracking", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamPlayer3D.DopplerTracking" + } + }, + { + "name": "set_stream_paused", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pause", + "type": "bool" + } + ] + }, + { + "name": "get_stream_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_max_polyphony", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_polyphony", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_polyphony", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_stream_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "AudioStreamPlayback" + } + } + ], + "signals": [ + { + "name": "finished" + } + ], + "properties": [ + { + "type": "AudioStream", + "name": "stream", + "setter": "set_stream", + "getter": "get_stream", + "index": -1 + }, + { + "type": "int", + "name": "attenuation_model", + "setter": "set_attenuation_model", + "getter": "get_attenuation_model", + "index": -1 + }, + { + "type": "float", + "name": "unit_db", + "setter": "set_unit_db", + "getter": "get_unit_db", + "index": -1 + }, + { + "type": "float", + "name": "unit_size", + "setter": "set_unit_size", + "getter": "get_unit_size", + "index": -1 + }, + { + "type": "float", + "name": "max_db", + "setter": "set_max_db", + "getter": "get_max_db", + "index": -1 + }, + { + "type": "float", + "name": "pitch_scale", + "setter": "set_pitch_scale", + "getter": "get_pitch_scale", + "index": -1 + }, + { + "type": "bool", + "name": "playing", + "setter": "_set_playing", + "getter": "is_playing", + "index": -1 + }, + { + "type": "bool", + "name": "autoplay", + "setter": "set_autoplay", + "getter": "is_autoplay_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "stream_paused", + "setter": "set_stream_paused", + "getter": "get_stream_paused", + "index": -1 + }, + { + "type": "float", + "name": "max_distance", + "setter": "set_max_distance", + "getter": "get_max_distance", + "index": -1 + }, + { + "type": "int", + "name": "max_polyphony", + "setter": "set_max_polyphony", + "getter": "get_max_polyphony", + "index": -1 + }, + { + "type": "StringName", + "name": "bus", + "setter": "set_bus", + "getter": "get_bus", + "index": -1 + }, + { + "type": "int", + "name": "area_mask", + "setter": "set_area_mask", + "getter": "get_area_mask", + "index": -1 + }, + { + "type": "bool", + "name": "emission_angle_enabled", + "setter": "set_emission_angle_enabled", + "getter": "is_emission_angle_enabled", + "index": -1 + }, + { + "type": "float", + "name": "emission_angle_degrees", + "setter": "set_emission_angle", + "getter": "get_emission_angle", + "index": -1 + }, + { + "type": "float", + "name": "emission_angle_filter_attenuation_db", + "setter": "set_emission_angle_filter_attenuation_db", + "getter": "get_emission_angle_filter_attenuation_db", + "index": -1 + }, + { + "type": "float", + "name": "attenuation_filter_cutoff_hz", + "setter": "set_attenuation_filter_cutoff_hz", + "getter": "get_attenuation_filter_cutoff_hz", + "index": -1 + }, + { + "type": "float", + "name": "attenuation_filter_db", + "setter": "set_attenuation_filter_db", + "getter": "get_attenuation_filter_db", + "index": -1 + }, + { + "type": "int", + "name": "doppler_tracking", + "setter": "set_doppler_tracking", + "getter": "get_doppler_tracking", + "index": -1 + } + ] + }, + { + "name": "AudioStreamRandomizer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStream", + "api_type": "core", + "enums": [ + { + "name": "PlaybackMode", + "values": [ + { + "name": "PLAYBACK_RANDOM_NO_REPEATS", + "value": 0 + }, + { + "name": "PLAYBACK_RANDOM", + "value": 1 + }, + { + "name": "PLAYBACK_SEQUENTIAL", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "add_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "move_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index_from", + "type": "int", + "meta": "int32" + }, + { + "name": "index_to", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "stream", + "type": "AudioStream" + } + ] + }, + { + "name": "get_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AudioStream" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_stream_probability_weight", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "weight", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_stream_probability_weight", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_streams_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_streams_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_random_pitch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_random_pitch", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_random_volume_offset_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "db_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_random_volume_offset_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_playback_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::AudioStreamRandomizer.PlaybackMode" + } + ] + }, + { + "name": "get_playback_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamRandomizer.PlaybackMode" + } + } + ], + "properties": [ + { + "type": "stream_", + "name": "streams", + "setter": "", + "getter": "", + "index": -1 + }, + { + "type": "int", + "name": "streams_count", + "setter": "set_streams_count", + "getter": "get_streams_count", + "index": -1 + }, + { + "type": "int", + "name": "playback_mode", + "setter": "set_playback_mode", + "getter": "get_playback_mode", + "index": -1 + }, + { + "type": "float", + "name": "random_pitch", + "setter": "set_random_pitch", + "getter": "get_random_pitch", + "index": -1 + }, + { + "type": "float", + "name": "random_volume_offset_db", + "setter": "set_random_volume_offset_db", + "getter": "get_random_volume_offset_db", + "index": -1 + } + ] + }, + { + "name": "AudioStreamSample", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AudioStream", + "api_type": "core", + "enums": [ + { + "name": "Format", + "values": [ + { + "name": "FORMAT_8_BITS", + "value": 0 + }, + { + "name": "FORMAT_16_BITS", + "value": 1 + }, + { + "name": "FORMAT_IMA_ADPCM", + "value": 2 + } + ] + }, + { + "name": "LoopMode", + "values": [ + { + "name": "LOOP_DISABLED", + "value": 0 + }, + { + "name": "LOOP_FORWARD", + "value": 1 + }, + { + "name": "LOOP_PINGPONG", + "value": 2 + }, + { + "name": "LOOP_BACKWARD", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "set_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "format", + "type": "enum::AudioStreamSample.Format" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamSample.Format" + } + }, + { + "name": "set_loop_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop_mode", + "type": "enum::AudioStreamSample.LoopMode" + } + ] + }, + { + "name": "get_loop_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::AudioStreamSample.LoopMode" + } + }, + { + "name": "set_loop_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop_begin", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_loop_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_loop_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop_end", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_loop_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_mix_rate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mix_rate", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_mix_rate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_stereo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stereo", + "type": "bool" + } + ] + }, + { + "name": "is_stereo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "save_to_wav", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "PackedByteArray", + "name": "data", + "setter": "set_data", + "getter": "get_data", + "index": -1 + }, + { + "type": "int", + "name": "format", + "setter": "set_format", + "getter": "get_format", + "index": -1 + }, + { + "type": "int", + "name": "loop_mode", + "setter": "set_loop_mode", + "getter": "get_loop_mode", + "index": -1 + }, + { + "type": "int", + "name": "loop_begin", + "setter": "set_loop_begin", + "getter": "get_loop_begin", + "index": -1 + }, + { + "type": "int", + "name": "loop_end", + "setter": "set_loop_end", + "getter": "get_loop_end", + "index": -1 + }, + { + "type": "int", + "name": "mix_rate", + "setter": "set_mix_rate", + "getter": "get_mix_rate", + "index": -1 + }, + { + "type": "bool", + "name": "stereo", + "setter": "set_stereo", + "getter": "is_stereo", + "index": -1 + } + ] + }, + { + "name": "BackBufferCopy", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "CopyMode", + "values": [ + { + "name": "COPY_MODE_DISABLED", + "value": 0 + }, + { + "name": "COPY_MODE_RECT", + "value": 1 + }, + { + "name": "COPY_MODE_VIEWPORT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_copy_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "copy_mode", + "type": "enum::BackBufferCopy.CopyMode" + } + ] + }, + { + "name": "get_copy_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BackBufferCopy.CopyMode" + } + } + ], + "properties": [ + { + "type": "int", + "name": "copy_mode", + "setter": "set_copy_mode", + "getter": "get_copy_mode", + "index": -1 + }, + { + "type": "Rect2", + "name": "rect", + "setter": "set_rect", + "getter": "get_rect", + "index": -1 + } + ] + }, + { + "name": "BaseButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "DrawMode", + "values": [ + { + "name": "DRAW_NORMAL", + "value": 0 + }, + { + "name": "DRAW_PRESSED", + "value": 1 + }, + { + "name": "DRAW_HOVER", + "value": 2 + }, + { + "name": "DRAW_DISABLED", + "value": 3 + }, + { + "name": "DRAW_HOVER_PRESSED", + "value": 4 + } + ] + }, + { + "name": "ActionMode", + "values": [ + { + "name": "ACTION_MODE_BUTTON_PRESS", + "value": 0 + }, + { + "name": "ACTION_MODE_BUTTON_RELEASE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "_pressed", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_toggled", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "button_pressed", + "type": "bool" + } + ] + }, + { + "name": "set_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_pressed_no_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_hovered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_toggle_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_toggle_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shortcut_in_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_shortcut_in_tooltip_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_action_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseButton.ActionMode" + } + ] + }, + { + "name": "get_action_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseButton.ActionMode" + } + }, + { + "name": "set_button_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "enum::MouseButton" + } + ] + }, + { + "name": "get_button_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MouseButton" + } + }, + { + "name": "get_draw_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseButton.DrawMode" + } + }, + { + "name": "set_keep_pressed_outside", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_keep_pressed_outside", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shortcut", + "type": "Shortcut" + } + ] + }, + { + "name": "get_shortcut", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shortcut" + } + }, + { + "name": "set_button_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "button_group", + "type": "ButtonGroup" + } + ] + }, + { + "name": "get_button_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ButtonGroup" + } + }, + { + "name": "set_shortcut_context", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_shortcut_context", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + } + ], + "signals": [ + { + "name": "pressed" + }, + { + "name": "button_up" + }, + { + "name": "button_down" + }, + { + "name": "toggled", + "arguments": [ + { + "name": "button_pressed", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "disabled", + "setter": "set_disabled", + "getter": "is_disabled", + "index": -1 + }, + { + "type": "bool", + "name": "toggle_mode", + "setter": "set_toggle_mode", + "getter": "is_toggle_mode", + "index": -1 + }, + { + "type": "bool", + "name": "shortcut_in_tooltip", + "setter": "set_shortcut_in_tooltip", + "getter": "is_shortcut_in_tooltip_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "button_pressed", + "setter": "set_pressed", + "getter": "is_pressed", + "index": -1 + }, + { + "type": "int", + "name": "action_mode", + "setter": "set_action_mode", + "getter": "get_action_mode", + "index": -1 + }, + { + "type": "int", + "name": "button_mask", + "setter": "set_button_mask", + "getter": "get_button_mask", + "index": -1 + }, + { + "type": "bool", + "name": "keep_pressed_outside", + "setter": "set_keep_pressed_outside", + "getter": "is_keep_pressed_outside", + "index": -1 + }, + { + "type": "Shortcut", + "name": "shortcut", + "setter": "set_shortcut", + "getter": "get_shortcut", + "index": -1 + }, + { + "type": "ButtonGroup", + "name": "button_group", + "setter": "set_button_group", + "getter": "get_button_group", + "index": -1 + }, + { + "type": "Node", + "name": "shortcut_context", + "setter": "set_shortcut_context", + "getter": "get_shortcut_context", + "index": -1 + } + ] + }, + { + "name": "BaseMaterial3D", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Material", + "api_type": "core", + "enums": [ + { + "name": "TextureParam", + "values": [ + { + "name": "TEXTURE_ALBEDO", + "value": 0 + }, + { + "name": "TEXTURE_METALLIC", + "value": 1 + }, + { + "name": "TEXTURE_ROUGHNESS", + "value": 2 + }, + { + "name": "TEXTURE_EMISSION", + "value": 3 + }, + { + "name": "TEXTURE_NORMAL", + "value": 4 + }, + { + "name": "TEXTURE_RIM", + "value": 5 + }, + { + "name": "TEXTURE_CLEARCOAT", + "value": 6 + }, + { + "name": "TEXTURE_FLOWMAP", + "value": 7 + }, + { + "name": "TEXTURE_AMBIENT_OCCLUSION", + "value": 8 + }, + { + "name": "TEXTURE_HEIGHTMAP", + "value": 9 + }, + { + "name": "TEXTURE_SUBSURFACE_SCATTERING", + "value": 10 + }, + { + "name": "TEXTURE_SUBSURFACE_TRANSMITTANCE", + "value": 11 + }, + { + "name": "TEXTURE_BACKLIGHT", + "value": 12 + }, + { + "name": "TEXTURE_REFRACTION", + "value": 13 + }, + { + "name": "TEXTURE_DETAIL_MASK", + "value": 14 + }, + { + "name": "TEXTURE_DETAIL_ALBEDO", + "value": 15 + }, + { + "name": "TEXTURE_DETAIL_NORMAL", + "value": 16 + }, + { + "name": "TEXTURE_ORM", + "value": 17 + }, + { + "name": "TEXTURE_MAX", + "value": 18 + } + ] + }, + { + "name": "TextureFilter", + "values": [ + { + "name": "TEXTURE_FILTER_NEAREST", + "value": 0 + }, + { + "name": "TEXTURE_FILTER_LINEAR", + "value": 1 + }, + { + "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", + "value": 2 + }, + { + "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", + "value": 3 + }, + { + "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC", + "value": 4 + }, + { + "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC", + "value": 5 + }, + { + "name": "TEXTURE_FILTER_MAX", + "value": 6 + } + ] + }, + { + "name": "DetailUV", + "values": [ + { + "name": "DETAIL_UV_1", + "value": 0 + }, + { + "name": "DETAIL_UV_2", + "value": 1 + } + ] + }, + { + "name": "Transparency", + "values": [ + { + "name": "TRANSPARENCY_DISABLED", + "value": 0 + }, + { + "name": "TRANSPARENCY_ALPHA", + "value": 1 + }, + { + "name": "TRANSPARENCY_ALPHA_SCISSOR", + "value": 2 + }, + { + "name": "TRANSPARENCY_ALPHA_HASH", + "value": 3 + }, + { + "name": "TRANSPARENCY_ALPHA_DEPTH_PRE_PASS", + "value": 4 + }, + { + "name": "TRANSPARENCY_MAX", + "value": 5 + } + ] + }, + { + "name": "ShadingMode", + "values": [ + { + "name": "SHADING_MODE_UNSHADED", + "value": 0 + }, + { + "name": "SHADING_MODE_PER_PIXEL", + "value": 1 + }, + { + "name": "SHADING_MODE_PER_VERTEX", + "value": 2 + }, + { + "name": "SHADING_MODE_MAX", + "value": 3 + } + ] + }, + { + "name": "Feature", + "values": [ + { + "name": "FEATURE_EMISSION", + "value": 0 + }, + { + "name": "FEATURE_NORMAL_MAPPING", + "value": 1 + }, + { + "name": "FEATURE_RIM", + "value": 2 + }, + { + "name": "FEATURE_CLEARCOAT", + "value": 3 + }, + { + "name": "FEATURE_ANISOTROPY", + "value": 4 + }, + { + "name": "FEATURE_AMBIENT_OCCLUSION", + "value": 5 + }, + { + "name": "FEATURE_HEIGHT_MAPPING", + "value": 6 + }, + { + "name": "FEATURE_SUBSURFACE_SCATTERING", + "value": 7 + }, + { + "name": "FEATURE_SUBSURFACE_TRANSMITTANCE", + "value": 8 + }, + { + "name": "FEATURE_BACKLIGHT", + "value": 9 + }, + { + "name": "FEATURE_REFRACTION", + "value": 10 + }, + { + "name": "FEATURE_DETAIL", + "value": 11 + }, + { + "name": "FEATURE_MAX", + "value": 12 + } + ] + }, + { + "name": "BlendMode", + "values": [ + { + "name": "BLEND_MODE_MIX", + "value": 0 + }, + { + "name": "BLEND_MODE_ADD", + "value": 1 + }, + { + "name": "BLEND_MODE_SUB", + "value": 2 + }, + { + "name": "BLEND_MODE_MUL", + "value": 3 + } + ] + }, + { + "name": "AlphaAntiAliasing", + "values": [ + { + "name": "ALPHA_ANTIALIASING_OFF", + "value": 0 + }, + { + "name": "ALPHA_ANTIALIASING_ALPHA_TO_COVERAGE", + "value": 1 + }, + { + "name": "ALPHA_ANTIALIASING_ALPHA_TO_COVERAGE_AND_TO_ONE", + "value": 2 + } + ] + }, + { + "name": "DepthDrawMode", + "values": [ + { + "name": "DEPTH_DRAW_OPAQUE_ONLY", + "value": 0 + }, + { + "name": "DEPTH_DRAW_ALWAYS", + "value": 1 + }, + { + "name": "DEPTH_DRAW_DISABLED", + "value": 2 + } + ] + }, + { + "name": "CullMode", + "values": [ + { + "name": "CULL_BACK", + "value": 0 + }, + { + "name": "CULL_FRONT", + "value": 1 + }, + { + "name": "CULL_DISABLED", + "value": 2 + } + ] + }, + { + "name": "Flags", + "values": [ + { + "name": "FLAG_DISABLE_DEPTH_TEST", + "value": 0 + }, + { + "name": "FLAG_ALBEDO_FROM_VERTEX_COLOR", + "value": 1 + }, + { + "name": "FLAG_SRGB_VERTEX_COLOR", + "value": 2 + }, + { + "name": "FLAG_USE_POINT_SIZE", + "value": 3 + }, + { + "name": "FLAG_FIXED_SIZE", + "value": 4 + }, + { + "name": "FLAG_BILLBOARD_KEEP_SCALE", + "value": 5 + }, + { + "name": "FLAG_UV1_USE_TRIPLANAR", + "value": 6 + }, + { + "name": "FLAG_UV2_USE_TRIPLANAR", + "value": 7 + }, + { + "name": "FLAG_UV1_USE_WORLD_TRIPLANAR", + "value": 8 + }, + { + "name": "FLAG_UV2_USE_WORLD_TRIPLANAR", + "value": 9 + }, + { + "name": "FLAG_AO_ON_UV2", + "value": 10 + }, + { + "name": "FLAG_EMISSION_ON_UV2", + "value": 11 + }, + { + "name": "FLAG_ALBEDO_TEXTURE_FORCE_SRGB", + "value": 12 + }, + { + "name": "FLAG_DONT_RECEIVE_SHADOWS", + "value": 13 + }, + { + "name": "FLAG_DISABLE_AMBIENT_LIGHT", + "value": 14 + }, + { + "name": "FLAG_USE_SHADOW_TO_OPACITY", + "value": 15 + }, + { + "name": "FLAG_USE_TEXTURE_REPEAT", + "value": 16 + }, + { + "name": "FLAG_INVERT_HEIGHTMAP", + "value": 17 + }, + { + "name": "FLAG_SUBSURFACE_MODE_SKIN", + "value": 18 + }, + { + "name": "FLAG_PARTICLE_TRAILS_MODE", + "value": 19 + }, + { + "name": "FLAG_ALBEDO_TEXTURE_MSDF", + "value": 20 + }, + { + "name": "FLAG_MAX", + "value": 21 + } + ] + }, + { + "name": "DiffuseMode", + "values": [ + { + "name": "DIFFUSE_BURLEY", + "value": 0 + }, + { + "name": "DIFFUSE_LAMBERT", + "value": 1 + }, + { + "name": "DIFFUSE_LAMBERT_WRAP", + "value": 2 + }, + { + "name": "DIFFUSE_TOON", + "value": 3 + } + ] + }, + { + "name": "SpecularMode", + "values": [ + { + "name": "SPECULAR_SCHLICK_GGX", + "value": 0 + }, + { + "name": "SPECULAR_TOON", + "value": 1 + }, + { + "name": "SPECULAR_DISABLED", + "value": 2 + } + ] + }, + { + "name": "BillboardMode", + "values": [ + { + "name": "BILLBOARD_DISABLED", + "value": 0 + }, + { + "name": "BILLBOARD_ENABLED", + "value": 1 + }, + { + "name": "BILLBOARD_FIXED_Y", + "value": 2 + }, + { + "name": "BILLBOARD_PARTICLES", + "value": 3 + } + ] + }, + { + "name": "TextureChannel", + "values": [ + { + "name": "TEXTURE_CHANNEL_RED", + "value": 0 + }, + { + "name": "TEXTURE_CHANNEL_GREEN", + "value": 1 + }, + { + "name": "TEXTURE_CHANNEL_BLUE", + "value": 2 + }, + { + "name": "TEXTURE_CHANNEL_ALPHA", + "value": 3 + }, + { + "name": "TEXTURE_CHANNEL_GRAYSCALE", + "value": 4 + } + ] + }, + { + "name": "EmissionOperator", + "values": [ + { + "name": "EMISSION_OP_ADD", + "value": 0 + }, + { + "name": "EMISSION_OP_MULTIPLY", + "value": 1 + } + ] + }, + { + "name": "DistanceFadeMode", + "values": [ + { + "name": "DISTANCE_FADE_DISABLED", + "value": 0 + }, + { + "name": "DISTANCE_FADE_PIXEL_ALPHA", + "value": 1 + }, + { + "name": "DISTANCE_FADE_PIXEL_DITHER", + "value": 2 + }, + { + "name": "DISTANCE_FADE_OBJECT_DITHER", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_albedo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "albedo", + "type": "Color" + } + ] + }, + { + "name": "get_albedo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_transparency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transparency", + "type": "enum::BaseMaterial3D.Transparency" + } + ] + }, + { + "name": "get_transparency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.Transparency" + } + }, + { + "name": "set_alpha_antialiasing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alpha_aa", + "type": "enum::BaseMaterial3D.AlphaAntiAliasing" + } + ] + }, + { + "name": "get_alpha_antialiasing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.AlphaAntiAliasing" + } + }, + { + "name": "set_alpha_antialiasing_edge", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "edge", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_alpha_antialiasing_edge", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_shading_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shading_mode", + "type": "enum::BaseMaterial3D.ShadingMode" + } + ] + }, + { + "name": "get_shading_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.ShadingMode" + } + }, + { + "name": "set_specular", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "specular", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_specular", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_metallic", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "metallic", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_metallic", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_roughness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "roughness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_roughness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emission", + "type": "Color" + } + ] + }, + { + "name": "get_emission", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_emission_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emission_energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_normal_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_normal_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rim", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rim", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_rim", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rim_tint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rim_tint", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_rim_tint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_clearcoat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clearcoat", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_clearcoat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_clearcoat_roughness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clearcoat_roughness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_clearcoat_roughness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_anisotropy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anisotropy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_anisotropy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_heightmap_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "heightmap_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_heightmap_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_subsurface_scattering_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_subsurface_scattering_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_transmittance_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_transmittance_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_transmittance_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_transmittance_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_transmittance_boost", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "boost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_transmittance_boost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_backlight", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "backlight", + "type": "Color" + } + ] + }, + { + "name": "get_backlight", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_refraction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "refraction", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_refraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_point_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_point_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_detail_uv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail_uv", + "type": "enum::BaseMaterial3D.DetailUV" + } + ] + }, + { + "name": "get_detail_uv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.DetailUV" + } + }, + { + "name": "set_blend_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "blend_mode", + "type": "enum::BaseMaterial3D.BlendMode" + } + ] + }, + { + "name": "get_blend_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.BlendMode" + } + }, + { + "name": "set_depth_draw_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth_draw_mode", + "type": "enum::BaseMaterial3D.DepthDrawMode" + } + ] + }, + { + "name": "get_depth_draw_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.DepthDrawMode" + } + }, + { + "name": "set_cull_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cull_mode", + "type": "enum::BaseMaterial3D.CullMode" + } + ] + }, + { + "name": "get_cull_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.CullMode" + } + }, + { + "name": "set_diffuse_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "diffuse_mode", + "type": "enum::BaseMaterial3D.DiffuseMode" + } + ] + }, + { + "name": "get_diffuse_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.DiffuseMode" + } + }, + { + "name": "set_specular_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "specular_mode", + "type": "enum::BaseMaterial3D.SpecularMode" + } + ] + }, + { + "name": "get_specular_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.SpecularMode" + } + }, + { + "name": "set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::BaseMaterial3D.Flags" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::BaseMaterial3D.Flags" + } + ] + }, + { + "name": "set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.TextureFilter" + } + ] + }, + { + "name": "get_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureFilter" + } + }, + { + "name": "set_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "feature", + "type": "enum::BaseMaterial3D.Feature" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::BaseMaterial3D.Feature" + } + ] + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::BaseMaterial3D.TextureParam" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "param", + "type": "enum::BaseMaterial3D.TextureParam" + } + ] + }, + { + "name": "set_detail_blend_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail_blend_mode", + "type": "enum::BaseMaterial3D.BlendMode" + } + ] + }, + { + "name": "get_detail_blend_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.BlendMode" + } + }, + { + "name": "set_uv1_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "get_uv1_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_uv1_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_uv1_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_uv1_triplanar_blend_sharpness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sharpness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_uv1_triplanar_blend_sharpness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_uv2_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "get_uv2_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_uv2_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_uv2_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_uv2_triplanar_blend_sharpness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sharpness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_uv2_triplanar_blend_sharpness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_billboard_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.BillboardMode" + } + ] + }, + { + "name": "get_billboard_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.BillboardMode" + } + }, + { + "name": "set_particles_anim_h_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_particles_anim_h_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_particles_anim_v_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_particles_anim_v_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_particles_anim_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop", + "type": "bool" + } + ] + }, + { + "name": "get_particles_anim_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_heightmap_deep_parallax", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_heightmap_deep_parallax_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_heightmap_deep_parallax_min_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_heightmap_deep_parallax_min_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_heightmap_deep_parallax_max_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_heightmap_deep_parallax_max_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_heightmap_deep_parallax_flip_tangent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip", + "type": "bool" + } + ] + }, + { + "name": "get_heightmap_deep_parallax_flip_tangent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_heightmap_deep_parallax_flip_binormal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip", + "type": "bool" + } + ] + }, + { + "name": "get_heightmap_deep_parallax_flip_binormal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_grow", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_grow", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "operator", + "type": "enum::BaseMaterial3D.EmissionOperator" + } + ] + }, + { + "name": "get_emission_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.EmissionOperator" + } + }, + { + "name": "set_ao_light_affect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ao_light_affect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_alpha_scissor_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "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": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_alpha_hash_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "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": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_grow_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_grow_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_metallic_texture_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "channel", + "type": "enum::BaseMaterial3D.TextureChannel" + } + ] + }, + { + "name": "get_metallic_texture_channel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureChannel" + } + }, + { + "name": "set_roughness_texture_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "channel", + "type": "enum::BaseMaterial3D.TextureChannel" + } + ] + }, + { + "name": "get_roughness_texture_channel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureChannel" + } + }, + { + "name": "set_ao_texture_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "channel", + "type": "enum::BaseMaterial3D.TextureChannel" + } + ] + }, + { + "name": "get_ao_texture_channel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureChannel" + } + }, + { + "name": "set_refraction_texture_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "channel", + "type": "enum::BaseMaterial3D.TextureChannel" + } + ] + }, + { + "name": "get_refraction_texture_channel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureChannel" + } + }, + { + "name": "set_proximity_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_proximity_fade_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_proximity_fade_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_proximity_fade_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_msdf_pixel_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "range", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_msdf_pixel_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_msdf_outline_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_msdf_outline_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_distance_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.DistanceFadeMode" + } + ] + }, + { + "name": "get_distance_fade", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.DistanceFadeMode" + } + }, + { + "name": "set_distance_fade_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_max_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_distance_fade_min_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_min_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "transparency", + "setter": "set_transparency", + "getter": "get_transparency", + "index": -1 + }, + { + "type": "float", + "name": "alpha_scissor_threshold", + "setter": "set_alpha_scissor_threshold", + "getter": "get_alpha_scissor_threshold", + "index": -1 + }, + { + "type": "float", + "name": "alpha_hash_scale", + "setter": "set_alpha_hash_scale", + "getter": "get_alpha_hash_scale", + "index": -1 + }, + { + "type": "int", + "name": "alpha_antialiasing_mode", + "setter": "set_alpha_antialiasing", + "getter": "get_alpha_antialiasing", + "index": -1 + }, + { + "type": "float", + "name": "alpha_antialiasing_edge", + "setter": "set_alpha_antialiasing_edge", + "getter": "get_alpha_antialiasing_edge", + "index": -1 + }, + { + "type": "int", + "name": "blend_mode", + "setter": "set_blend_mode", + "getter": "get_blend_mode", + "index": -1 + }, + { + "type": "int", + "name": "cull_mode", + "setter": "set_cull_mode", + "getter": "get_cull_mode", + "index": -1 + }, + { + "type": "int", + "name": "depth_draw_mode", + "setter": "set_depth_draw_mode", + "getter": "get_depth_draw_mode", + "index": -1 + }, + { + "type": "bool", + "name": "no_depth_test", + "setter": "set_flag", + "getter": "get_flag", + "index": 0 + }, + { + "type": "int", + "name": "shading_mode", + "setter": "set_shading_mode", + "getter": "get_shading_mode", + "index": -1 + }, + { + "type": "int", + "name": "diffuse_mode", + "setter": "set_diffuse_mode", + "getter": "get_diffuse_mode", + "index": -1 + }, + { + "type": "int", + "name": "specular_mode", + "setter": "set_specular_mode", + "getter": "get_specular_mode", + "index": -1 + }, + { + "type": "bool", + "name": "disable_ambient_light", + "setter": "set_flag", + "getter": "get_flag", + "index": 14 + }, + { + "type": "bool", + "name": "vertex_color_use_as_albedo", + "setter": "set_flag", + "getter": "get_flag", + "index": 1 + }, + { + "type": "bool", + "name": "vertex_color_is_srgb", + "setter": "set_flag", + "getter": "get_flag", + "index": 2 + }, + { + "type": "Color", + "name": "albedo_color", + "setter": "set_albedo", + "getter": "get_albedo", + "index": -1 + }, + { + "type": "Texture2D", + "name": "albedo_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 0 + }, + { + "type": "bool", + "name": "albedo_texture_force_srgb", + "setter": "set_flag", + "getter": "get_flag", + "index": 12 + }, + { + "type": "bool", + "name": "albedo_texture_msdf", + "setter": "set_flag", + "getter": "get_flag", + "index": 20 + }, + { + "type": "Texture2D", + "name": "orm_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 17 + }, + { + "type": "float", + "name": "metallic", + "setter": "set_metallic", + "getter": "get_metallic", + "index": -1 + }, + { + "type": "float", + "name": "metallic_specular", + "setter": "set_specular", + "getter": "get_specular", + "index": -1 + }, + { + "type": "Texture2D", + "name": "metallic_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 1 + }, + { + "type": "int", + "name": "metallic_texture_channel", + "setter": "set_metallic_texture_channel", + "getter": "get_metallic_texture_channel", + "index": -1 + }, + { + "type": "float", + "name": "roughness", + "setter": "set_roughness", + "getter": "get_roughness", + "index": -1 + }, + { + "type": "Texture2D", + "name": "roughness_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 2 + }, + { + "type": "int", + "name": "roughness_texture_channel", + "setter": "set_roughness_texture_channel", + "getter": "get_roughness_texture_channel", + "index": -1 + }, + { + "type": "bool", + "name": "emission_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 0 + }, + { + "type": "Color", + "name": "emission", + "setter": "set_emission", + "getter": "get_emission", + "index": -1 + }, + { + "type": "float", + "name": "emission_energy", + "setter": "set_emission_energy", + "getter": "get_emission_energy", + "index": -1 + }, + { + "type": "int", + "name": "emission_operator", + "setter": "set_emission_operator", + "getter": "get_emission_operator", + "index": -1 + }, + { + "type": "bool", + "name": "emission_on_uv2", + "setter": "set_flag", + "getter": "get_flag", + "index": 11 + }, + { + "type": "Texture2D", + "name": "emission_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 3 + }, + { + "type": "bool", + "name": "normal_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 1 + }, + { + "type": "float", + "name": "normal_scale", + "setter": "set_normal_scale", + "getter": "get_normal_scale", + "index": -1 + }, + { + "type": "Texture2D", + "name": "normal_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 4 + }, + { + "type": "bool", + "name": "rim_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 2 + }, + { + "type": "float", + "name": "rim", + "setter": "set_rim", + "getter": "get_rim", + "index": -1 + }, + { + "type": "float", + "name": "rim_tint", + "setter": "set_rim_tint", + "getter": "get_rim_tint", + "index": -1 + }, + { + "type": "Texture2D", + "name": "rim_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 5 + }, + { + "type": "bool", + "name": "clearcoat_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 3 + }, + { + "type": "float", + "name": "clearcoat", + "setter": "set_clearcoat", + "getter": "get_clearcoat", + "index": -1 + }, + { + "type": "float", + "name": "clearcoat_roughness", + "setter": "set_clearcoat_roughness", + "getter": "get_clearcoat_roughness", + "index": -1 + }, + { + "type": "Texture2D", + "name": "clearcoat_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 6 + }, + { + "type": "bool", + "name": "anisotropy_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 4 + }, + { + "type": "float", + "name": "anisotropy", + "setter": "set_anisotropy", + "getter": "get_anisotropy", + "index": -1 + }, + { + "type": "Texture2D", + "name": "anisotropy_flowmap", + "setter": "set_texture", + "getter": "get_texture", + "index": 7 + }, + { + "type": "bool", + "name": "ao_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 5 + }, + { + "type": "float", + "name": "ao_light_affect", + "setter": "set_ao_light_affect", + "getter": "get_ao_light_affect", + "index": -1 + }, + { + "type": "Texture2D", + "name": "ao_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 8 + }, + { + "type": "bool", + "name": "ao_on_uv2", + "setter": "set_flag", + "getter": "get_flag", + "index": 10 + }, + { + "type": "int", + "name": "ao_texture_channel", + "setter": "set_ao_texture_channel", + "getter": "get_ao_texture_channel", + "index": -1 + }, + { + "type": "bool", + "name": "heightmap_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 6 + }, + { + "type": "float", + "name": "heightmap_scale", + "setter": "set_heightmap_scale", + "getter": "get_heightmap_scale", + "index": -1 + }, + { + "type": "bool", + "name": "heightmap_deep_parallax", + "setter": "set_heightmap_deep_parallax", + "getter": "is_heightmap_deep_parallax_enabled", + "index": -1 + }, + { + "type": "int", + "name": "heightmap_min_layers", + "setter": "set_heightmap_deep_parallax_min_layers", + "getter": "get_heightmap_deep_parallax_min_layers", + "index": -1 + }, + { + "type": "int", + "name": "heightmap_max_layers", + "setter": "set_heightmap_deep_parallax_max_layers", + "getter": "get_heightmap_deep_parallax_max_layers", + "index": -1 + }, + { + "type": "bool", + "name": "heightmap_flip_tangent", + "setter": "set_heightmap_deep_parallax_flip_tangent", + "getter": "get_heightmap_deep_parallax_flip_tangent", + "index": -1 + }, + { + "type": "bool", + "name": "heightmap_flip_binormal", + "setter": "set_heightmap_deep_parallax_flip_binormal", + "getter": "get_heightmap_deep_parallax_flip_binormal", + "index": -1 + }, + { + "type": "Texture2D", + "name": "heightmap_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 9 + }, + { + "type": "bool", + "name": "heightmap_flip_texture", + "setter": "set_flag", + "getter": "get_flag", + "index": 17 + }, + { + "type": "bool", + "name": "subsurf_scatter_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 7 + }, + { + "type": "float", + "name": "subsurf_scatter_strength", + "setter": "set_subsurface_scattering_strength", + "getter": "get_subsurface_scattering_strength", + "index": -1 + }, + { + "type": "bool", + "name": "subsurf_scatter_skin_mode", + "setter": "set_flag", + "getter": "get_flag", + "index": 18 + }, + { + "type": "Texture2D", + "name": "subsurf_scatter_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 10 + }, + { + "type": "bool", + "name": "subsurf_scatter_transmittance_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 8 + }, + { + "type": "Color", + "name": "subsurf_scatter_transmittance_color", + "setter": "set_transmittance_color", + "getter": "get_transmittance_color", + "index": -1 + }, + { + "type": "Texture2D", + "name": "subsurf_scatter_transmittance_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 11 + }, + { + "type": "float", + "name": "subsurf_scatter_transmittance_depth", + "setter": "set_transmittance_depth", + "getter": "get_transmittance_depth", + "index": -1 + }, + { + "type": "float", + "name": "subsurf_scatter_transmittance_boost", + "setter": "set_transmittance_boost", + "getter": "get_transmittance_boost", + "index": -1 + }, + { + "type": "bool", + "name": "backlight_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 9 + }, + { + "type": "Color", + "name": "backlight", + "setter": "set_backlight", + "getter": "get_backlight", + "index": -1 + }, + { + "type": "Texture2D", + "name": "backlight_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 12 + }, + { + "type": "bool", + "name": "refraction_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 10 + }, + { + "type": "float", + "name": "refraction_scale", + "setter": "set_refraction", + "getter": "get_refraction", + "index": -1 + }, + { + "type": "Texture2D", + "name": "refraction_texture", + "setter": "set_texture", + "getter": "get_texture", + "index": 13 + }, + { + "type": "int", + "name": "refraction_texture_channel", + "setter": "set_refraction_texture_channel", + "getter": "get_refraction_texture_channel", + "index": -1 + }, + { + "type": "bool", + "name": "detail_enabled", + "setter": "set_feature", + "getter": "get_feature", + "index": 11 + }, + { + "type": "Texture2D", + "name": "detail_mask", + "setter": "set_texture", + "getter": "get_texture", + "index": 14 + }, + { + "type": "int", + "name": "detail_blend_mode", + "setter": "set_detail_blend_mode", + "getter": "get_detail_blend_mode", + "index": -1 + }, + { + "type": "int", + "name": "detail_uv_layer", + "setter": "set_detail_uv", + "getter": "get_detail_uv", + "index": -1 + }, + { + "type": "Texture2D", + "name": "detail_albedo", + "setter": "set_texture", + "getter": "get_texture", + "index": 15 + }, + { + "type": "Texture2D", + "name": "detail_normal", + "setter": "set_texture", + "getter": "get_texture", + "index": 16 + }, + { + "type": "Vector3", + "name": "uv1_scale", + "setter": "set_uv1_scale", + "getter": "get_uv1_scale", + "index": -1 + }, + { + "type": "Vector3", + "name": "uv1_offset", + "setter": "set_uv1_offset", + "getter": "get_uv1_offset", + "index": -1 + }, + { + "type": "bool", + "name": "uv1_triplanar", + "setter": "set_flag", + "getter": "get_flag", + "index": 6 + }, + { + "type": "float", + "name": "uv1_triplanar_sharpness", + "setter": "set_uv1_triplanar_blend_sharpness", + "getter": "get_uv1_triplanar_blend_sharpness", + "index": -1 + }, + { + "type": "bool", + "name": "uv1_world_triplanar", + "setter": "set_flag", + "getter": "get_flag", + "index": 8 + }, + { + "type": "Vector3", + "name": "uv2_scale", + "setter": "set_uv2_scale", + "getter": "get_uv2_scale", + "index": -1 + }, + { + "type": "Vector3", + "name": "uv2_offset", + "setter": "set_uv2_offset", + "getter": "get_uv2_offset", + "index": -1 + }, + { + "type": "bool", + "name": "uv2_triplanar", + "setter": "set_flag", + "getter": "get_flag", + "index": 7 + }, + { + "type": "float", + "name": "uv2_triplanar_sharpness", + "setter": "set_uv2_triplanar_blend_sharpness", + "getter": "get_uv2_triplanar_blend_sharpness", + "index": -1 + }, + { + "type": "bool", + "name": "uv2_world_triplanar", + "setter": "set_flag", + "getter": "get_flag", + "index": 9 + }, + { + "type": "int", + "name": "texture_filter", + "setter": "set_texture_filter", + "getter": "get_texture_filter", + "index": -1 + }, + { + "type": "bool", + "name": "texture_repeat", + "setter": "set_flag", + "getter": "get_flag", + "index": 16 + }, + { + "type": "bool", + "name": "disable_receive_shadows", + "setter": "set_flag", + "getter": "get_flag", + "index": 13 + }, + { + "type": "bool", + "name": "shadow_to_opacity", + "setter": "set_flag", + "getter": "get_flag", + "index": 15 + }, + { + "type": "int", + "name": "billboard_mode", + "setter": "set_billboard_mode", + "getter": "get_billboard_mode", + "index": -1 + }, + { + "type": "bool", + "name": "billboard_keep_scale", + "setter": "set_flag", + "getter": "get_flag", + "index": 5 + }, + { + "type": "int", + "name": "particles_anim_h_frames", + "setter": "set_particles_anim_h_frames", + "getter": "get_particles_anim_h_frames", + "index": -1 + }, + { + "type": "int", + "name": "particles_anim_v_frames", + "setter": "set_particles_anim_v_frames", + "getter": "get_particles_anim_v_frames", + "index": -1 + }, + { + "type": "bool", + "name": "particles_anim_loop", + "setter": "set_particles_anim_loop", + "getter": "get_particles_anim_loop", + "index": -1 + }, + { + "type": "bool", + "name": "grow", + "setter": "set_grow_enabled", + "getter": "is_grow_enabled", + "index": -1 + }, + { + "type": "float", + "name": "grow_amount", + "setter": "set_grow", + "getter": "get_grow", + "index": -1 + }, + { + "type": "bool", + "name": "fixed_size", + "setter": "set_flag", + "getter": "get_flag", + "index": 4 + }, + { + "type": "bool", + "name": "use_point_size", + "setter": "set_flag", + "getter": "get_flag", + "index": 3 + }, + { + "type": "float", + "name": "point_size", + "setter": "set_point_size", + "getter": "get_point_size", + "index": -1 + }, + { + "type": "bool", + "name": "use_particle_trails", + "setter": "set_flag", + "getter": "get_flag", + "index": 19 + }, + { + "type": "bool", + "name": "proximity_fade_enable", + "setter": "set_proximity_fade", + "getter": "is_proximity_fade_enabled", + "index": -1 + }, + { + "type": "float", + "name": "proximity_fade_distance", + "setter": "set_proximity_fade_distance", + "getter": "get_proximity_fade_distance", + "index": -1 + }, + { + "type": "float", + "name": "msdf_pixel_range", + "setter": "set_msdf_pixel_range", + "getter": "get_msdf_pixel_range", + "index": -1 + }, + { + "type": "float", + "name": "msdf_outline_size", + "setter": "set_msdf_outline_size", + "getter": "get_msdf_outline_size", + "index": -1 + }, + { + "type": "int", + "name": "distance_fade_mode", + "setter": "set_distance_fade", + "getter": "get_distance_fade", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_min_distance", + "setter": "set_distance_fade_min_distance", + "getter": "get_distance_fade_min_distance", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_max_distance", + "setter": "set_distance_fade_max_distance", + "getter": "get_distance_fade_max_distance", + "index": -1 + } + ] + }, + { + "name": "BitMap", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "create_from_image_alpha", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "image", + "type": "Image" + }, + { + "name": "threshold", + "type": "float", + "meta": "float", + "default_value": "0.1" + } + ] + }, + { + "name": "set_bit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "bit", + "type": "bool" + } + ] + }, + { + "name": "get_bit", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "set_bit_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "bit", + "type": "bool" + } + ] + }, + { + "name": "get_true_bit_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "resize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "new_size", + "type": "Vector2" + } + ] + }, + { + "name": "grow_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "pixels", + "type": "int", + "meta": "int32" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "convert_to_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Image" + } + }, + { + "name": "opaque_to_polygons", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "epsilon", + "type": "float", + "meta": "float", + "default_value": "2.0" + } + ] + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "data", + "setter": "_set_data", + "getter": "_get_data", + "index": -1 + } + ] + }, + { + "name": "Bone2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_rest", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rest", + "type": "Transform2D" + } + ] + }, + { + "name": "get_rest", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "apply_rest", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_skeleton_rest", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_index_in_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_default_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "default_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_default_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_autocalculate_length_and_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "auto_calculate", + "type": "bool" + } + ] + }, + { + "name": "get_autocalculate_length_and_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bone_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bone_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Transform2D", + "name": "rest", + "setter": "set_rest", + "getter": "get_rest", + "index": -1 + } + ] + }, + { + "name": "BoneAttachment3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_name", + "type": "String" + } + ] + }, + { + "name": "get_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_bone_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "on_bone_pose_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_override_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override_pose", + "type": "bool" + } + ] + }, + { + "name": "get_override_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_override_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override_mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_override_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_external_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_external_skeleton", + "type": "bool" + } + ] + }, + { + "name": "get_use_external_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_external_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "external_skeleton", + "type": "NodePath" + } + ] + }, + { + "name": "get_external_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "bone_name", + "setter": "set_bone_name", + "getter": "get_bone_name", + "index": -1 + }, + { + "type": "int", + "name": "bone_idx", + "setter": "set_bone_idx", + "getter": "get_bone_idx", + "index": -1 + } + ] + }, + { + "name": "BoxContainer", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Container", + "api_type": "core", + "enums": [ + { + "name": "AlignmentMode", + "values": [ + { + "name": "ALIGNMENT_BEGIN", + "value": 0 + }, + { + "name": "ALIGNMENT_CENTER", + "value": 1 + }, + { + "name": "ALIGNMENT_END", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "add_spacer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Control" + }, + "arguments": [ + { + "name": "begin", + "type": "bool" + } + ] + }, + { + "name": "get_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BoxContainer.AlignmentMode" + } + }, + { + "name": "set_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::BoxContainer.AlignmentMode" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "alignment", + "setter": "set_alignment", + "getter": "get_alignment", + "index": -1 + } + ] + }, + { + "name": "BoxMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_subdivide_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subdivide", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_subdivide_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "divisions", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_subdivide_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "divisions", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_width", + "setter": "set_subdivide_width", + "getter": "get_subdivide_width", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_height", + "setter": "set_subdivide_height", + "getter": "get_subdivide_height", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_depth", + "setter": "set_subdivide_depth", + "getter": "get_subdivide_depth", + "index": -1 + } + ] + }, + { + "name": "BoxOccluder3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Occluder3D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "BoxShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "Button", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "BaseButton", + "api_type": "core", + "methods": [ + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_button_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_button_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_flat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_flat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_clip_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_clip_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_text_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_text_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "set_icon_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "icon_alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_icon_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "set_expand_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_expand_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "Texture2D", + "name": "icon", + "setter": "set_button_icon", + "getter": "get_button_icon", + "index": -1 + }, + { + "type": "bool", + "name": "flat", + "setter": "set_flat", + "getter": "is_flat", + "index": -1 + }, + { + "type": "bool", + "name": "clip_text", + "setter": "set_clip_text", + "getter": "get_clip_text", + "index": -1 + }, + { + "type": "int", + "name": "alignment", + "setter": "set_text_alignment", + "getter": "get_text_alignment", + "index": -1 + }, + { + "type": "int", + "name": "icon_alignment", + "setter": "set_icon_alignment", + "getter": "get_icon_alignment", + "index": -1 + }, + { + "type": "bool", + "name": "expand_icon", + "setter": "set_expand_icon", + "getter": "is_expand_icon", + "index": -1 + } + ] + }, + { + "name": "ButtonGroup", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_pressed_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "BaseButton" + } + }, + { + "name": "get_buttons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + } + ], + "signals": [ + { + "name": "pressed", + "arguments": [ + { + "name": "button", + "type": "BaseButton" + } + ] + } + ] + }, + { + "name": "CPUParticles2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "DrawOrder", + "values": [ + { + "name": "DRAW_ORDER_INDEX", + "value": 0 + }, + { + "name": "DRAW_ORDER_LIFETIME", + "value": 1 + } + ] + }, + { + "name": "Parameter", + "values": [ + { + "name": "PARAM_INITIAL_LINEAR_VELOCITY", + "value": 0 + }, + { + "name": "PARAM_ANGULAR_VELOCITY", + "value": 1 + }, + { + "name": "PARAM_ORBIT_VELOCITY", + "value": 2 + }, + { + "name": "PARAM_LINEAR_ACCEL", + "value": 3 + }, + { + "name": "PARAM_RADIAL_ACCEL", + "value": 4 + }, + { + "name": "PARAM_TANGENTIAL_ACCEL", + "value": 5 + }, + { + "name": "PARAM_DAMPING", + "value": 6 + }, + { + "name": "PARAM_ANGLE", + "value": 7 + }, + { + "name": "PARAM_SCALE", + "value": 8 + }, + { + "name": "PARAM_HUE_VARIATION", + "value": 9 + }, + { + "name": "PARAM_ANIM_SPEED", + "value": 10 + }, + { + "name": "PARAM_ANIM_OFFSET", + "value": 11 + }, + { + "name": "PARAM_MAX", + "value": 12 + } + ] + }, + { + "name": "ParticleFlags", + "values": [ + { + "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", + "value": 0 + }, + { + "name": "PARTICLE_FLAG_ROTATE_Y", + "value": 1 + }, + { + "name": "PARTICLE_FLAG_DISABLE_Z", + "value": 2 + }, + { + "name": "PARTICLE_FLAG_MAX", + "value": 3 + } + ] + }, + { + "name": "EmissionShape", + "values": [ + { + "name": "EMISSION_SHAPE_POINT", + "value": 0 + }, + { + "name": "EMISSION_SHAPE_SPHERE", + "value": 1 + }, + { + "name": "EMISSION_SHAPE_SPHERE_SURFACE", + "value": 2 + }, + { + "name": "EMISSION_SHAPE_RECTANGLE", + "value": 3 + }, + { + "name": "EMISSION_SHAPE_POINTS", + "value": 4 + }, + { + "name": "EMISSION_SHAPE_DIRECTED_POINTS", + "value": 5 + }, + { + "name": "EMISSION_SHAPE_MAX", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_emitting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emitting", + "type": "bool" + } + ] + }, + { + "name": "set_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_lifetime", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_one_shot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_pre_process_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_explosiveness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_randomness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_lifetime_randomness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "random", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_use_local_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_fixed_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fractional_delta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "is_emitting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_lifetime", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_one_shot", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_pre_process_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_explosiveness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_randomness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_lifetime_randomness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_use_local_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_fixed_fps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_fractional_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_draw_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "order", + "type": "enum::CPUParticles2D.DrawOrder" + } + ] + }, + { + "name": "get_draw_order", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CPUParticles2D.DrawOrder" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "restart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "Vector2" + } + ] + }, + { + "name": "get_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_spread", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "spread", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_spread", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_param_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles2D.Parameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles2D.Parameter" + } + ] + }, + { + "name": "set_param_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles2D.Parameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles2D.Parameter" + } + ] + }, + { + "name": "set_param_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles2D.Parameter" + }, + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_param_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Curve" + }, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles2D.Parameter" + } + ] + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_color_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ramp", + "type": "Gradient" + } + ] + }, + { + "name": "get_color_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_color_initial_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ramp", + "type": "Gradient" + } + ] + }, + { + "name": "get_color_initial_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_particle_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particle_flag", + "type": "enum::CPUParticles2D.ParticleFlags" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_particle_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "particle_flag", + "type": "enum::CPUParticles2D.ParticleFlags" + } + ] + }, + { + "name": "set_emission_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::CPUParticles2D.EmissionShape" + } + ] + }, + { + "name": "get_emission_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CPUParticles2D.EmissionShape" + } + }, + { + "name": "set_emission_sphere_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_sphere_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_rect_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector2" + } + ] + }, + { + "name": "get_emission_rect_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_emission_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "array", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_emission_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_emission_normals", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "array", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_emission_normals", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_emission_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "array", + "type": "PackedColorArray" + } + ] + }, + { + "name": "get_emission_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedColorArray" + } + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "accel_vec", + "type": "Vector2" + } + ] + }, + { + "name": "get_split_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_split_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "split_scale", + "type": "bool" + } + ] + }, + { + "name": "get_scale_curve_x", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_scale_curve_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale_curve", + "type": "Curve" + } + ] + }, + { + "name": "get_scale_curve_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_scale_curve_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale_curve", + "type": "Curve" + } + ] + }, + { + "name": "convert_from_particles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "particles", + "type": "Node" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "emitting", + "setter": "set_emitting", + "getter": "is_emitting", + "index": -1 + }, + { + "type": "int", + "name": "amount", + "setter": "set_amount", + "getter": "get_amount", + "index": -1 + }, + { + "type": "float", + "name": "lifetime", + "setter": "set_lifetime", + "getter": "get_lifetime", + "index": -1 + }, + { + "type": "bool", + "name": "one_shot", + "setter": "set_one_shot", + "getter": "get_one_shot", + "index": -1 + }, + { + "type": "float", + "name": "preprocess", + "setter": "set_pre_process_time", + "getter": "get_pre_process_time", + "index": -1 + }, + { + "type": "float", + "name": "speed_scale", + "setter": "set_speed_scale", + "getter": "get_speed_scale", + "index": -1 + }, + { + "type": "float", + "name": "explosiveness", + "setter": "set_explosiveness_ratio", + "getter": "get_explosiveness_ratio", + "index": -1 + }, + { + "type": "float", + "name": "randomness", + "setter": "set_randomness_ratio", + "getter": "get_randomness_ratio", + "index": -1 + }, + { + "type": "float", + "name": "lifetime_randomness", + "setter": "set_lifetime_randomness", + "getter": "get_lifetime_randomness", + "index": -1 + }, + { + "type": "int", + "name": "fixed_fps", + "setter": "set_fixed_fps", + "getter": "get_fixed_fps", + "index": -1 + }, + { + "type": "bool", + "name": "fract_delta", + "setter": "set_fractional_delta", + "getter": "get_fractional_delta", + "index": -1 + }, + { + "type": "bool", + "name": "local_coords", + "setter": "set_use_local_coordinates", + "getter": "get_use_local_coordinates", + "index": -1 + }, + { + "type": "int", + "name": "draw_order", + "setter": "set_draw_order", + "getter": "get_draw_order", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "int", + "name": "emission_shape", + "setter": "set_emission_shape", + "getter": "get_emission_shape", + "index": -1 + }, + { + "type": "float", + "name": "emission_sphere_radius", + "setter": "set_emission_sphere_radius", + "getter": "get_emission_sphere_radius", + "index": -1 + }, + { + "type": "Vector2", + "name": "emission_rect_extents", + "setter": "set_emission_rect_extents", + "getter": "get_emission_rect_extents", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "emission_points", + "setter": "set_emission_points", + "getter": "get_emission_points", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "emission_normals", + "setter": "set_emission_normals", + "getter": "get_emission_normals", + "index": -1 + }, + { + "type": "PackedColorArray", + "name": "emission_colors", + "setter": "set_emission_colors", + "getter": "get_emission_colors", + "index": -1 + }, + { + "type": "bool", + "name": "particle_flag_align_y", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 0 + }, + { + "type": "Vector2", + "name": "direction", + "setter": "set_direction", + "getter": "get_direction", + "index": -1 + }, + { + "type": "float", + "name": "spread", + "setter": "set_spread", + "getter": "get_spread", + "index": -1 + }, + { + "type": "Vector2", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + }, + { + "type": "float", + "name": "initial_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 0 + }, + { + "type": "float", + "name": "initial_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 0 + }, + { + "type": "float", + "name": "angular_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 1 + }, + { + "type": "float", + "name": "angular_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 1 + }, + { + "type": "Curve", + "name": "angular_velocity_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 1 + }, + { + "type": "float", + "name": "orbit_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 2 + }, + { + "type": "float", + "name": "orbit_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 2 + }, + { + "type": "Curve", + "name": "orbit_velocity_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 2 + }, + { + "type": "float", + "name": "linear_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 3 + }, + { + "type": "float", + "name": "linear_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 3 + }, + { + "type": "Curve", + "name": "linear_accel_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 3 + }, + { + "type": "float", + "name": "radial_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 4 + }, + { + "type": "float", + "name": "radial_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 4 + }, + { + "type": "Curve", + "name": "radial_accel_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 4 + }, + { + "type": "float", + "name": "tangential_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 5 + }, + { + "type": "float", + "name": "tangential_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 5 + }, + { + "type": "Curve", + "name": "tangential_accel_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 5 + }, + { + "type": "float", + "name": "damping_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 6 + }, + { + "type": "float", + "name": "damping_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 6 + }, + { + "type": "Curve", + "name": "damping_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 6 + }, + { + "type": "float", + "name": "angle_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 7 + }, + { + "type": "float", + "name": "angle_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 7 + }, + { + "type": "Curve", + "name": "angle_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 7 + }, + { + "type": "float", + "name": "scale_amount_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 8 + }, + { + "type": "float", + "name": "scale_amount_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 8 + }, + { + "type": "Curve", + "name": "scale_amount_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 8 + }, + { + "type": "bool", + "name": "split_scale", + "setter": "set_split_scale", + "getter": "get_split_scale", + "index": -1 + }, + { + "type": "Curve", + "name": "scale_curve_x", + "setter": "set_scale_curve_x", + "getter": "get_scale_curve_x", + "index": -1 + }, + { + "type": "Curve", + "name": "scale_curve_y", + "setter": "set_scale_curve_y", + "getter": "get_scale_curve_y", + "index": -1 + }, + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "Gradient", + "name": "color_ramp", + "setter": "set_color_ramp", + "getter": "get_color_ramp", + "index": -1 + }, + { + "type": "Gradient", + "name": "color_initial_ramp", + "setter": "set_color_initial_ramp", + "getter": "get_color_initial_ramp", + "index": -1 + }, + { + "type": "float", + "name": "hue_variation_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 9 + }, + { + "type": "float", + "name": "hue_variation_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 9 + }, + { + "type": "Curve", + "name": "hue_variation_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 9 + }, + { + "type": "float", + "name": "anim_speed_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 10 + }, + { + "type": "float", + "name": "anim_speed_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 10 + }, + { + "type": "Curve", + "name": "anim_speed_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 10 + }, + { + "type": "float", + "name": "anim_offset_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 11 + }, + { + "type": "float", + "name": "anim_offset_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 11 + }, + { + "type": "Curve", + "name": "anim_offset_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 11 + } + ] + }, + { + "name": "CPUParticles3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GeometryInstance3D", + "api_type": "core", + "enums": [ + { + "name": "DrawOrder", + "values": [ + { + "name": "DRAW_ORDER_INDEX", + "value": 0 + }, + { + "name": "DRAW_ORDER_LIFETIME", + "value": 1 + }, + { + "name": "DRAW_ORDER_VIEW_DEPTH", + "value": 2 + } + ] + }, + { + "name": "Parameter", + "values": [ + { + "name": "PARAM_INITIAL_LINEAR_VELOCITY", + "value": 0 + }, + { + "name": "PARAM_ANGULAR_VELOCITY", + "value": 1 + }, + { + "name": "PARAM_ORBIT_VELOCITY", + "value": 2 + }, + { + "name": "PARAM_LINEAR_ACCEL", + "value": 3 + }, + { + "name": "PARAM_RADIAL_ACCEL", + "value": 4 + }, + { + "name": "PARAM_TANGENTIAL_ACCEL", + "value": 5 + }, + { + "name": "PARAM_DAMPING", + "value": 6 + }, + { + "name": "PARAM_ANGLE", + "value": 7 + }, + { + "name": "PARAM_SCALE", + "value": 8 + }, + { + "name": "PARAM_HUE_VARIATION", + "value": 9 + }, + { + "name": "PARAM_ANIM_SPEED", + "value": 10 + }, + { + "name": "PARAM_ANIM_OFFSET", + "value": 11 + }, + { + "name": "PARAM_MAX", + "value": 12 + } + ] + }, + { + "name": "ParticleFlags", + "values": [ + { + "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", + "value": 0 + }, + { + "name": "PARTICLE_FLAG_ROTATE_Y", + "value": 1 + }, + { + "name": "PARTICLE_FLAG_DISABLE_Z", + "value": 2 + }, + { + "name": "PARTICLE_FLAG_MAX", + "value": 3 + } + ] + }, + { + "name": "EmissionShape", + "values": [ + { + "name": "EMISSION_SHAPE_POINT", + "value": 0 + }, + { + "name": "EMISSION_SHAPE_SPHERE", + "value": 1 + }, + { + "name": "EMISSION_SHAPE_SPHERE_SURFACE", + "value": 2 + }, + { + "name": "EMISSION_SHAPE_BOX", + "value": 3 + }, + { + "name": "EMISSION_SHAPE_POINTS", + "value": 4 + }, + { + "name": "EMISSION_SHAPE_DIRECTED_POINTS", + "value": 5 + }, + { + "name": "EMISSION_SHAPE_RING", + "value": 6 + }, + { + "name": "EMISSION_SHAPE_MAX", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "set_emitting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emitting", + "type": "bool" + } + ] + }, + { + "name": "set_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_lifetime", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_one_shot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_pre_process_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_explosiveness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_randomness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_lifetime_randomness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "random", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_use_local_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_fixed_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fractional_delta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "is_emitting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_lifetime", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_one_shot", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_pre_process_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_explosiveness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_randomness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_lifetime_randomness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_use_local_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_fixed_fps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_fractional_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_draw_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "order", + "type": "enum::CPUParticles3D.DrawOrder" + } + ] + }, + { + "name": "get_draw_order", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CPUParticles3D.DrawOrder" + } + }, + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "restart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "Vector3" + } + ] + }, + { + "name": "get_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_spread", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_spread", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_flatness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_flatness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_param_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles3D.Parameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles3D.Parameter" + } + ] + }, + { + "name": "set_param_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles3D.Parameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles3D.Parameter" + } + ] + }, + { + "name": "set_param_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles3D.Parameter" + }, + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_param_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Curve" + }, + "arguments": [ + { + "name": "param", + "type": "enum::CPUParticles3D.Parameter" + } + ] + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_color_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ramp", + "type": "Gradient" + } + ] + }, + { + "name": "get_color_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_color_initial_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ramp", + "type": "Gradient" + } + ] + }, + { + "name": "get_color_initial_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_particle_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particle_flag", + "type": "enum::CPUParticles3D.ParticleFlags" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_particle_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "particle_flag", + "type": "enum::CPUParticles3D.ParticleFlags" + } + ] + }, + { + "name": "set_emission_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::CPUParticles3D.EmissionShape" + } + ] + }, + { + "name": "get_emission_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CPUParticles3D.EmissionShape" + } + }, + { + "name": "set_emission_sphere_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_sphere_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_box_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_emission_box_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_emission_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "array", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "get_emission_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "set_emission_normals", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "array", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "get_emission_normals", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "set_emission_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "array", + "type": "PackedColorArray" + } + ] + }, + { + "name": "get_emission_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedColorArray" + } + }, + { + "name": "set_emission_ring_axis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + } + ] + }, + { + "name": "get_emission_ring_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_emission_ring_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_ring_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_ring_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_ring_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_ring_inner_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inner_radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_ring_inner_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "accel_vec", + "type": "Vector3" + } + ] + }, + { + "name": "get_split_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_split_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "split_scale", + "type": "bool" + } + ] + }, + { + "name": "get_scale_curve_x", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_scale_curve_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale_curve", + "type": "Curve" + } + ] + }, + { + "name": "get_scale_curve_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_scale_curve_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale_curve", + "type": "Curve" + } + ] + }, + { + "name": "get_scale_curve_z", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_scale_curve_z", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale_curve", + "type": "Curve" + } + ] + }, + { + "name": "convert_from_particles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "particles", + "type": "Node" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "emitting", + "setter": "set_emitting", + "getter": "is_emitting", + "index": -1 + }, + { + "type": "int", + "name": "amount", + "setter": "set_amount", + "getter": "get_amount", + "index": -1 + }, + { + "type": "float", + "name": "lifetime", + "setter": "set_lifetime", + "getter": "get_lifetime", + "index": -1 + }, + { + "type": "bool", + "name": "one_shot", + "setter": "set_one_shot", + "getter": "get_one_shot", + "index": -1 + }, + { + "type": "float", + "name": "preprocess", + "setter": "set_pre_process_time", + "getter": "get_pre_process_time", + "index": -1 + }, + { + "type": "float", + "name": "speed_scale", + "setter": "set_speed_scale", + "getter": "get_speed_scale", + "index": -1 + }, + { + "type": "float", + "name": "explosiveness", + "setter": "set_explosiveness_ratio", + "getter": "get_explosiveness_ratio", + "index": -1 + }, + { + "type": "float", + "name": "randomness", + "setter": "set_randomness_ratio", + "getter": "get_randomness_ratio", + "index": -1 + }, + { + "type": "float", + "name": "lifetime_randomness", + "setter": "set_lifetime_randomness", + "getter": "get_lifetime_randomness", + "index": -1 + }, + { + "type": "int", + "name": "fixed_fps", + "setter": "set_fixed_fps", + "getter": "get_fixed_fps", + "index": -1 + }, + { + "type": "bool", + "name": "fract_delta", + "setter": "set_fractional_delta", + "getter": "get_fractional_delta", + "index": -1 + }, + { + "type": "bool", + "name": "local_coords", + "setter": "set_use_local_coordinates", + "getter": "get_use_local_coordinates", + "index": -1 + }, + { + "type": "int", + "name": "draw_order", + "setter": "set_draw_order", + "getter": "get_draw_order", + "index": -1 + }, + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "int", + "name": "emission_shape", + "setter": "set_emission_shape", + "getter": "get_emission_shape", + "index": -1 + }, + { + "type": "float", + "name": "emission_sphere_radius", + "setter": "set_emission_sphere_radius", + "getter": "get_emission_sphere_radius", + "index": -1 + }, + { + "type": "Vector3", + "name": "emission_box_extents", + "setter": "set_emission_box_extents", + "getter": "get_emission_box_extents", + "index": -1 + }, + { + "type": "PackedVector3Array", + "name": "emission_points", + "setter": "set_emission_points", + "getter": "get_emission_points", + "index": -1 + }, + { + "type": "PackedVector3Array", + "name": "emission_normals", + "setter": "set_emission_normals", + "getter": "get_emission_normals", + "index": -1 + }, + { + "type": "PackedColorArray", + "name": "emission_colors", + "setter": "set_emission_colors", + "getter": "get_emission_colors", + "index": -1 + }, + { + "type": "Vector3", + "name": "emission_ring_axis", + "setter": "set_emission_ring_axis", + "getter": "get_emission_ring_axis", + "index": -1 + }, + { + "type": "float", + "name": "emission_ring_height", + "setter": "set_emission_ring_height", + "getter": "get_emission_ring_height", + "index": -1 + }, + { + "type": "float", + "name": "emission_ring_radius", + "setter": "set_emission_ring_radius", + "getter": "get_emission_ring_radius", + "index": -1 + }, + { + "type": "float", + "name": "emission_ring_inner_radius", + "setter": "set_emission_ring_inner_radius", + "getter": "get_emission_ring_inner_radius", + "index": -1 + }, + { + "type": "bool", + "name": "particle_flag_align_y", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 0 + }, + { + "type": "bool", + "name": "particle_flag_rotate_y", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 1 + }, + { + "type": "bool", + "name": "particle_flag_disable_z", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 2 + }, + { + "type": "Vector3", + "name": "direction", + "setter": "set_direction", + "getter": "get_direction", + "index": -1 + }, + { + "type": "float", + "name": "spread", + "setter": "set_spread", + "getter": "get_spread", + "index": -1 + }, + { + "type": "float", + "name": "flatness", + "setter": "set_flatness", + "getter": "get_flatness", + "index": -1 + }, + { + "type": "Vector3", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + }, + { + "type": "float", + "name": "initial_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 0 + }, + { + "type": "float", + "name": "initial_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 0 + }, + { + "type": "float", + "name": "angular_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 1 + }, + { + "type": "float", + "name": "angular_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 1 + }, + { + "type": "Curve", + "name": "angular_velocity_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 1 + }, + { + "type": "float", + "name": "orbit_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 2 + }, + { + "type": "float", + "name": "orbit_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 2 + }, + { + "type": "Curve", + "name": "orbit_velocity_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 2 + }, + { + "type": "float", + "name": "linear_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 3 + }, + { + "type": "float", + "name": "linear_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 3 + }, + { + "type": "Curve", + "name": "linear_accel_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 3 + }, + { + "type": "float", + "name": "radial_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 4 + }, + { + "type": "float", + "name": "radial_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 4 + }, + { + "type": "Curve", + "name": "radial_accel_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 4 + }, + { + "type": "float", + "name": "tangential_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 5 + }, + { + "type": "float", + "name": "tangential_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 5 + }, + { + "type": "Curve", + "name": "tangential_accel_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 5 + }, + { + "type": "float", + "name": "damping_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 6 + }, + { + "type": "float", + "name": "damping_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 6 + }, + { + "type": "Curve", + "name": "damping_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 6 + }, + { + "type": "float", + "name": "angle_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 7 + }, + { + "type": "float", + "name": "angle_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 7 + }, + { + "type": "Curve", + "name": "angle_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 7 + }, + { + "type": "float", + "name": "scale_amount_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 8 + }, + { + "type": "float", + "name": "scale_amount_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 8 + }, + { + "type": "Curve", + "name": "scale_amount_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 8 + }, + { + "type": "bool", + "name": "split_scale", + "setter": "set_split_scale", + "getter": "get_split_scale", + "index": -1 + }, + { + "type": "Curve", + "name": "scale_curve_x", + "setter": "set_scale_curve_x", + "getter": "get_scale_curve_x", + "index": -1 + }, + { + "type": "Curve", + "name": "scale_curve_y", + "setter": "set_scale_curve_y", + "getter": "get_scale_curve_y", + "index": -1 + }, + { + "type": "Curve", + "name": "scale_curve_z", + "setter": "set_scale_curve_z", + "getter": "get_scale_curve_z", + "index": -1 + }, + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "Gradient", + "name": "color_ramp", + "setter": "set_color_ramp", + "getter": "get_color_ramp", + "index": -1 + }, + { + "type": "Gradient", + "name": "color_initial_ramp", + "setter": "set_color_initial_ramp", + "getter": "get_color_initial_ramp", + "index": -1 + }, + { + "type": "float", + "name": "hue_variation_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 9 + }, + { + "type": "float", + "name": "hue_variation_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 9 + }, + { + "type": "Curve", + "name": "hue_variation_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 9 + }, + { + "type": "float", + "name": "anim_speed_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 10 + }, + { + "type": "float", + "name": "anim_speed_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 10 + }, + { + "type": "Curve", + "name": "anim_speed_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 10 + }, + { + "type": "float", + "name": "anim_offset_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 11 + }, + { + "type": "float", + "name": "anim_offset_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 11 + }, + { + "type": "Curve", + "name": "anim_offset_curve", + "setter": "set_param_curve", + "getter": "get_param_curve", + "index": 11 + } + ] + }, + { + "name": "CSGBox3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGPrimitive3D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "CSGCombiner3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGShape3D", + "api_type": "core" + }, + { + "name": "CSGCylinder3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGPrimitive3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sides", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_cone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cone", + "type": "bool" + } + ] + }, + { + "name": "is_cone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_smooth_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "smooth_faces", + "type": "bool" + } + ] + }, + { + "name": "get_smooth_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "int", + "name": "sides", + "setter": "set_sides", + "getter": "get_sides", + "index": -1 + }, + { + "type": "bool", + "name": "cone", + "setter": "set_cone", + "getter": "is_cone", + "index": -1 + }, + { + "type": "bool", + "name": "smooth_faces", + "setter": "set_smooth_faces", + "getter": "get_smooth_faces", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "CSGMesh3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGPrimitive3D", + "api_type": "core", + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + } + ], + "properties": [ + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "CSGPolygon3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGPrimitive3D", + "api_type": "core", + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_DEPTH", + "value": 0 + }, + { + "name": "MODE_SPIN", + "value": 1 + }, + { + "name": "MODE_PATH", + "value": 2 + } + ] + }, + { + "name": "PathRotation", + "values": [ + { + "name": "PATH_ROTATION_POLYGON", + "value": 0 + }, + { + "name": "PATH_ROTATION_PATH", + "value": 1 + }, + { + "name": "PATH_ROTATION_PATH_FOLLOW", + "value": 2 + } + ] + }, + { + "name": "PathIntervalType", + "values": [ + { + "name": "PATH_INTERVAL_DISTANCE", + "value": 0 + }, + { + "name": "PATH_INTERVAL_SUBDIVIDE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CSGPolygon3D.Mode" + } + ] + }, + { + "name": "get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CSGPolygon3D.Mode" + } + }, + { + "name": "set_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_spin_degrees", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_spin_degrees", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_spin_sides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "spin_sides", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_spin_sides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_path_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_path_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_path_interval_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interval_type", + "type": "enum::CSGPolygon3D.PathIntervalType" + } + ] + }, + { + "name": "get_path_interval_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CSGPolygon3D.PathIntervalType" + } + }, + { + "name": "set_path_interval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interval", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_interval", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_path_simplify_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_simplify_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_path_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path_rotation", + "type": "enum::CSGPolygon3D.PathRotation" + } + ] + }, + { + "name": "get_path_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CSGPolygon3D.PathRotation" + } + }, + { + "name": "set_path_local", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_path_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_path_continuous_u", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_path_continuous_u", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_path_u_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_u_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_path_joined", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_path_joined", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_smooth_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "smooth_faces", + "type": "bool" + } + ] + }, + { + "name": "get_smooth_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "PackedVector2Array", + "name": "polygon", + "setter": "set_polygon", + "getter": "get_polygon", + "index": -1 + }, + { + "type": "int", + "name": "mode", + "setter": "set_mode", + "getter": "get_mode", + "index": -1 + }, + { + "type": "float", + "name": "depth", + "setter": "set_depth", + "getter": "get_depth", + "index": -1 + }, + { + "type": "float", + "name": "spin_degrees", + "setter": "set_spin_degrees", + "getter": "get_spin_degrees", + "index": -1 + }, + { + "type": "int", + "name": "spin_sides", + "setter": "set_spin_sides", + "getter": "get_spin_sides", + "index": -1 + }, + { + "type": "NodePath", + "name": "path_node", + "setter": "set_path_node", + "getter": "get_path_node", + "index": -1 + }, + { + "type": "int", + "name": "path_interval_type", + "setter": "set_path_interval_type", + "getter": "get_path_interval_type", + "index": -1 + }, + { + "type": "float", + "name": "path_interval", + "setter": "set_path_interval", + "getter": "get_path_interval", + "index": -1 + }, + { + "type": "float", + "name": "path_simplify_angle", + "setter": "set_path_simplify_angle", + "getter": "get_path_simplify_angle", + "index": -1 + }, + { + "type": "int", + "name": "path_rotation", + "setter": "set_path_rotation", + "getter": "get_path_rotation", + "index": -1 + }, + { + "type": "bool", + "name": "path_local", + "setter": "set_path_local", + "getter": "is_path_local", + "index": -1 + }, + { + "type": "bool", + "name": "path_continuous_u", + "setter": "set_path_continuous_u", + "getter": "is_path_continuous_u", + "index": -1 + }, + { + "type": "float", + "name": "path_u_distance", + "setter": "set_path_u_distance", + "getter": "get_path_u_distance", + "index": -1 + }, + { + "type": "bool", + "name": "path_joined", + "setter": "set_path_joined", + "getter": "is_path_joined", + "index": -1 + }, + { + "type": "bool", + "name": "smooth_faces", + "setter": "set_smooth_faces", + "getter": "get_smooth_faces", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "CSGPrimitive3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "CSGShape3D", + "api_type": "core", + "methods": [ + { + "name": "set_flip_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_faces", + "type": "bool" + } + ] + }, + { + "name": "get_flip_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "flip_faces", + "setter": "set_flip_faces", + "getter": "get_flip_faces", + "index": -1 + } + ] + }, + { + "name": "CSGShape3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "GeometryInstance3D", + "api_type": "core", + "enums": [ + { + "name": "Operation", + "values": [ + { + "name": "OPERATION_UNION", + "value": 0 + }, + { + "name": "OPERATION_INTERSECTION", + "value": 1 + }, + { + "name": "OPERATION_SUBTRACTION", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "is_root_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_operation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "operation", + "type": "enum::CSGShape3D.Operation" + } + ] + }, + { + "name": "get_operation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CSGShape3D.Operation" + } + }, + { + "name": "set_snap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "snap", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_snap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "operation", + "type": "bool" + } + ] + }, + { + "name": "is_using_collision", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_calculate_tangents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_calculating_tangents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_meshes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operation", + "setter": "set_operation", + "getter": "get_operation", + "index": -1 + }, + { + "type": "float", + "name": "snap", + "setter": "set_snap", + "getter": "get_snap", + "index": -1 + }, + { + "type": "bool", + "name": "calculate_tangents", + "setter": "set_calculate_tangents", + "getter": "is_calculating_tangents", + "index": -1 + }, + { + "type": "bool", + "name": "use_collision", + "setter": "set_use_collision", + "getter": "is_using_collision", + "index": -1 + }, + { + "type": "int", + "name": "collision_layer", + "setter": "set_collision_layer", + "getter": "get_collision_layer", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + } + ] + }, + { + "name": "CSGSphere3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGPrimitive3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radial_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radial_segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_radial_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_smooth_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "smooth_faces", + "type": "bool" + } + ] + }, + { + "name": "get_smooth_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "int", + "name": "radial_segments", + "setter": "set_radial_segments", + "getter": "get_radial_segments", + "index": -1 + }, + { + "type": "int", + "name": "rings", + "setter": "set_rings", + "getter": "get_rings", + "index": -1 + }, + { + "type": "bool", + "name": "smooth_faces", + "setter": "set_smooth_faces", + "getter": "get_smooth_faces", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "CSGTorus3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CSGPrimitive3D", + "api_type": "core", + "methods": [ + { + "name": "set_inner_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_inner_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_outer_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_outer_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sides", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_ring_sides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sides", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ring_sides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_smooth_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "smooth_faces", + "type": "bool" + } + ] + }, + { + "name": "get_smooth_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "inner_radius", + "setter": "set_inner_radius", + "getter": "get_inner_radius", + "index": -1 + }, + { + "type": "float", + "name": "outer_radius", + "setter": "set_outer_radius", + "getter": "get_outer_radius", + "index": -1 + }, + { + "type": "int", + "name": "sides", + "setter": "set_sides", + "getter": "get_sides", + "index": -1 + }, + { + "type": "int", + "name": "ring_sides", + "setter": "set_ring_sides", + "getter": "get_ring_sides", + "index": -1 + }, + { + "type": "bool", + "name": "smooth_faces", + "setter": "set_smooth_faces", + "getter": "get_smooth_faces", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "CallbackTweener", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Tweener", + "api_type": "core", + "methods": [ + { + "name": "set_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "CallbackTweener" + }, + "arguments": [ + { + "name": "delay", + "type": "float", + "meta": "float" + } + ] + } + ] + }, + { + "name": "Camera2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "AnchorMode", + "values": [ + { + "name": "ANCHOR_MODE_FIXED_TOP_LEFT", + "value": 0 + }, + { + "name": "ANCHOR_MODE_DRAG_CENTER", + "value": 1 + } + ] + }, + { + "name": "Camera2DProcessCallback", + "values": [ + { + "name": "CAMERA2D_PROCESS_PHYSICS", + "value": 0 + }, + { + "name": "CAMERA2D_PROCESS_IDLE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_anchor_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anchor_mode", + "type": "enum::Camera2D.AnchorMode" + } + ] + }, + { + "name": "get_anchor_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Camera2D.AnchorMode" + } + }, + { + "name": "set_rotating", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rotating", + "type": "bool" + } + ] + }, + { + "name": "is_rotating", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Camera2D.Camera2DProcessCallback" + } + ] + }, + { + "name": "get_process_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Camera2D.Camera2DProcessCallback" + } + }, + { + "name": "set_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "current", + "type": "bool" + } + ] + }, + { + "name": "is_current", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_limit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "limit", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_limit", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_limit_smoothing_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "limit_smoothing_enabled", + "type": "bool" + } + ] + }, + { + "name": "is_limit_smoothing_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_drag_vertical_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_drag_vertical_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_drag_horizontal_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_drag_horizontal_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_drag_vertical_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_drag_vertical_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_drag_horizontal_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_drag_horizontal_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_drag_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "drag_margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_drag_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "get_camera_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_camera_screen_center", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_zoom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zoom", + "type": "Vector2" + } + ] + }, + { + "name": "get_zoom", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_custom_viewport", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "viewport", + "type": "Node" + } + ] + }, + { + "name": "get_custom_viewport", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "set_follow_smoothing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "follow_smoothing", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_follow_smoothing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_enable_follow_smoothing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "follow_smoothing", + "type": "bool" + } + ] + }, + { + "name": "is_follow_smoothing_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "force_update_scroll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "reset_smoothing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "align", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_screen_drawing_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "screen_drawing_enabled", + "type": "bool" + } + ] + }, + { + "name": "is_screen_drawing_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_limit_drawing_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "limit_drawing_enabled", + "type": "bool" + } + ] + }, + { + "name": "is_limit_drawing_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_margin_drawing_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin_drawing_enabled", + "type": "bool" + } + ] + }, + { + "name": "is_margin_drawing_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "int", + "name": "anchor_mode", + "setter": "set_anchor_mode", + "getter": "get_anchor_mode", + "index": -1 + }, + { + "type": "bool", + "name": "rotating", + "setter": "set_rotating", + "getter": "is_rotating", + "index": -1 + }, + { + "type": "bool", + "name": "current", + "setter": "set_current", + "getter": "is_current", + "index": -1 + }, + { + "type": "Vector2", + "name": "zoom", + "setter": "set_zoom", + "getter": "get_zoom", + "index": -1 + }, + { + "type": "Viewport", + "name": "custom_viewport", + "setter": "set_custom_viewport", + "getter": "get_custom_viewport", + "index": -1 + }, + { + "type": "int", + "name": "process_callback", + "setter": "set_process_callback", + "getter": "get_process_callback", + "index": -1 + }, + { + "type": "int", + "name": "limit_left", + "setter": "set_limit", + "getter": "get_limit", + "index": 0 + }, + { + "type": "int", + "name": "limit_top", + "setter": "set_limit", + "getter": "get_limit", + "index": 1 + }, + { + "type": "int", + "name": "limit_right", + "setter": "set_limit", + "getter": "get_limit", + "index": 2 + }, + { + "type": "int", + "name": "limit_bottom", + "setter": "set_limit", + "getter": "get_limit", + "index": 3 + }, + { + "type": "bool", + "name": "limit_smoothed", + "setter": "set_limit_smoothing_enabled", + "getter": "is_limit_smoothing_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "smoothing_enabled", + "setter": "set_enable_follow_smoothing", + "getter": "is_follow_smoothing_enabled", + "index": -1 + }, + { + "type": "float", + "name": "smoothing_speed", + "setter": "set_follow_smoothing", + "getter": "get_follow_smoothing", + "index": -1 + }, + { + "type": "bool", + "name": "drag_horizontal_enabled", + "setter": "set_drag_horizontal_enabled", + "getter": "is_drag_horizontal_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "drag_vertical_enabled", + "setter": "set_drag_vertical_enabled", + "getter": "is_drag_vertical_enabled", + "index": -1 + }, + { + "type": "float", + "name": "drag_horizontal_offset", + "setter": "set_drag_horizontal_offset", + "getter": "get_drag_horizontal_offset", + "index": -1 + }, + { + "type": "float", + "name": "drag_vertical_offset", + "setter": "set_drag_vertical_offset", + "getter": "get_drag_vertical_offset", + "index": -1 + }, + { + "type": "float", + "name": "drag_left_margin", + "setter": "set_drag_margin", + "getter": "get_drag_margin", + "index": 0 + }, + { + "type": "float", + "name": "drag_top_margin", + "setter": "set_drag_margin", + "getter": "get_drag_margin", + "index": 1 + }, + { + "type": "float", + "name": "drag_right_margin", + "setter": "set_drag_margin", + "getter": "get_drag_margin", + "index": 2 + }, + { + "type": "float", + "name": "drag_bottom_margin", + "setter": "set_drag_margin", + "getter": "get_drag_margin", + "index": 3 + }, + { + "type": "bool", + "name": "editor_draw_screen", + "setter": "set_screen_drawing_enabled", + "getter": "is_screen_drawing_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "editor_draw_limits", + "setter": "set_limit_drawing_enabled", + "getter": "is_limit_drawing_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "editor_draw_drag_margin", + "setter": "set_margin_drawing_enabled", + "getter": "is_margin_drawing_enabled", + "index": -1 + } + ] + }, + { + "name": "Camera3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "enums": [ + { + "name": "Projection", + "values": [ + { + "name": "PROJECTION_PERSPECTIVE", + "value": 0 + }, + { + "name": "PROJECTION_ORTHOGONAL", + "value": 1 + }, + { + "name": "PROJECTION_FRUSTUM", + "value": 2 + } + ] + }, + { + "name": "KeepAspect", + "values": [ + { + "name": "KEEP_WIDTH", + "value": 0 + }, + { + "name": "KEEP_HEIGHT", + "value": 1 + } + ] + }, + { + "name": "DopplerTracking", + "values": [ + { + "name": "DOPPLER_TRACKING_DISABLED", + "value": 0 + }, + { + "name": "DOPPLER_TRACKING_IDLE_STEP", + "value": 1 + }, + { + "name": "DOPPLER_TRACKING_PHYSICS_STEP", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "project_ray_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "screen_point", + "type": "Vector2" + } + ] + }, + { + "name": "project_local_ray_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "screen_point", + "type": "Vector2" + } + ] + }, + { + "name": "project_ray_origin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "screen_point", + "type": "Vector2" + } + ] + }, + { + "name": "unproject_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "world_point", + "type": "Vector3" + } + ] + }, + { + "name": "is_position_behind", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "world_point", + "type": "Vector3" + } + ] + }, + { + "name": "project_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "screen_point", + "type": "Vector2" + }, + { + "name": "z_depth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_perspective", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "fov", + "type": "float", + "meta": "float" + }, + { + "name": "z_near", + "type": "float", + "meta": "float" + }, + { + "name": "z_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_orthogonal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + }, + { + "name": "z_near", + "type": "float", + "meta": "float" + }, + { + "name": "z_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_frustum", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + }, + { + "name": "offset", + "type": "Vector2" + }, + { + "name": "z_near", + "type": "float", + "meta": "float" + }, + { + "name": "z_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "make_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133279208, + "arguments": [ + { + "name": "enable_next", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_current", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_camera_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "get_fov", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_frustum_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_far", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_near", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fov", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fov", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_frustum_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_far", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_near", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "near", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_projection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Camera3D.Projection" + } + }, + { + "name": "set_projection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Camera3D.Projection" + } + ] + }, + { + "name": "set_h_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_h_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_v_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_v_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "env", + "type": "Environment" + } + ] + }, + { + "name": "get_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Environment" + } + }, + { + "name": "set_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "env", + "type": "CameraEffects" + } + ] + }, + { + "name": "get_effects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CameraEffects" + } + }, + { + "name": "set_keep_aspect_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Camera3D.KeepAspect" + } + ] + }, + { + "name": "get_keep_aspect_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Camera3D.KeepAspect" + } + }, + { + "name": "set_doppler_tracking", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Camera3D.DopplerTracking" + } + ] + }, + { + "name": "get_doppler_tracking", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Camera3D.DopplerTracking" + } + }, + { + "name": "get_frustum", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "is_position_in_frustum", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "world_point", + "type": "Vector3" + } + ] + }, + { + "name": "get_camera_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_pyramid_shape_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_cull_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_cull_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "keep_aspect", + "setter": "set_keep_aspect_mode", + "getter": "get_keep_aspect_mode", + "index": -1 + }, + { + "type": "int", + "name": "cull_mask", + "setter": "set_cull_mask", + "getter": "get_cull_mask", + "index": -1 + }, + { + "type": "Environment", + "name": "environment", + "setter": "set_environment", + "getter": "get_environment", + "index": -1 + }, + { + "type": "CameraEffects", + "name": "effects", + "setter": "set_effects", + "getter": "get_effects", + "index": -1 + }, + { + "type": "float", + "name": "h_offset", + "setter": "set_h_offset", + "getter": "get_h_offset", + "index": -1 + }, + { + "type": "float", + "name": "v_offset", + "setter": "set_v_offset", + "getter": "get_v_offset", + "index": -1 + }, + { + "type": "int", + "name": "doppler_tracking", + "setter": "set_doppler_tracking", + "getter": "get_doppler_tracking", + "index": -1 + }, + { + "type": "int", + "name": "projection", + "setter": "set_projection", + "getter": "get_projection", + "index": -1 + }, + { + "type": "bool", + "name": "current", + "setter": "set_current", + "getter": "is_current", + "index": -1 + }, + { + "type": "float", + "name": "fov", + "setter": "set_fov", + "getter": "get_fov", + "index": -1 + }, + { + "type": "float", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "Vector2", + "name": "frustum_offset", + "setter": "set_frustum_offset", + "getter": "get_frustum_offset", + "index": -1 + }, + { + "type": "float", + "name": "near", + "setter": "set_near", + "getter": "get_near", + "index": -1 + }, + { + "type": "float", + "name": "far", + "setter": "set_far", + "getter": "get_far", + "index": -1 + } + ] + }, + { + "name": "CameraEffects", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_dof_blur_far_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_dof_blur_far_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_dof_blur_far_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dof_blur_far_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_dof_blur_far_transition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dof_blur_far_transition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_dof_blur_near_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_dof_blur_near_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_dof_blur_near_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dof_blur_near_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_dof_blur_near_transition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dof_blur_near_transition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_dof_blur_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dof_blur_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_override_exposure_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_override_exposure_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_override_exposure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_override_exposure", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "dof_blur_far_enabled", + "setter": "set_dof_blur_far_enabled", + "getter": "is_dof_blur_far_enabled", + "index": -1 + }, + { + "type": "float", + "name": "dof_blur_far_distance", + "setter": "set_dof_blur_far_distance", + "getter": "get_dof_blur_far_distance", + "index": -1 + }, + { + "type": "float", + "name": "dof_blur_far_transition", + "setter": "set_dof_blur_far_transition", + "getter": "get_dof_blur_far_transition", + "index": -1 + }, + { + "type": "bool", + "name": "dof_blur_near_enabled", + "setter": "set_dof_blur_near_enabled", + "getter": "is_dof_blur_near_enabled", + "index": -1 + }, + { + "type": "float", + "name": "dof_blur_near_distance", + "setter": "set_dof_blur_near_distance", + "getter": "get_dof_blur_near_distance", + "index": -1 + }, + { + "type": "float", + "name": "dof_blur_near_transition", + "setter": "set_dof_blur_near_transition", + "getter": "get_dof_blur_near_transition", + "index": -1 + }, + { + "type": "float", + "name": "dof_blur_amount", + "setter": "set_dof_blur_amount", + "getter": "get_dof_blur_amount", + "index": -1 + }, + { + "type": "bool", + "name": "override_exposure_enabled", + "setter": "set_override_exposure_enabled", + "getter": "is_override_exposure_enabled", + "index": -1 + }, + { + "type": "float", + "name": "override_exposure", + "setter": "set_override_exposure", + "getter": "get_override_exposure", + "index": -1 + } + ] + }, + { + "name": "CameraFeed", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "FeedDataType", + "values": [ + { + "name": "FEED_NOIMAGE", + "value": 0 + }, + { + "name": "FEED_RGB", + "value": 1 + }, + { + "name": "FEED_YCBCR", + "value": 2 + }, + { + "name": "FEED_YCBCR_SEP", + "value": 3 + } + ] + }, + { + "name": "FeedPosition", + "values": [ + { + "name": "FEED_UNSPECIFIED", + "value": 0 + }, + { + "name": "FEED_FRONT", + "value": 1 + }, + { + "name": "FEED_BACK", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "get_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CameraFeed.FeedPosition" + } + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_datatype", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CameraFeed.FeedDataType" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "feed_is_active", + "setter": "set_active", + "getter": "is_active", + "index": -1 + }, + { + "type": "Transform2D", + "name": "feed_transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + } + ] + }, + { + "name": "CameraServer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "FeedImage", + "values": [ + { + "name": "FEED_RGBA_IMAGE", + "value": 0 + }, + { + "name": "FEED_YCBCR_IMAGE", + "value": 0 + }, + { + "name": "FEED_Y_IMAGE", + "value": 0 + }, + { + "name": "FEED_CBCR_IMAGE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "get_feed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "CameraFeed" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_feed_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "feeds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_feed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "feed", + "type": "CameraFeed" + } + ] + }, + { + "name": "remove_feed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "feed", + "type": "CameraFeed" + } + ] + } + ], + "signals": [ + { + "name": "camera_feed_added", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "camera_feed_removed", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + } + ] + }, + { + "name": "CameraTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_camera_feed_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "feed_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_camera_feed_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_which_feed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "which_feed", + "type": "enum::CameraServer.FeedImage" + } + ] + }, + { + "name": "get_which_feed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CameraServer.FeedImage" + } + }, + { + "name": "set_camera_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "get_camera_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "camera_feed_id", + "setter": "set_camera_feed_id", + "getter": "get_camera_feed_id", + "index": -1 + }, + { + "type": "int", + "name": "which_feed", + "setter": "set_which_feed", + "getter": "get_which_feed", + "index": -1 + }, + { + "type": "bool", + "name": "camera_is_active", + "setter": "set_camera_active", + "getter": "get_camera_active", + "index": -1 + } + ] + }, + { + "name": "CanvasGroup", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_fit_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fit_margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fit_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_clear_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clear_margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_clear_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_mipmaps", + "type": "bool" + } + ] + }, + { + "name": "is_using_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "fit_margin", + "setter": "set_fit_margin", + "getter": "get_fit_margin", + "index": -1 + }, + { + "type": "float", + "name": "clear_margin", + "setter": "set_clear_margin", + "getter": "get_clear_margin", + "index": -1 + }, + { + "type": "bool", + "name": "use_mipmaps", + "setter": "set_use_mipmaps", + "getter": "is_using_mipmaps", + "index": -1 + } + ] + }, + { + "name": "CanvasItem", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_TRANSFORM_CHANGED", + "value": 2000 + }, + { + "name": "NOTIFICATION_LOCAL_TRANSFORM_CHANGED", + "value": 35 + }, + { + "name": "NOTIFICATION_DRAW", + "value": 30 + }, + { + "name": "NOTIFICATION_VISIBILITY_CHANGED", + "value": 31 + }, + { + "name": "NOTIFICATION_ENTER_CANVAS", + "value": 32 + }, + { + "name": "NOTIFICATION_EXIT_CANVAS", + "value": 33 + } + ], + "enums": [ + { + "name": "TextureFilter", + "values": [ + { + "name": "TEXTURE_FILTER_PARENT_NODE", + "value": 0 + }, + { + "name": "TEXTURE_FILTER_NEAREST", + "value": 1 + }, + { + "name": "TEXTURE_FILTER_LINEAR", + "value": 2 + }, + { + "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", + "value": 3 + }, + { + "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", + "value": 4 + }, + { + "name": "TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC", + "value": 5 + }, + { + "name": "TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC", + "value": 6 + }, + { + "name": "TEXTURE_FILTER_MAX", + "value": 7 + } + ] + }, + { + "name": "TextureRepeat", + "values": [ + { + "name": "TEXTURE_REPEAT_PARENT_NODE", + "value": 0 + }, + { + "name": "TEXTURE_REPEAT_DISABLED", + "value": 1 + }, + { + "name": "TEXTURE_REPEAT_ENABLED", + "value": 2 + }, + { + "name": "TEXTURE_REPEAT_MIRROR", + "value": 3 + }, + { + "name": "TEXTURE_REPEAT_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "_draw", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "get_canvas_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "is_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_visible_in_tree", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "show", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "hide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_as_top_level", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_set_as_top_level", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_light_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light_mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_light_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_self_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "self_modulate", + "type": "Color" + } + ] + }, + { + "name": "get_self_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_draw_behind_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_draw_behind_parent_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "draw_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "antialiased", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_dashed_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "dash", + "type": "float", + "meta": "float", + "default_value": "2.0" + } + ] + }, + { + "name": "draw_polyline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "antialiased", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_polyline_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "antialiased", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_arc", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 378344303, + "arguments": [ + { + "name": "center", + "type": "Vector2" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + }, + { + "name": "start_angle", + "type": "float", + "meta": "float" + }, + { + "name": "end_angle", + "type": "float", + "meta": "float" + }, + { + "name": "point_count", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "antialiased", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_multiline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "draw_multiline_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "draw_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "filled", + "type": "bool", + "default_value": "true" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "draw_circle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "draw_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "position", + "type": "Vector2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_texture_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "tile", + "type": "bool" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_texture_rect_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626862, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + }, + { + "name": "clip_uv", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "draw_msdf_texture_rect_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626862, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline", + "type": "float", + "meta": "double", + "default_value": "0.0" + }, + { + "name": "pixel_range", + "type": "float", + "meta": "double", + "default_value": "4.0" + } + ] + }, + { + "name": "draw_style_box", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "style_box", + "type": "StyleBox" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "draw_primitive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "uvs", + "type": "PackedVector2Array" + }, + { + "name": "texture", + "type": "Texture2D", + "default_value": "null" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "draw_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "uvs", + "type": "PackedVector2Array", + "default_value": "PackedVector2Array()" + }, + { + "name": "texture", + "type": "Texture2D", + "default_value": "null" + } + ] + }, + { + "name": "draw_colored_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "uvs", + "type": "PackedVector2Array", + "default_value": "PackedVector2Array()" + }, + { + "name": "texture", + "type": "Texture2D", + "default_value": "null" + } + ] + }, + { + "name": "draw_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 788614421, + "arguments": [ + { + "name": "font", + "type": "Font" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 0)" + }, + { + "name": "flags", + "type": "int", + "meta": "uint16", + "default_value": "3" + } + ] + }, + { + "name": "draw_multiline_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4242164481, + "arguments": [ + { + "name": "font", + "type": "Font" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "max_lines", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 0)" + }, + { + "name": "flags", + "type": "int", + "meta": "uint16", + "default_value": "99" + } + ] + }, + { + "name": "draw_char", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2009863945, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "font", + "type": "Font" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "char", + "type": "String" + }, + { + "name": "next", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 0)" + } + ] + }, + { + "name": "draw_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + }, + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "transform", + "type": "Transform2D", + "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_multimesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "multimesh", + "type": "MultiMesh" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "draw_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2793927834, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "rotation", + "type": "float", + "meta": "float", + "default_value": "0.0" + }, + { + "name": "scale", + "type": "Vector2", + "default_value": "Vector2(1, 1)" + } + ] + }, + { + "name": "draw_set_transform_matrix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + } + ] + }, + { + "name": "draw_animation_slice", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "animation_length", + "type": "float", + "meta": "double" + }, + { + "name": "slice_begin", + "type": "float", + "meta": "double" + }, + { + "name": "slice_end", + "type": "float", + "meta": "double" + }, + { + "name": "offset", + "type": "float", + "meta": "double", + "default_value": "0.0" + } + ] + }, + { + "name": "draw_end_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_global_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_global_transform_with_canvas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_viewport_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_viewport_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "get_canvas_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_screen_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_local_mouse_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_global_mouse_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_canvas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_world_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "World2D" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_use_parent_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_use_parent_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_notify_local_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_local_transform_notification_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_notify_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_transform_notification_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "force_update_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "make_canvas_position_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "screen_point", + "type": "Vector2" + } + ] + }, + { + "name": "make_input_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "InputEvent" + }, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CanvasItem.TextureFilter" + } + ] + }, + { + "name": "get_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CanvasItem.TextureFilter" + } + }, + { + "name": "set_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CanvasItem.TextureRepeat" + } + ] + }, + { + "name": "get_texture_repeat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CanvasItem.TextureRepeat" + } + }, + { + "name": "set_clip_children", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_clipping_children", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "draw" + }, + { + "name": "visibility_changed" + }, + { + "name": "hidden" + }, + { + "name": "item_rect_changed" + } + ], + "properties": [ + { + "type": "bool", + "name": "visible", + "setter": "set_visible", + "getter": "is_visible", + "index": -1 + }, + { + "type": "Color", + "name": "modulate", + "setter": "set_modulate", + "getter": "get_modulate", + "index": -1 + }, + { + "type": "Color", + "name": "self_modulate", + "setter": "set_self_modulate", + "getter": "get_self_modulate", + "index": -1 + }, + { + "type": "bool", + "name": "show_behind_parent", + "setter": "set_draw_behind_parent", + "getter": "is_draw_behind_parent_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "top_level", + "setter": "set_as_top_level", + "getter": "is_set_as_top_level", + "index": -1 + }, + { + "type": "bool", + "name": "clip_children", + "setter": "set_clip_children", + "getter": "is_clipping_children", + "index": -1 + }, + { + "type": "int", + "name": "light_mask", + "setter": "set_light_mask", + "getter": "get_light_mask", + "index": -1 + }, + { + "type": "int", + "name": "texture_filter", + "setter": "set_texture_filter", + "getter": "get_texture_filter", + "index": -1 + }, + { + "type": "int", + "name": "texture_repeat", + "setter": "set_texture_repeat", + "getter": "get_texture_repeat", + "index": -1 + }, + { + "type": "CanvasItemMaterial,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + }, + { + "type": "bool", + "name": "use_parent_material", + "setter": "set_use_parent_material", + "getter": "get_use_parent_material", + "index": -1 + } + ] + }, + { + "name": "CanvasItemMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "enums": [ + { + "name": "BlendMode", + "values": [ + { + "name": "BLEND_MODE_MIX", + "value": 0 + }, + { + "name": "BLEND_MODE_ADD", + "value": 1 + }, + { + "name": "BLEND_MODE_SUB", + "value": 2 + }, + { + "name": "BLEND_MODE_MUL", + "value": 3 + }, + { + "name": "BLEND_MODE_PREMULT_ALPHA", + "value": 4 + } + ] + }, + { + "name": "LightMode", + "values": [ + { + "name": "LIGHT_MODE_NORMAL", + "value": 0 + }, + { + "name": "LIGHT_MODE_UNSHADED", + "value": 1 + }, + { + "name": "LIGHT_MODE_LIGHT_ONLY", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_blend_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "blend_mode", + "type": "enum::CanvasItemMaterial.BlendMode" + } + ] + }, + { + "name": "get_blend_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CanvasItemMaterial.BlendMode" + } + }, + { + "name": "set_light_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light_mode", + "type": "enum::CanvasItemMaterial.LightMode" + } + ] + }, + { + "name": "get_light_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CanvasItemMaterial.LightMode" + } + }, + { + "name": "set_particles_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "particles_anim", + "type": "bool" + } + ] + }, + { + "name": "get_particles_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_particles_anim_h_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_particles_anim_h_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_particles_anim_v_frames", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_particles_anim_v_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_particles_anim_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop", + "type": "bool" + } + ] + }, + { + "name": "get_particles_anim_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "blend_mode", + "setter": "set_blend_mode", + "getter": "get_blend_mode", + "index": -1 + }, + { + "type": "int", + "name": "light_mode", + "setter": "set_light_mode", + "getter": "get_light_mode", + "index": -1 + }, + { + "type": "bool", + "name": "particles_animation", + "setter": "set_particles_animation", + "getter": "get_particles_animation", + "index": -1 + }, + { + "type": "int", + "name": "particles_anim_h_frames", + "setter": "set_particles_anim_h_frames", + "getter": "get_particles_anim_h_frames", + "index": -1 + }, + { + "type": "int", + "name": "particles_anim_v_frames", + "setter": "set_particles_anim_v_frames", + "getter": "get_particles_anim_v_frames", + "index": -1 + }, + { + "type": "bool", + "name": "particles_anim_loop", + "setter": "set_particles_anim_loop", + "getter": "get_particles_anim_loop", + "index": -1 + } + ] + }, + { + "name": "CanvasLayer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "set_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "is_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "show", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "hide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_follow_viewport", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_following_viewport", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_follow_viewport_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_follow_viewport_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_custom_viewport", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "viewport", + "type": "Node" + } + ] + }, + { + "name": "get_custom_viewport", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "get_canvas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + } + ], + "signals": [ + { + "name": "visibility_changed" + } + ], + "properties": [ + { + "type": "int", + "name": "layer", + "setter": "set_layer", + "getter": "get_layer", + "index": -1 + }, + { + "type": "bool", + "name": "visible", + "setter": "set_visible", + "getter": "is_visible", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "float", + "name": "rotation", + "setter": "set_rotation", + "getter": "get_rotation", + "index": -1 + }, + { + "type": "Vector2", + "name": "scale", + "setter": "set_scale", + "getter": "get_scale", + "index": -1 + }, + { + "type": "Transform2D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "Viewport", + "name": "custom_viewport", + "setter": "set_custom_viewport", + "getter": "get_custom_viewport", + "index": -1 + }, + { + "type": "bool", + "name": "follow_viewport_enable", + "setter": "set_follow_viewport", + "getter": "is_following_viewport", + "index": -1 + }, + { + "type": "float", + "name": "follow_viewport_scale", + "setter": "set_follow_viewport_scale", + "getter": "get_follow_viewport_scale", + "index": -1 + } + ] + }, + { + "name": "CanvasModulate", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + } + ] + }, + { + "name": "CanvasTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_diffuse_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_diffuse_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_normal_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_normal_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_specular_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_specular_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_specular_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_specular_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_specular_shininess", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shininess", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_specular_shininess", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "enum::CanvasItem.TextureFilter" + } + ] + }, + { + "name": "get_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CanvasItem.TextureFilter" + } + }, + { + "name": "set_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "repeat", + "type": "enum::CanvasItem.TextureRepeat" + } + ] + }, + { + "name": "get_texture_repeat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CanvasItem.TextureRepeat" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "diffuse_texture", + "setter": "set_diffuse_texture", + "getter": "get_diffuse_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "normal_texture", + "setter": "set_normal_texture", + "getter": "get_normal_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "specular_texture", + "setter": "set_specular_texture", + "getter": "get_specular_texture", + "index": -1 + }, + { + "type": "Color", + "name": "specular_color", + "setter": "set_specular_color", + "getter": "get_specular_color", + "index": -1 + }, + { + "type": "float", + "name": "specular_shininess", + "setter": "set_specular_shininess", + "getter": "get_specular_shininess", + "index": -1 + }, + { + "type": "int", + "name": "texture_filter", + "setter": "set_texture_filter", + "getter": "get_texture_filter", + "index": -1 + }, + { + "type": "int", + "name": "texture_repeat", + "setter": "set_texture_repeat", + "getter": "get_texture_repeat", + "index": -1 + } + ] + }, + { + "name": "CapsuleMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radial_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_radial_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "int", + "name": "radial_segments", + "setter": "set_radial_segments", + "getter": "get_radial_segments", + "index": -1 + }, + { + "type": "int", + "name": "rings", + "setter": "set_rings", + "getter": "get_rings", + "index": -1 + } + ] + }, + { + "name": "CapsuleShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + } + ] + }, + { + "name": "CapsuleShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + } + ] + }, + { + "name": "CenterContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "methods": [ + { + "name": "set_use_top_left", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_top_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "use_top_left", + "setter": "set_use_top_left", + "getter": "is_using_top_left", + "index": -1 + } + ] + }, + { + "name": "CharFXTransform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "range", + "type": "Vector2i" + } + ] + }, + { + "name": "get_elapsed_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_elapsed_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "is_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_visibility", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visibility", + "type": "bool" + } + ] + }, + { + "name": "is_outline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_outline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "outline", + "type": "bool" + } + ] + }, + { + "name": "get_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "environment", + "type": "Dictionary" + } + ] + }, + { + "name": "get_glyph_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_glyph_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "glyph_index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_glyph_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint8" + } + }, + { + "name": "set_glyph_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "glyph_count", + "type": "int", + "meta": "uint8" + } + ] + }, + { + "name": "get_glyph_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "set_glyph_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "glyph_flags", + "type": "int", + "meta": "uint16" + } + ] + }, + { + "name": "get_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font", + "type": "RID" + } + ] + } + ], + "properties": [ + { + "type": "Vector2i", + "name": "range", + "setter": "set_range", + "getter": "get_range", + "index": -1 + }, + { + "type": "float", + "name": "elapsed_time", + "setter": "set_elapsed_time", + "getter": "get_elapsed_time", + "index": -1 + }, + { + "type": "bool", + "name": "visible", + "setter": "set_visibility", + "getter": "is_visible", + "index": -1 + }, + { + "type": "bool", + "name": "outline", + "setter": "set_outline", + "getter": "is_outline", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "Dictionary", + "name": "env", + "setter": "set_environment", + "getter": "get_environment", + "index": -1 + }, + { + "type": "int", + "name": "glyph_index", + "setter": "set_glyph_index", + "getter": "get_glyph_index", + "index": -1 + }, + { + "type": "int", + "name": "glyph_count", + "setter": "set_glyph_count", + "getter": "get_glyph_count", + "index": -1 + }, + { + "type": "int", + "name": "glyph_flags", + "setter": "set_glyph_flags", + "getter": "get_glyph_flags", + "index": -1 + }, + { + "type": "RID", + "name": "font", + "setter": "set_font", + "getter": "get_font", + "index": -1 + } + ] + }, + { + "name": "CharacterBody2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody2D", + "api_type": "core", + "enums": [ + { + "name": "MotionMode", + "values": [ + { + "name": "MOTION_MODE_GROUNDED", + "value": 0 + }, + { + "name": "MOTION_MODE_FLOATING", + "value": 1 + } + ] + }, + { + "name": "MovingPlatformApplyVelocityOnLeave", + "values": [ + { + "name": "PLATFORM_VEL_ON_LEAVE_ALWAYS", + "value": 0 + }, + { + "name": "PLATFORM_VEL_ON_LEAVE_UPWARD_ONLY", + "value": 1 + }, + { + "name": "PLATFORM_VEL_ON_LEAVE_NEVER", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "move_and_slide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_safe_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_safe_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "is_floor_stop_on_slope_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_floor_stop_on_slope_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_floor_constant_speed_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_floor_constant_speed_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_floor_block_on_wall_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_floor_block_on_wall_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_slide_on_ceiling_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_slide_on_ceiling_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_moving_platform_floor_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_moving_platform_floor_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_moving_platform_wall_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_moving_platform_wall_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_max_slides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_slides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_slides", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_floor_max_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_floor_max_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_floor_snap_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_floor_snap_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "floor_snap_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_wall_min_slide_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_wall_min_slide_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_up_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_up_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "up_direction", + "type": "Vector2" + } + ] + }, + { + "name": "set_motion_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CharacterBody2D.MotionMode" + } + ] + }, + { + "name": "get_motion_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CharacterBody2D.MotionMode" + } + }, + { + "name": "set_moving_platform_apply_velocity_on_leave", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "on_leave_apply_velocity", + "type": "enum::CharacterBody2D.MovingPlatformApplyVelocityOnLeave" + } + ] + }, + { + "name": "get_moving_platform_apply_velocity_on_leave", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CharacterBody2D.MovingPlatformApplyVelocityOnLeave" + } + }, + { + "name": "is_on_floor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_floor_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_ceiling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_ceiling_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_wall", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_wall_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_floor_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_wall_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_last_motion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_position_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_real_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_floor_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3009477143, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "up_direction", + "type": "Vector2", + "default_value": "Vector2(0, -1)" + } + ] + }, + { + "name": "get_platform_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_slide_collision_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_slide_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "KinematicCollision2D" + }, + "arguments": [ + { + "name": "slide_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_last_slide_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "KinematicCollision2D" + } + } + ], + "properties": [ + { + "type": "int", + "name": "motion_mode", + "setter": "set_motion_mode", + "getter": "get_motion_mode", + "index": -1 + }, + { + "type": "Vector2", + "name": "up_direction", + "setter": "set_up_direction", + "getter": "get_up_direction", + "index": -1 + }, + { + "type": "Vector2", + "name": "velocity", + "setter": "set_velocity", + "getter": "get_velocity", + "index": -1 + }, + { + "type": "bool", + "name": "slide_on_ceiling", + "setter": "set_slide_on_ceiling_enabled", + "getter": "is_slide_on_ceiling_enabled", + "index": -1 + }, + { + "type": "int", + "name": "max_slides", + "setter": "set_max_slides", + "getter": "get_max_slides", + "index": -1 + }, + { + "type": "float", + "name": "wall_min_slide_angle", + "setter": "set_wall_min_slide_angle", + "getter": "get_wall_min_slide_angle", + "index": -1 + }, + { + "type": "bool", + "name": "floor_stop_on_slope", + "setter": "set_floor_stop_on_slope_enabled", + "getter": "is_floor_stop_on_slope_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "floor_constant_speed", + "setter": "set_floor_constant_speed_enabled", + "getter": "is_floor_constant_speed_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "floor_block_on_wall", + "setter": "set_floor_block_on_wall_enabled", + "getter": "is_floor_block_on_wall_enabled", + "index": -1 + }, + { + "type": "float", + "name": "floor_max_angle", + "setter": "set_floor_max_angle", + "getter": "get_floor_max_angle", + "index": -1 + }, + { + "type": "float", + "name": "floor_snap_length", + "setter": "set_floor_snap_length", + "getter": "get_floor_snap_length", + "index": -1 + }, + { + "type": "int", + "name": "moving_platform_apply_velocity_on_leave", + "setter": "set_moving_platform_apply_velocity_on_leave", + "getter": "get_moving_platform_apply_velocity_on_leave", + "index": -1 + }, + { + "type": "int", + "name": "moving_platform_floor_layers", + "setter": "set_moving_platform_floor_layers", + "getter": "get_moving_platform_floor_layers", + "index": -1 + }, + { + "type": "int", + "name": "moving_platform_wall_layers", + "setter": "set_moving_platform_wall_layers", + "getter": "get_moving_platform_wall_layers", + "index": -1 + }, + { + "type": "float", + "name": "collision/safe_margin", + "setter": "set_safe_margin", + "getter": "get_safe_margin", + "index": -1 + } + ] + }, + { + "name": "CharacterBody3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody3D", + "api_type": "core", + "enums": [ + { + "name": "MotionMode", + "values": [ + { + "name": "MOTION_MODE_GROUNDED", + "value": 0 + }, + { + "name": "MOTION_MODE_FLOATING", + "value": 1 + } + ] + }, + { + "name": "MovingPlatformApplyVelocityOnLeave", + "values": [ + { + "name": "PLATFORM_VEL_ON_LEAVE_ALWAYS", + "value": 0 + }, + { + "name": "PLATFORM_VEL_ON_LEAVE_UPWARD_ONLY", + "value": 1 + }, + { + "name": "PLATFORM_VEL_ON_LEAVE_NEVER", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "move_and_slide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_safe_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_safe_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "is_floor_stop_on_slope_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_floor_stop_on_slope_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_floor_constant_speed_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_floor_constant_speed_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_floor_block_on_wall_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_floor_block_on_wall_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_slide_on_ceiling_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_slide_on_ceiling_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_moving_platform_floor_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_moving_platform_floor_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_moving_platform_wall_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_moving_platform_wall_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_max_slides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_slides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_slides", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_floor_max_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_floor_max_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_floor_snap_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_floor_snap_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "floor_snap_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_wall_min_slide_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_wall_min_slide_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_up_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_up_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "up_direction", + "type": "Vector3" + } + ] + }, + { + "name": "set_motion_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CharacterBody3D.MotionMode" + } + ] + }, + { + "name": "get_motion_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CharacterBody3D.MotionMode" + } + }, + { + "name": "set_moving_platform_apply_velocity_on_leave", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "on_leave_apply_velocity", + "type": "enum::CharacterBody3D.MovingPlatformApplyVelocityOnLeave" + } + ] + }, + { + "name": "get_moving_platform_apply_velocity_on_leave", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CharacterBody3D.MovingPlatformApplyVelocityOnLeave" + } + }, + { + "name": "is_on_floor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_floor_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_ceiling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_ceiling_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_wall", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_on_wall_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_floor_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_wall_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_last_motion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_position_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_real_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_floor_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1958111097, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "up_direction", + "type": "Vector3", + "default_value": "Vector3(0, 1, 0)" + } + ] + }, + { + "name": "get_platform_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_slide_collision_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_slide_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "KinematicCollision3D" + }, + "arguments": [ + { + "name": "slide_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_last_slide_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "KinematicCollision3D" + } + } + ], + "properties": [ + { + "type": "int", + "name": "motion_mode", + "setter": "set_motion_mode", + "getter": "get_motion_mode", + "index": -1 + }, + { + "type": "Vector3", + "name": "up_direction", + "setter": "set_up_direction", + "getter": "get_up_direction", + "index": -1 + }, + { + "type": "bool", + "name": "slide_on_ceiling", + "setter": "set_slide_on_ceiling_enabled", + "getter": "is_slide_on_ceiling_enabled", + "index": -1 + }, + { + "type": "Vector3", + "name": "velocity", + "setter": "set_velocity", + "getter": "get_velocity", + "index": -1 + }, + { + "type": "int", + "name": "max_slides", + "setter": "set_max_slides", + "getter": "get_max_slides", + "index": -1 + }, + { + "type": "float", + "name": "wall_min_slide_angle", + "setter": "set_wall_min_slide_angle", + "getter": "get_wall_min_slide_angle", + "index": -1 + }, + { + "type": "bool", + "name": "floor_stop_on_slope", + "setter": "set_floor_stop_on_slope_enabled", + "getter": "is_floor_stop_on_slope_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "floor_constant_speed", + "setter": "set_floor_constant_speed_enabled", + "getter": "is_floor_constant_speed_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "floor_block_on_wall", + "setter": "set_floor_block_on_wall_enabled", + "getter": "is_floor_block_on_wall_enabled", + "index": -1 + }, + { + "type": "float", + "name": "floor_max_angle", + "setter": "set_floor_max_angle", + "getter": "get_floor_max_angle", + "index": -1 + }, + { + "type": "float", + "name": "floor_snap_length", + "setter": "set_floor_snap_length", + "getter": "get_floor_snap_length", + "index": -1 + }, + { + "type": "int", + "name": "moving_platform_apply_velocity_on_leave", + "setter": "set_moving_platform_apply_velocity_on_leave", + "getter": "get_moving_platform_apply_velocity_on_leave", + "index": -1 + }, + { + "type": "int", + "name": "moving_platform_floor_layers", + "setter": "set_moving_platform_floor_layers", + "getter": "get_moving_platform_floor_layers", + "index": -1 + }, + { + "type": "int", + "name": "moving_platform_wall_layers", + "setter": "set_moving_platform_wall_layers", + "getter": "get_moving_platform_wall_layers", + "index": -1 + }, + { + "type": "float", + "name": "collision/safe_margin", + "setter": "set_safe_margin", + "getter": "get_safe_margin", + "index": -1 + } + ] + }, + { + "name": "CheckBox", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Button", + "api_type": "core" + }, + { + "name": "CheckButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Button", + "api_type": "core" + }, + { + "name": "CircleShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "ClassDB", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "get_class_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_inheriters_from_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + } + ] + }, + { + "name": "get_parent_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + } + ] + }, + { + "name": "class_exists", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + } + ] + }, + { + "name": "is_parent_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "inherits", + "type": "StringName" + } + ] + }, + { + "name": "can_instantiate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + } + ] + }, + { + "name": "instantiate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + } + ] + }, + { + "name": "class_has_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "class_get_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "class_get_signal_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_property_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_property", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "class_set_property", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "class_has_method", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "method", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_method_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_integer_constant_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_has_integer_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "class_get_integer_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "class_has_enum", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_enum_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_enum_constants", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "enum", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "class_get_integer_constant_enum", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "no_inheritance", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_class_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "StringName" + } + ] + } + ] + }, + { + "name": "CodeEdit", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "TextEdit", + "api_type": "core", + "enums": [ + { + "name": "CodeCompletionKind", + "values": [ + { + "name": "KIND_CLASS", + "value": 0 + }, + { + "name": "KIND_FUNCTION", + "value": 1 + }, + { + "name": "KIND_SIGNAL", + "value": 2 + }, + { + "name": "KIND_VARIABLE", + "value": 3 + }, + { + "name": "KIND_MEMBER", + "value": 4 + }, + { + "name": "KIND_ENUM", + "value": 5 + }, + { + "name": "KIND_CONSTANT", + "value": 6 + }, + { + "name": "KIND_NODE_PATH", + "value": 7 + }, + { + "name": "KIND_FILE_PATH", + "value": 8 + }, + { + "name": "KIND_PLAIN_TEXT", + "value": 9 + } + ] + } + ], + "methods": [ + { + "name": "_confirm_code_completion", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "replace", + "type": "bool" + } + ] + }, + { + "name": "_request_code_completion", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "force", + "type": "bool" + } + ] + }, + { + "name": "_filter_code_completion_candidates", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "candidates", + "type": "Array" + } + ] + }, + { + "name": "set_indent_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_indent_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_indent_using_spaces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_spaces", + "type": "bool" + } + ] + }, + { + "name": "is_indent_using_spaces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_indent_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_auto_indent_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_indent_prefixes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "prefixes", + "type": "Array" + } + ] + }, + { + "name": "get_auto_indent_prefixes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "do_indent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "do_unindent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "indent_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "unindent_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_auto_brace_completion_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_auto_brace_completion_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_highlight_matching_braces_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_highlight_matching_braces_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "add_auto_brace_completion_pair", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "start_key", + "type": "String" + }, + { + "name": "end_key", + "type": "String" + } + ] + }, + { + "name": "set_auto_brace_completion_pairs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pairs", + "type": "Dictionary" + } + ] + }, + { + "name": "get_auto_brace_completion_pairs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "has_auto_brace_completion_open_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "open_key", + "type": "String" + } + ] + }, + { + "name": "has_auto_brace_completion_close_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "close_key", + "type": "String" + } + ] + }, + { + "name": "get_auto_brace_completion_close_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "open_key", + "type": "String" + } + ] + }, + { + "name": "set_draw_breakpoints_gutter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_breakpoints_gutter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_bookmarks_gutter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_bookmarks_gutter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_executing_lines_gutter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_executing_lines_gutter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_line_as_breakpoint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "breakpointed", + "type": "bool" + } + ] + }, + { + "name": "is_line_breakpointed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_breakpointed_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_breakpointed_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_line_as_bookmarked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "bookmarked", + "type": "bool" + } + ] + }, + { + "name": "is_line_bookmarked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_bookmarked_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_bookmarked_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_line_as_executing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "executing", + "type": "bool" + } + ] + }, + { + "name": "is_line_executing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_executing_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_executing_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_draw_line_numbers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_draw_line_numbers_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_line_numbers_zero_padded", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_line_numbers_zero_padded", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_fold_gutter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_fold_gutter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_line_folding_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_line_folding_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "can_fold_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "fold_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "unfold_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "fold_all_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "unfold_all_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "toggle_foldable_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_line_folded", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_folded_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_string_delimiter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "start_key", + "type": "String" + }, + { + "name": "end_key", + "type": "String" + }, + { + "name": "line_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_string_delimiter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "start_key", + "type": "String" + } + ] + }, + { + "name": "has_string_delimiter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "start_key", + "type": "String" + } + ] + }, + { + "name": "set_string_delimiters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "string_delimiters", + "type": "Array" + } + ] + }, + { + "name": "clear_string_delimiters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_string_delimiters", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "is_in_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "add_comment_delimiter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "start_key", + "type": "String" + }, + { + "name": "end_key", + "type": "String" + }, + { + "name": "line_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_comment_delimiter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "start_key", + "type": "String" + } + ] + }, + { + "name": "has_comment_delimiter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "start_key", + "type": "String" + } + ] + }, + { + "name": "set_comment_delimiters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "comment_delimiters", + "type": "Array" + } + ] + }, + { + "name": "clear_comment_delimiters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_comment_delimiters", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "is_in_comment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_delimiter_start_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "delimiter_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_delimiter_end_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "delimiter_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_delimiter_start_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_delimiter_end_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_code_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "code_hint", + "type": "String" + } + ] + }, + { + "name": "set_code_hint_draw_below", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "draw_below", + "type": "bool" + } + ] + }, + { + "name": "get_text_for_code_completion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "request_code_completion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133278119, + "arguments": [ + { + "name": "force", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_code_completion_option", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626862, + "arguments": [ + { + "name": "type", + "type": "enum::CodeEdit.CodeCompletionKind" + }, + { + "name": "display_text", + "type": "String" + }, + { + "name": "insert_text", + "type": "String" + }, + { + "name": "text_color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "icon", + "type": "Resource", + "default_value": "null" + }, + { + "name": "value", + "type": "Variant", + "default_value": "0" + } + ] + }, + { + "name": "update_code_completion_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "bool" + } + ] + }, + { + "name": "get_code_completion_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_code_completion_option", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_code_completion_selected_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_code_completion_selected_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "confirm_code_completion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133278119, + "arguments": [ + { + "name": "replace", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "cancel_code_completion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_code_completion_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_code_completion_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_code_completion_prefixes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "prefixes", + "type": "Array" + } + ] + }, + { + "name": "get_code_comletion_prefixes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_line_length_guidelines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "guideline_columns", + "type": "Array" + } + ] + }, + { + "name": "get_line_length_guidelines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_symbol_lookup_on_click_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_symbol_lookup_on_click_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_text_for_symbol_lookup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "set_symbol_lookup_word_as_valid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "valid", + "type": "bool" + } + ] + } + ], + "signals": [ + { + "name": "breakpoint_toggled", + "arguments": [ + { + "name": "line", + "type": "int" + } + ] + }, + { + "name": "code_completion_requested" + }, + { + "name": "symbol_lookup", + "arguments": [ + { + "name": "symbol", + "type": "String" + }, + { + "name": "line", + "type": "int" + }, + { + "name": "column", + "type": "int" + } + ] + }, + { + "name": "symbol_validate", + "arguments": [ + { + "name": "symbol", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "symbol_lookup_on_click", + "setter": "set_symbol_lookup_on_click_enabled", + "getter": "is_symbol_lookup_on_click_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "line_folding", + "setter": "set_line_folding_enabled", + "getter": "is_line_folding_enabled", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "line_length_guidelines", + "setter": "set_line_length_guidelines", + "getter": "get_line_length_guidelines", + "index": -1 + }, + { + "type": "bool", + "name": "gutters_draw_breakpoints_gutter", + "setter": "set_draw_breakpoints_gutter", + "getter": "is_drawing_breakpoints_gutter", + "index": -1 + }, + { + "type": "bool", + "name": "gutters_draw_bookmarks", + "setter": "set_draw_bookmarks_gutter", + "getter": "is_drawing_bookmarks_gutter", + "index": -1 + }, + { + "type": "bool", + "name": "gutters_draw_executing_lines", + "setter": "set_draw_executing_lines_gutter", + "getter": "is_drawing_executing_lines_gutter", + "index": -1 + }, + { + "type": "bool", + "name": "gutters_draw_line_numbers", + "setter": "set_draw_line_numbers", + "getter": "is_draw_line_numbers_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "gutters_zero_pad_line_numbers", + "setter": "set_line_numbers_zero_padded", + "getter": "is_line_numbers_zero_padded", + "index": -1 + }, + { + "type": "bool", + "name": "gutters_draw_fold_gutter", + "setter": "set_draw_fold_gutter", + "getter": "is_drawing_fold_gutter", + "index": -1 + }, + { + "type": "PackedStringArray", + "name": "delimiter_strings", + "setter": "set_string_delimiters", + "getter": "get_string_delimiters", + "index": -1 + }, + { + "type": "PackedStringArray", + "name": "delimiter_comments", + "setter": "set_comment_delimiters", + "getter": "get_comment_delimiters", + "index": -1 + }, + { + "type": "bool", + "name": "code_completion_enabled", + "setter": "set_code_completion_enabled", + "getter": "is_code_completion_enabled", + "index": -1 + }, + { + "type": "PackedStringArray", + "name": "code_completion_prefixes", + "setter": "set_code_completion_prefixes", + "getter": "get_code_comletion_prefixes", + "index": -1 + }, + { + "type": "int", + "name": "indent_size", + "setter": "set_indent_size", + "getter": "get_indent_size", + "index": -1 + }, + { + "type": "bool", + "name": "indent_use_spaces", + "setter": "set_indent_using_spaces", + "getter": "is_indent_using_spaces", + "index": -1 + }, + { + "type": "bool", + "name": "indent_automatic", + "setter": "set_auto_indent_enabled", + "getter": "is_auto_indent_enabled", + "index": -1 + }, + { + "type": "PackedStringArray", + "name": "indent_automatic_prefixes", + "setter": "set_auto_indent_prefixes", + "getter": "get_auto_indent_prefixes", + "index": -1 + }, + { + "type": "bool", + "name": "auto_brace_completion_enabled", + "setter": "set_auto_brace_completion_enabled", + "getter": "is_auto_brace_completion_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "auto_brace_completion_highlight_matching", + "setter": "set_highlight_matching_braces_enabled", + "getter": "is_highlight_matching_braces_enabled", + "index": -1 + }, + { + "type": "Dictionary", + "name": "auto_brace_completion_pairs", + "setter": "set_auto_brace_completion_pairs", + "getter": "get_auto_brace_completion_pairs", + "index": -1 + } + ] + }, + { + "name": "CodeHighlighter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SyntaxHighlighter", + "api_type": "core", + "methods": [ + { + "name": "add_keyword_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "keyword", + "type": "String" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "remove_keyword_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keyword", + "type": "String" + } + ] + }, + { + "name": "has_keyword_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "keyword", + "type": "String" + } + ] + }, + { + "name": "get_keyword_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "keyword", + "type": "String" + } + ] + }, + { + "name": "set_keyword_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keywords", + "type": "Dictionary" + } + ] + }, + { + "name": "clear_keyword_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_keyword_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "add_member_keyword_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "member_keyword", + "type": "String" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "remove_member_keyword_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "member_keyword", + "type": "String" + } + ] + }, + { + "name": "has_member_keyword_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "member_keyword", + "type": "String" + } + ] + }, + { + "name": "get_member_keyword_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "member_keyword", + "type": "String" + } + ] + }, + { + "name": "set_member_keyword_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "member_keyword", + "type": "Dictionary" + } + ] + }, + { + "name": "clear_member_keyword_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_member_keyword_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "add_color_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "start_key", + "type": "String" + }, + { + "name": "end_key", + "type": "String" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "line_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_color_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "start_key", + "type": "String" + } + ] + }, + { + "name": "has_color_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "start_key", + "type": "String" + } + ] + }, + { + "name": "set_color_regions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color_regions", + "type": "Dictionary" + } + ] + }, + { + "name": "clear_color_regions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_color_regions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_function_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_function_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_number_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_number_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_symbol_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_symbol_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_member_variable_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_member_variable_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "number_color", + "setter": "set_number_color", + "getter": "get_number_color", + "index": -1 + }, + { + "type": "Color", + "name": "symbol_color", + "setter": "set_symbol_color", + "getter": "get_symbol_color", + "index": -1 + }, + { + "type": "Color", + "name": "function_color", + "setter": "set_function_color", + "getter": "get_function_color", + "index": -1 + }, + { + "type": "Color", + "name": "member_variable_color", + "setter": "set_member_variable_color", + "getter": "get_member_variable_color", + "index": -1 + }, + { + "type": "Dictionary", + "name": "keyword_colors", + "setter": "set_keyword_colors", + "getter": "get_keyword_colors", + "index": -1 + }, + { + "type": "Dictionary", + "name": "member_keyword_colors", + "setter": "set_member_keyword_colors", + "getter": "get_member_keyword_colors", + "index": -1 + }, + { + "type": "Dictionary", + "name": "color_regions", + "setter": "set_color_regions", + "getter": "get_color_regions", + "index": -1 + } + ] + }, + { + "name": "CollisionObject2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "DisableMode", + "values": [ + { + "name": "DISABLE_MODE_REMOVE", + "value": 0 + }, + { + "name": "DISABLE_MODE_MAKE_STATIC", + "value": 1 + }, + { + "name": "DISABLE_MODE_KEEP_ACTIVE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_input_event", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "viewport", + "type": "Viewport" + }, + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_disable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CollisionObject2D.DisableMode" + } + ] + }, + { + "name": "get_disable_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CollisionObject2D.DisableMode" + } + }, + { + "name": "set_pickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_pickable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "create_shape_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "owner", + "type": "Object" + } + ] + }, + { + "name": "remove_shape_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_shape_owners", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "shape_owner_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "shape_owner_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_get_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_shape_owner_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_set_one_way_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_shape_owner_one_way_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_set_one_way_collision_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_shape_owner_one_way_collision_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_add_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape", + "type": "Shape2D" + } + ] + }, + { + "name": "shape_owner_get_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Shape2D" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shape_owner_get_shape_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shape_owner_remove_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shape_owner_clear_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_find_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "shape_index", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "input_event", + "arguments": [ + { + "name": "viewport", + "type": "Node" + }, + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "mouse_entered" + }, + { + "name": "mouse_exited" + }, + { + "name": "mouse_shape_entered", + "arguments": [ + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "mouse_shape_exited", + "arguments": [ + { + "name": "shape_idx", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "disable_mode", + "setter": "set_disable_mode", + "getter": "get_disable_mode", + "index": -1 + }, + { + "type": "int", + "name": "collision_layer", + "setter": "set_collision_layer", + "getter": "get_collision_layer", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "bool", + "name": "input_pickable", + "setter": "set_pickable", + "getter": "is_pickable", + "index": -1 + } + ] + }, + { + "name": "CollisionObject3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node3D", + "api_type": "core", + "enums": [ + { + "name": "DisableMode", + "values": [ + { + "name": "DISABLE_MODE_REMOVE", + "value": 0 + }, + { + "name": "DISABLE_MODE_MAKE_STATIC", + "value": 1 + }, + { + "name": "DISABLE_MODE_KEEP_ACTIVE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_input_event", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "position", + "type": "Vector3" + }, + { + "name": "normal", + "type": "Vector3" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_disable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::CollisionObject3D.DisableMode" + } + ] + }, + { + "name": "get_disable_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CollisionObject3D.DisableMode" + } + }, + { + "name": "set_ray_pickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ray_pickable", + "type": "bool" + } + ] + }, + { + "name": "is_ray_pickable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_capture_input_on_drag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_capture_input_on_drag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "create_shape_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "owner", + "type": "Object" + } + ] + }, + { + "name": "remove_shape_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_shape_owners", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "shape_owner_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "shape_owner_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_get_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_shape_owner_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_add_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape", + "type": "Shape3D" + } + ] + }, + { + "name": "shape_owner_get_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_owner_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Shape3D" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shape_owner_get_shape_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shape_owner_remove_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + }, + { + "name": "shape_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shape_owner_clear_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "owner_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shape_find_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "shape_index", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "input_event", + "arguments": [ + { + "name": "camera", + "type": "Node" + }, + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "position", + "type": "Vector3" + }, + { + "name": "normal", + "type": "Vector3" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "mouse_entered" + }, + { + "name": "mouse_exited" + } + ], + "properties": [ + { + "type": "int", + "name": "disable_mode", + "setter": "set_disable_mode", + "getter": "get_disable_mode", + "index": -1 + }, + { + "type": "int", + "name": "collision_layer", + "setter": "set_collision_layer", + "getter": "get_collision_layer", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "bool", + "name": "input_ray_pickable", + "setter": "set_ray_pickable", + "getter": "is_ray_pickable", + "index": -1 + }, + { + "type": "bool", + "name": "input_capture_on_drag", + "setter": "set_capture_input_on_drag", + "getter": "get_capture_input_on_drag", + "index": -1 + } + ] + }, + { + "name": "CollisionPolygon2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "BuildMode", + "values": [ + { + "name": "BUILD_SOLIDS", + "value": 0 + }, + { + "name": "BUILD_SEGMENTS", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_build_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "build_mode", + "type": "enum::CollisionPolygon2D.BuildMode" + } + ] + }, + { + "name": "get_build_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CollisionPolygon2D.BuildMode" + } + }, + { + "name": "set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_one_way_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_one_way_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_one_way_collision_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_one_way_collision_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "build_mode", + "setter": "set_build_mode", + "getter": "get_build_mode", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "polygon", + "setter": "set_polygon", + "getter": "get_polygon", + "index": -1 + }, + { + "type": "bool", + "name": "disabled", + "setter": "set_disabled", + "getter": "is_disabled", + "index": -1 + }, + { + "type": "bool", + "name": "one_way_collision", + "setter": "set_one_way_collision", + "getter": "is_one_way_collision_enabled", + "index": -1 + }, + { + "type": "float", + "name": "one_way_collision_margin", + "setter": "set_one_way_collision_margin", + "getter": "get_one_way_collision_margin", + "index": -1 + } + ] + }, + { + "name": "CollisionPolygon3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "depth", + "setter": "set_depth", + "getter": "get_depth", + "index": -1 + }, + { + "type": "bool", + "name": "disabled", + "setter": "set_disabled", + "getter": "is_disabled", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "polygon", + "setter": "set_polygon", + "getter": "get_polygon", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + } + ] + }, + { + "name": "CollisionShape2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Shape2D" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shape2D" + } + }, + { + "name": "set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_one_way_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_one_way_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_one_way_collision_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_one_way_collision_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Shape2D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "bool", + "name": "disabled", + "setter": "set_disabled", + "getter": "is_disabled", + "index": -1 + }, + { + "type": "bool", + "name": "one_way_collision", + "setter": "set_one_way_collision", + "getter": "is_one_way_collision_enabled", + "index": -1 + }, + { + "type": "float", + "name": "one_way_collision_margin", + "setter": "set_one_way_collision_margin", + "getter": "get_one_way_collision_margin", + "index": -1 + } + ] + }, + { + "name": "CollisionShape3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "resource_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Shape3D" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shape3D" + } + }, + { + "name": "set_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "make_convex_from_siblings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "Shape3D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "bool", + "name": "disabled", + "setter": "set_disabled", + "getter": "is_disabled", + "index": -1 + } + ] + }, + { + "name": "ColorPicker", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "BoxContainer", + "api_type": "core", + "enums": [ + { + "name": "PickerShapeType", + "values": [ + { + "name": "SHAPE_HSV_RECTANGLE", + "value": 0 + }, + { + "name": "SHAPE_HSV_WHEEL", + "value": 1 + }, + { + "name": "SHAPE_VHS_CIRCLE", + "value": 2 + }, + { + "name": "SHAPE_OKHSL_CIRCLE", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_pick_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_pick_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_hsv_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_hsv_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_raw_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_raw_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_deferred_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "bool" + } + ] + }, + { + "name": "is_deferred_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_edit_alpha", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "show", + "type": "bool" + } + ] + }, + { + "name": "is_editing_alpha", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_presets_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "are_presets_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_presets_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "are_presets_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "add_preset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "erase_preset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_presets", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedColorArray" + } + }, + { + "name": "set_picker_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "picker", + "type": "enum::ColorPicker.PickerShapeType" + } + ] + }, + { + "name": "get_picker_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ColorPicker.PickerShapeType" + } + } + ], + "signals": [ + { + "name": "color_changed", + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "preset_added", + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "preset_removed", + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_pick_color", + "getter": "get_pick_color", + "index": -1 + }, + { + "type": "bool", + "name": "edit_alpha", + "setter": "set_edit_alpha", + "getter": "is_editing_alpha", + "index": -1 + }, + { + "type": "bool", + "name": "hsv_mode", + "setter": "set_hsv_mode", + "getter": "is_hsv_mode", + "index": -1 + }, + { + "type": "bool", + "name": "raw_mode", + "setter": "set_raw_mode", + "getter": "is_raw_mode", + "index": -1 + }, + { + "type": "bool", + "name": "deferred_mode", + "setter": "set_deferred_mode", + "getter": "is_deferred_mode", + "index": -1 + }, + { + "type": "int", + "name": "picker_shape", + "setter": "set_picker_shape", + "getter": "get_picker_shape", + "index": -1 + }, + { + "type": "bool", + "name": "presets_enabled", + "setter": "set_presets_enabled", + "getter": "are_presets_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "presets_visible", + "setter": "set_presets_visible", + "getter": "are_presets_visible", + "index": -1 + } + ] + }, + { + "name": "ColorPickerButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Button", + "api_type": "core", + "methods": [ + { + "name": "set_pick_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_pick_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "get_picker", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "ColorPicker" + } + }, + { + "name": "get_popup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PopupPanel" + } + }, + { + "name": "set_edit_alpha", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "show", + "type": "bool" + } + ] + }, + { + "name": "is_editing_alpha", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "color_changed", + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "popup_closed" + }, + { + "name": "picker_created" + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_pick_color", + "getter": "get_pick_color", + "index": -1 + }, + { + "type": "bool", + "name": "edit_alpha", + "setter": "set_edit_alpha", + "getter": "is_editing_alpha", + "index": -1 + } + ] + }, + { + "name": "ColorRect", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "methods": [ + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + } + ] + }, + { + "name": "CompressedCubemap", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "CompressedTextureLayered", + "api_type": "core" + }, + { + "name": "CompressedCubemapArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "CompressedTextureLayered", + "api_type": "core" + }, + { + "name": "CompressedTexture2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_load_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "load_path", + "setter": "load", + "getter": "get_load_path", + "index": -1 + } + ] + }, + { + "name": "CompressedTexture2DArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "CompressedTextureLayered", + "api_type": "core" + }, + { + "name": "CompressedTexture3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture3D", + "api_type": "core", + "methods": [ + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_load_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "load_path", + "setter": "load", + "getter": "get_load_path", + "index": -1 + } + ] + }, + { + "name": "CompressedTextureLayered", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "TextureLayered", + "api_type": "core", + "methods": [ + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_load_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "load_path", + "setter": "load", + "getter": "get_load_path", + "index": -1 + } + ] + }, + { + "name": "ConcavePolygonShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + } + ], + "properties": [ + { + "type": "PackedVector2Array", + "name": "segments", + "setter": "set_segments", + "getter": "get_segments", + "index": -1 + } + ] + }, + { + "name": "ConcavePolygonShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "faces", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "get_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "set_backface_collision_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_backface_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "PackedVector3Array", + "name": "data", + "setter": "set_faces", + "getter": "get_faces", + "index": -1 + }, + { + "type": "bool", + "name": "backface_collision", + "setter": "set_backface_collision_enabled", + "getter": "is_backface_collision_enabled", + "index": -1 + } + ] + }, + { + "name": "ConeTwistJoint3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint3D", + "api_type": "core", + "enums": [ + { + "name": "Param", + "values": [ + { + "name": "PARAM_SWING_SPAN", + "value": 0 + }, + { + "name": "PARAM_TWIST_SPAN", + "value": 1 + }, + { + "name": "PARAM_BIAS", + "value": 2 + }, + { + "name": "PARAM_SOFTNESS", + "value": 3 + }, + { + "name": "PARAM_RELAXATION", + "value": 4 + }, + { + "name": "PARAM_MAX", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::ConeTwistJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::ConeTwistJoint3D.Param" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "swing_span", + "setter": "_set_swing_span", + "getter": "_get_swing_span", + "index": -1 + }, + { + "type": "float", + "name": "twist_span", + "setter": "_set_twist_span", + "getter": "_get_twist_span", + "index": -1 + }, + { + "type": "float", + "name": "bias", + "setter": "set_param", + "getter": "get_param", + "index": 2 + }, + { + "type": "float", + "name": "softness", + "setter": "set_param", + "getter": "get_param", + "index": 3 + }, + { + "type": "float", + "name": "relaxation", + "setter": "set_param", + "getter": "get_param", + "index": 4 + } + ] + }, + { + "name": "ConfigFile", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "section", + "type": "String" + }, + { + "name": "key", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "section", + "type": "String" + }, + { + "name": "key", + "type": "String" + }, + { + "name": "default", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "has_section", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "section", + "type": "String" + } + ] + }, + { + "name": "has_section_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "section", + "type": "String" + }, + { + "name": "key", + "type": "String" + } + ] + }, + { + "name": "get_sections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_section_keys", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "section", + "type": "String" + } + ] + }, + { + "name": "erase_section", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "section", + "type": "String" + } + ] + }, + { + "name": "erase_section_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "section", + "type": "String" + }, + { + "name": "key", + "type": "String" + } + ] + }, + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "parse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "data", + "type": "String" + } + ] + }, + { + "name": "save", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "load_encrypted", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "key", + "type": "PackedByteArray" + } + ] + }, + { + "name": "load_encrypted_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "password", + "type": "String" + } + ] + }, + { + "name": "save_encrypted", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "key", + "type": "PackedByteArray" + } + ] + }, + { + "name": "save_encrypted_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "password", + "type": "String" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "ConfirmationDialog", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "AcceptDialog", + "api_type": "core", + "methods": [ + { + "name": "get_cancel_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Button" + } + } + ] + }, + { + "name": "Container", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_PRE_SORT_CHILDREN", + "value": 50 + }, + { + "name": "NOTIFICATION_SORT_CHILDREN", + "value": 51 + } + ], + "methods": [ + { + "name": "_get_allowed_size_flags_horizontal", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "_get_allowed_size_flags_vertical", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "queue_sort", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "fit_child_in_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "child", + "type": "Control" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + } + ], + "signals": [ + { + "name": "pre_sort_children" + }, + { + "name": "sort_children" + } + ] + }, + { + "name": "Control", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CanvasItem", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_RESIZED", + "value": 40 + }, + { + "name": "NOTIFICATION_MOUSE_ENTER", + "value": 41 + }, + { + "name": "NOTIFICATION_MOUSE_EXIT", + "value": 42 + }, + { + "name": "NOTIFICATION_FOCUS_ENTER", + "value": 43 + }, + { + "name": "NOTIFICATION_FOCUS_EXIT", + "value": 44 + }, + { + "name": "NOTIFICATION_THEME_CHANGED", + "value": 45 + }, + { + "name": "NOTIFICATION_SCROLL_BEGIN", + "value": 47 + }, + { + "name": "NOTIFICATION_SCROLL_END", + "value": 48 + }, + { + "name": "NOTIFICATION_LAYOUT_DIRECTION_CHANGED", + "value": 49 + } + ], + "enums": [ + { + "name": "FocusMode", + "values": [ + { + "name": "FOCUS_NONE", + "value": 0 + }, + { + "name": "FOCUS_CLICK", + "value": 1 + }, + { + "name": "FOCUS_ALL", + "value": 2 + } + ] + }, + { + "name": "CursorShape", + "values": [ + { + "name": "CURSOR_ARROW", + "value": 0 + }, + { + "name": "CURSOR_IBEAM", + "value": 1 + }, + { + "name": "CURSOR_POINTING_HAND", + "value": 2 + }, + { + "name": "CURSOR_CROSS", + "value": 3 + }, + { + "name": "CURSOR_WAIT", + "value": 4 + }, + { + "name": "CURSOR_BUSY", + "value": 5 + }, + { + "name": "CURSOR_DRAG", + "value": 6 + }, + { + "name": "CURSOR_CAN_DROP", + "value": 7 + }, + { + "name": "CURSOR_FORBIDDEN", + "value": 8 + }, + { + "name": "CURSOR_VSIZE", + "value": 9 + }, + { + "name": "CURSOR_HSIZE", + "value": 10 + }, + { + "name": "CURSOR_BDIAGSIZE", + "value": 11 + }, + { + "name": "CURSOR_FDIAGSIZE", + "value": 12 + }, + { + "name": "CURSOR_MOVE", + "value": 13 + }, + { + "name": "CURSOR_VSPLIT", + "value": 14 + }, + { + "name": "CURSOR_HSPLIT", + "value": 15 + }, + { + "name": "CURSOR_HELP", + "value": 16 + } + ] + }, + { + "name": "LayoutPreset", + "values": [ + { + "name": "PRESET_TOP_LEFT", + "value": 0 + }, + { + "name": "PRESET_TOP_RIGHT", + "value": 1 + }, + { + "name": "PRESET_BOTTOM_LEFT", + "value": 2 + }, + { + "name": "PRESET_BOTTOM_RIGHT", + "value": 3 + }, + { + "name": "PRESET_CENTER_LEFT", + "value": 4 + }, + { + "name": "PRESET_CENTER_TOP", + "value": 5 + }, + { + "name": "PRESET_CENTER_RIGHT", + "value": 6 + }, + { + "name": "PRESET_CENTER_BOTTOM", + "value": 7 + }, + { + "name": "PRESET_CENTER", + "value": 8 + }, + { + "name": "PRESET_LEFT_WIDE", + "value": 9 + }, + { + "name": "PRESET_TOP_WIDE", + "value": 10 + }, + { + "name": "PRESET_RIGHT_WIDE", + "value": 11 + }, + { + "name": "PRESET_BOTTOM_WIDE", + "value": 12 + }, + { + "name": "PRESET_VCENTER_WIDE", + "value": 13 + }, + { + "name": "PRESET_HCENTER_WIDE", + "value": 14 + }, + { + "name": "PRESET_WIDE", + "value": 15 + } + ] + }, + { + "name": "LayoutPresetMode", + "values": [ + { + "name": "PRESET_MODE_MINSIZE", + "value": 0 + }, + { + "name": "PRESET_MODE_KEEP_WIDTH", + "value": 1 + }, + { + "name": "PRESET_MODE_KEEP_HEIGHT", + "value": 2 + }, + { + "name": "PRESET_MODE_KEEP_SIZE", + "value": 3 + } + ] + }, + { + "name": "SizeFlags", + "values": [ + { + "name": "SIZE_SHRINK_BEGIN", + "value": 0 + }, + { + "name": "SIZE_FILL", + "value": 1 + }, + { + "name": "SIZE_EXPAND", + "value": 2 + }, + { + "name": "SIZE_EXPAND_FILL", + "value": 3 + }, + { + "name": "SIZE_SHRINK_CENTER", + "value": 4 + }, + { + "name": "SIZE_SHRINK_END", + "value": 8 + } + ] + }, + { + "name": "MouseFilter", + "values": [ + { + "name": "MOUSE_FILTER_STOP", + "value": 0 + }, + { + "name": "MOUSE_FILTER_PASS", + "value": 1 + }, + { + "name": "MOUSE_FILTER_IGNORE", + "value": 2 + } + ] + }, + { + "name": "GrowDirection", + "values": [ + { + "name": "GROW_DIRECTION_BEGIN", + "value": 0 + }, + { + "name": "GROW_DIRECTION_END", + "value": 1 + }, + { + "name": "GROW_DIRECTION_BOTH", + "value": 2 + } + ] + }, + { + "name": "Anchor", + "values": [ + { + "name": "ANCHOR_BEGIN", + "value": 0 + }, + { + "name": "ANCHOR_END", + "value": 1 + } + ] + }, + { + "name": "LayoutDirection", + "values": [ + { + "name": "LAYOUT_DIRECTION_INHERITED", + "value": 0 + }, + { + "name": "LAYOUT_DIRECTION_LOCALE", + "value": 1 + }, + { + "name": "LAYOUT_DIRECTION_LTR", + "value": 2 + }, + { + "name": "LAYOUT_DIRECTION_RTL", + "value": 3 + } + ] + }, + { + "name": "TextDirection", + "values": [ + { + "name": "TEXT_DIRECTION_INHERITED", + "value": 3 + }, + { + "name": "TEXT_DIRECTION_AUTO", + "value": 0 + }, + { + "name": "TEXT_DIRECTION_LTR", + "value": 1 + }, + { + "name": "TEXT_DIRECTION_RTL", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_has_point", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "_structured_text_parser", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "args", + "type": "Array" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "_get_minimum_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "_get_drag_data", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "at_position", + "type": "Vector2" + } + ] + }, + { + "name": "_can_drop_data", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "at_position", + "type": "Vector2" + }, + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "_drop_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "at_position", + "type": "Vector2" + }, + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "_make_custom_tooltip", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "for_text", + "type": "String" + } + ] + }, + { + "name": "_gui_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "accept_event", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_minimum_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_combined_minimum_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_anchors_preset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "preset", + "type": "enum::Control.LayoutPreset" + }, + { + "name": "keep_offsets", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_offsets_preset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2600550837, + "arguments": [ + { + "name": "preset", + "type": "enum::Control.LayoutPreset" + }, + { + "name": "resize_mode", + "type": "enum::Control.LayoutPresetMode", + "default_value": "0" + }, + { + "name": "margin", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_anchors_and_offsets_preset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2600550837, + "arguments": [ + { + "name": "preset", + "type": "enum::Control.LayoutPreset" + }, + { + "name": "resize_mode", + "type": "enum::Control.LayoutPresetMode", + "default_value": "0" + }, + { + "name": "margin", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_anchor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + }, + { + "name": "anchor", + "type": "float", + "meta": "float" + }, + { + "name": "keep_offset", + "type": "bool", + "default_value": "false" + }, + { + "name": "push_opposite_anchor", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_anchor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + } + ] + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "offset", + "type": "enum::Side" + } + ] + }, + { + "name": "set_anchor_and_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + }, + { + "name": "anchor", + "type": "float", + "meta": "float" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + }, + { + "name": "push_opposite_anchor", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "set_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "keep_offsets", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "size", + "type": "Vector2" + }, + { + "name": "keep_offsets", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "reset_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_custom_minimum_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "set_global_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "keep_offsets", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "set_pivot_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pivot_offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_pivot_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_custom_minimum_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_parent_area_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_global_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_screen_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "get_global_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_focus_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Control.FocusMode" + } + ] + }, + { + "name": "get_focus_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.FocusMode" + } + }, + { + "name": "has_focus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "grab_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "release_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "find_prev_valid_focus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Control" + } + }, + { + "name": "find_next_valid_focus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Control" + } + }, + { + "name": "set_h_size_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_h_size_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_stretch_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_stretch_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_v_size_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_v_size_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_theme", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme", + "type": "Theme" + } + ] + }, + { + "name": "get_theme", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Theme" + } + }, + { + "name": "set_theme_type_variation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_theme_type_variation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "begin_bulk_theme_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "end_bulk_theme_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_theme_icon_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "add_theme_stylebox_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "stylebox", + "type": "StyleBox" + } + ] + }, + { + "name": "add_theme_font_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "add_theme_font_size_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_theme_color_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "add_theme_constant_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "constant", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_theme_icon_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_theme_stylebox_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_theme_font_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_theme_font_size_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_theme_color_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_theme_constant_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_theme_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "StyleBox" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Font" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_icon_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_stylebox_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_font_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_font_size_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_color_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_constant_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_default_base_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_theme_default_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Font" + } + }, + { + "name": "get_theme_default_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_parent_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Control" + } + }, + { + "name": "set_h_grow_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.GrowDirection" + } + ] + }, + { + "name": "get_h_grow_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.GrowDirection" + } + }, + { + "name": "set_v_grow_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.GrowDirection" + } + ] + }, + { + "name": "get_v_grow_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.GrowDirection" + } + }, + { + "name": "set_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tooltip", + "type": "String" + } + ] + }, + { + "name": "get_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2862547492, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "at_position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "set_default_cursor_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::Control.CursorShape" + } + ] + }, + { + "name": "get_default_cursor_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.CursorShape" + } + }, + { + "name": "get_cursor_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2862547492, + "return_value": { + "type": "enum::Control.CursorShape" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "set_focus_neighbor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + }, + { + "name": "neighbor", + "type": "NodePath" + } + ] + }, + { + "name": "get_focus_neighbor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + } + ] + }, + { + "name": "set_focus_next", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "next", + "type": "NodePath" + } + ] + }, + { + "name": "get_focus_next", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_focus_previous", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "previous", + "type": "NodePath" + } + ] + }, + { + "name": "get_focus_previous", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "force_drag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "data", + "type": "Variant" + }, + { + "name": "preview", + "type": "Control" + } + ] + }, + { + "name": "set_mouse_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "enum::Control.MouseFilter" + } + ] + }, + { + "name": "get_mouse_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.MouseFilter" + } + }, + { + "name": "set_force_pass_scroll_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force_pass_scroll_events", + "type": "bool" + } + ] + }, + { + "name": "is_force_pass_scroll_events", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_clip_contents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_clipping_contents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "grab_click_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_drag_forwarding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target", + "type": "Object" + } + ] + }, + { + "name": "set_drag_preview", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "is_drag_successful", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "warp_mouse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "update_minimum_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_layout_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.LayoutDirection" + } + ] + }, + { + "name": "get_layout_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.LayoutDirection" + } + }, + { + "name": "is_layout_rtl", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_translate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_auto_translating", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "resized" + }, + { + "name": "gui_input", + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "mouse_entered" + }, + { + "name": "mouse_exited" + }, + { + "name": "focus_entered" + }, + { + "name": "focus_exited" + }, + { + "name": "size_flags_changed" + }, + { + "name": "minimum_size_changed" + }, + { + "name": "theme_changed" + } + ], + "properties": [ + { + "type": "bool", + "name": "clip_contents", + "setter": "set_clip_contents", + "getter": "is_clipping_contents", + "index": -1 + }, + { + "type": "Vector2", + "name": "minimum_size", + "setter": "set_custom_minimum_size", + "getter": "get_custom_minimum_size", + "index": -1 + }, + { + "type": "int", + "name": "layout_direction", + "setter": "set_layout_direction", + "getter": "get_layout_direction", + "index": -1 + }, + { + "type": "int", + "name": "layout_mode", + "setter": "_set_layout_mode", + "getter": "_get_layout_mode", + "index": -1 + }, + { + "type": "int", + "name": "anchors_preset", + "setter": "_set_anchors_layout_preset", + "getter": "_get_anchors_layout_preset", + "index": -1 + }, + { + "type": "float", + "name": "anchor_left", + "setter": "_set_anchor", + "getter": "get_anchor", + "index": 0 + }, + { + "type": "float", + "name": "anchor_top", + "setter": "_set_anchor", + "getter": "get_anchor", + "index": 1 + }, + { + "type": "float", + "name": "anchor_right", + "setter": "_set_anchor", + "getter": "get_anchor", + "index": 2 + }, + { + "type": "float", + "name": "anchor_bottom", + "setter": "_set_anchor", + "getter": "get_anchor", + "index": 3 + }, + { + "type": "int", + "name": "offset_left", + "setter": "set_offset", + "getter": "get_offset", + "index": 0 + }, + { + "type": "int", + "name": "offset_top", + "setter": "set_offset", + "getter": "get_offset", + "index": 1 + }, + { + "type": "int", + "name": "offset_right", + "setter": "set_offset", + "getter": "get_offset", + "index": 2 + }, + { + "type": "int", + "name": "offset_bottom", + "setter": "set_offset", + "getter": "get_offset", + "index": 3 + }, + { + "type": "int", + "name": "grow_horizontal", + "setter": "set_h_grow_direction", + "getter": "get_h_grow_direction", + "index": -1 + }, + { + "type": "int", + "name": "grow_vertical", + "setter": "set_v_grow_direction", + "getter": "get_v_grow_direction", + "index": -1 + }, + { + "type": "Vector2", + "name": "size", + "setter": "_set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "Vector2", + "name": "position", + "setter": "_set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "Vector2", + "name": "global_position", + "setter": "_set_global_position", + "getter": "get_global_position", + "index": -1 + }, + { + "type": "float", + "name": "rotation", + "setter": "set_rotation", + "getter": "get_rotation", + "index": -1 + }, + { + "type": "Vector2", + "name": "scale", + "setter": "set_scale", + "getter": "get_scale", + "index": -1 + }, + { + "type": "Vector2", + "name": "pivot_offset", + "setter": "set_pivot_offset", + "getter": "get_pivot_offset", + "index": -1 + }, + { + "type": "int", + "name": "size_flags_horizontal", + "setter": "set_h_size_flags", + "getter": "get_h_size_flags", + "index": -1 + }, + { + "type": "int", + "name": "size_flags_vertical", + "setter": "set_v_size_flags", + "getter": "get_v_size_flags", + "index": -1 + }, + { + "type": "float", + "name": "size_flags_stretch_ratio", + "setter": "set_stretch_ratio", + "getter": "get_stretch_ratio", + "index": -1 + }, + { + "type": "bool", + "name": "auto_translate", + "setter": "set_auto_translate", + "getter": "is_auto_translating", + "index": -1 + }, + { + "type": "String", + "name": "hint_tooltip", + "setter": "set_tooltip", + "getter": "_get_tooltip", + "index": -1 + }, + { + "type": "NodePath", + "name": "focus_neighbor_left", + "setter": "set_focus_neighbor", + "getter": "get_focus_neighbor", + "index": 0 + }, + { + "type": "NodePath", + "name": "focus_neighbor_top", + "setter": "set_focus_neighbor", + "getter": "get_focus_neighbor", + "index": 1 + }, + { + "type": "NodePath", + "name": "focus_neighbor_right", + "setter": "set_focus_neighbor", + "getter": "get_focus_neighbor", + "index": 2 + }, + { + "type": "NodePath", + "name": "focus_neighbor_bottom", + "setter": "set_focus_neighbor", + "getter": "get_focus_neighbor", + "index": 3 + }, + { + "type": "NodePath", + "name": "focus_next", + "setter": "set_focus_next", + "getter": "get_focus_next", + "index": -1 + }, + { + "type": "NodePath", + "name": "focus_previous", + "setter": "set_focus_previous", + "getter": "get_focus_previous", + "index": -1 + }, + { + "type": "int", + "name": "focus_mode", + "setter": "set_focus_mode", + "getter": "get_focus_mode", + "index": -1 + }, + { + "type": "int", + "name": "mouse_filter", + "setter": "set_mouse_filter", + "getter": "get_mouse_filter", + "index": -1 + }, + { + "type": "bool", + "name": "mouse_force_pass_scroll_events", + "setter": "set_force_pass_scroll_events", + "getter": "is_force_pass_scroll_events", + "index": -1 + }, + { + "type": "int", + "name": "mouse_default_cursor_shape", + "setter": "set_default_cursor_shape", + "getter": "get_default_cursor_shape", + "index": -1 + }, + { + "type": "Theme", + "name": "theme", + "setter": "set_theme", + "getter": "get_theme", + "index": -1 + }, + { + "type": "String", + "name": "theme_type_variation", + "setter": "set_theme_type_variation", + "getter": "get_theme_type_variation", + "index": -1 + } + ] + }, + { + "name": "ConvexPolygonShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_point_cloud", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point_cloud", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "set_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + } + ], + "properties": [ + { + "type": "PackedVector2Array", + "name": "points", + "setter": "set_points", + "getter": "get_points", + "index": -1 + } + ] + }, + { + "name": "ConvexPolygonShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "points", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "get_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + } + ], + "properties": [ + { + "type": "Array", + "name": "points", + "setter": "set_points", + "getter": "get_points", + "index": -1 + } + ] + }, + { + "name": "Crypto", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "generate_random_bytes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "generate_rsa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "CryptoKey" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "generate_self_signed_certificate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1610309760, + "return_value": { + "type": "X509Certificate" + }, + "arguments": [ + { + "name": "key", + "type": "CryptoKey" + }, + { + "name": "issuer_name", + "type": "String", + "default_value": "\"CN=myserver,O=myorganisation,C=IT\"" + }, + { + "name": "not_before", + "type": "String", + "default_value": "\"20140101000000\"" + }, + { + "name": "not_after", + "type": "String", + "default_value": "\"20340101000000\"" + } + ] + }, + { + "name": "sign", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "hash_type", + "type": "enum::HashingContext.HashType" + }, + { + "name": "hash", + "type": "PackedByteArray" + }, + { + "name": "key", + "type": "CryptoKey" + } + ] + }, + { + "name": "verify", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "hash_type", + "type": "enum::HashingContext.HashType" + }, + { + "name": "hash", + "type": "PackedByteArray" + }, + { + "name": "signature", + "type": "PackedByteArray" + }, + { + "name": "key", + "type": "CryptoKey" + } + ] + }, + { + "name": "encrypt", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "key", + "type": "CryptoKey" + }, + { + "name": "plaintext", + "type": "PackedByteArray" + } + ] + }, + { + "name": "decrypt", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "key", + "type": "CryptoKey" + }, + { + "name": "ciphertext", + "type": "PackedByteArray" + } + ] + }, + { + "name": "hmac_digest", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "hash_type", + "type": "enum::HashingContext.HashType" + }, + { + "name": "key", + "type": "PackedByteArray" + }, + { + "name": "msg", + "type": "PackedByteArray" + } + ] + }, + { + "name": "constant_time_compare", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "trusted", + "type": "PackedByteArray" + }, + { + "name": "received", + "type": "PackedByteArray" + } + ] + } + ] + }, + { + "name": "CryptoKey", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "save", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "public_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "public_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_public_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "save_to_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "public_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "load_from_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "string_key", + "type": "String" + }, + { + "name": "public_only", + "type": "bool", + "default_value": "false" + } + ] + } + ] + }, + { + "name": "Cubemap", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "ImageTextureLayered", + "api_type": "core" + }, + { + "name": "CubemapArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "ImageTextureLayered", + "api_type": "core" + }, + { + "name": "Curve", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "TangentMode", + "values": [ + { + "name": "TANGENT_FREE", + "value": 0 + }, + { + "name": "TANGENT_LINEAR", + "value": 1 + }, + { + "name": "TANGENT_MODE_COUNT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_point_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1799894896, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "left_tangent", + "type": "float", + "meta": "float", + "default_value": "0" + }, + { + "name": "right_tangent", + "type": "float", + "meta": "float", + "default_value": "0" + }, + { + "name": "left_mode", + "type": "enum::Curve.TangentMode", + "default_value": "0" + }, + { + "name": "right_mode", + "type": "enum::Curve.TangentMode", + "default_value": "0" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "y", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_point_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "interpolate_baked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_point_left_tangent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_right_tangent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_left_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Curve.TangentMode" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_right_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Curve.TangentMode" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_left_tangent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "tangent", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_point_right_tangent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "tangent", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_point_left_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "mode", + "type": "enum::Curve.TangentMode" + } + ] + }, + { + "name": "set_point_right_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "mode", + "type": "enum::Curve.TangentMode" + } + ] + }, + { + "name": "get_min_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_min_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "min", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "clean_dupes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "bake", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_bake_resolution", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_bake_resolution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resolution", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "range_changed" + } + ], + "properties": [ + { + "type": "float", + "name": "min_value", + "setter": "set_min_value", + "getter": "get_min_value", + "index": -1 + }, + { + "type": "float", + "name": "max_value", + "setter": "set_max_value", + "getter": "get_max_value", + "index": -1 + }, + { + "type": "int", + "name": "bake_resolution", + "setter": "set_bake_resolution", + "getter": "get_bake_resolution", + "index": -1 + }, + { + "type": "Points,point_", + "name": "point_count", + "setter": "set_point_count", + "getter": "get_point_count", + "index": -1 + } + ] + }, + { + "name": "Curve2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_point_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 38931906, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "in", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + }, + { + "name": "out", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + }, + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_in", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_point_in", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_out", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_point_out", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "t", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "interpolatef", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "fofs", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_bake_interval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bake_interval", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_baked_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "interpolate_baked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + }, + { + "name": "cubic", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_baked_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "to_point", + "type": "Vector2" + } + ] + }, + { + "name": "get_closest_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "to_point", + "type": "Vector2" + } + ] + }, + { + "name": "tessellate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3957090367, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "max_stages", + "type": "int", + "meta": "int32", + "default_value": "5" + }, + { + "name": "tolerance_degrees", + "type": "float", + "meta": "float", + "default_value": "4" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "bake_interval", + "setter": "set_bake_interval", + "getter": "get_bake_interval", + "index": -1 + }, + { + "type": "Points,point_", + "name": "point_count", + "setter": "set_point_count", + "getter": "get_point_count", + "index": -1 + } + ] + }, + { + "name": "Curve3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_point_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2635598008, + "arguments": [ + { + "name": "position", + "type": "Vector3" + }, + { + "name": "in", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + }, + { + "name": "out", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + }, + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_tilt", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tilt", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_point_tilt", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_in", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_point_in", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_out", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_point_out", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "t", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "interpolatef", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "fofs", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_bake_interval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bake_interval", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_up_vector_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_up_vector_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_baked_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "interpolate_baked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + }, + { + "name": "cubic", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "interpolate_baked_up_vector", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + }, + { + "name": "apply_tilt", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_baked_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "get_baked_tilts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedFloat32Array" + } + }, + { + "name": "get_baked_up_vectors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "to_point", + "type": "Vector3" + } + ] + }, + { + "name": "get_closest_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "to_point", + "type": "Vector3" + } + ] + }, + { + "name": "tessellate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3957090367, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "max_stages", + "type": "int", + "meta": "int32", + "default_value": "5" + }, + { + "name": "tolerance_degrees", + "type": "float", + "meta": "float", + "default_value": "4" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "bake_interval", + "setter": "set_bake_interval", + "getter": "get_bake_interval", + "index": -1 + }, + { + "type": "Points,point_", + "name": "point_count", + "setter": "set_point_count", + "getter": "get_point_count", + "index": -1 + }, + { + "type": "bool", + "name": "up_vector_enabled", + "setter": "set_up_vector_enabled", + "getter": "is_up_vector_enabled", + "index": -1 + } + ] + }, + { + "name": "CurveTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "enums": [ + { + "name": "TextureMode", + "values": [ + { + "name": "TEXTURE_MODE_RGB", + "value": 0 + }, + { + "name": "TEXTURE_MODE_RED", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_texture_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_mode", + "type": "enum::CurveTexture.TextureMode" + } + ] + }, + { + "name": "get_texture_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::CurveTexture.TextureMode" + } + } + ], + "properties": [ + { + "type": "int", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "texture_mode", + "setter": "set_texture_mode", + "getter": "get_texture_mode", + "index": -1 + }, + { + "type": "Curve", + "name": "curve", + "setter": "set_curve", + "getter": "get_curve", + "index": -1 + } + ] + }, + { + "name": "CurveXYZTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_curve_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve_x", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_curve_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_curve_z", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve_z", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + } + ], + "properties": [ + { + "type": "int", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "Curve", + "name": "curve_x", + "setter": "set_curve_x", + "getter": "get_curve_x", + "index": -1 + }, + { + "type": "Curve", + "name": "curve_y", + "setter": "set_curve_y", + "getter": "get_curve_y", + "index": -1 + }, + { + "type": "Curve", + "name": "curve_z", + "setter": "set_curve_z", + "getter": "get_curve_z", + "index": -1 + } + ] + }, + { + "name": "CylinderMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_top_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_top_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bottom_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bottom_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radial_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_radial_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_cap_top", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cap_top", + "type": "bool" + } + ] + }, + { + "name": "is_cap_top", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_cap_bottom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cap_bottom", + "type": "bool" + } + ] + }, + { + "name": "is_cap_bottom", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "top_radius", + "setter": "set_top_radius", + "getter": "get_top_radius", + "index": -1 + }, + { + "type": "float", + "name": "bottom_radius", + "setter": "set_bottom_radius", + "getter": "get_bottom_radius", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "int", + "name": "radial_segments", + "setter": "set_radial_segments", + "getter": "get_radial_segments", + "index": -1 + }, + { + "type": "int", + "name": "rings", + "setter": "set_rings", + "getter": "get_rings", + "index": -1 + }, + { + "type": "bool", + "name": "cap_top", + "setter": "set_cap_top", + "getter": "is_cap_top", + "index": -1 + }, + { + "type": "bool", + "name": "cap_bottom", + "setter": "set_cap_bottom", + "getter": "is_cap_bottom", + "index": -1 + } + ] + }, + { + "name": "CylinderShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "DTLSServer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "key", + "type": "CryptoKey" + }, + { + "name": "certificate", + "type": "X509Certificate" + }, + { + "name": "chain", + "type": "X509Certificate", + "default_value": "null" + } + ] + }, + { + "name": "take_connection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PacketPeerDTLS" + }, + "arguments": [ + { + "name": "udp_peer", + "type": "PacketPeerUDP" + } + ] + } + ] + }, + { + "name": "DampedSpringJoint2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint2D", + "api_type": "core", + "methods": [ + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rest_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rest_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_rest_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stiffness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_stiffness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "damping", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "length", + "setter": "set_length", + "getter": "get_length", + "index": -1 + }, + { + "type": "float", + "name": "rest_length", + "setter": "set_rest_length", + "getter": "get_rest_length", + "index": -1 + }, + { + "type": "float", + "name": "stiffness", + "setter": "set_stiffness", + "getter": "get_stiffness", + "index": -1 + }, + { + "type": "float", + "name": "damping", + "setter": "set_damping", + "getter": "get_damping", + "index": -1 + } + ] + }, + { + "name": "Decal", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "enums": [ + { + "name": "DecalTexture", + "values": [ + { + "name": "TEXTURE_ALBEDO", + "value": 0 + }, + { + "name": "TEXTURE_NORMAL", + "value": 1 + }, + { + "name": "TEXTURE_ORM", + "value": 2 + }, + { + "name": "TEXTURE_EMISSION", + "value": 3 + }, + { + "name": "TEXTURE_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "type", + "type": "enum::Decal.DecalTexture" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "type", + "type": "enum::Decal.DecalTexture" + } + ] + }, + { + "name": "set_emission_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_albedo_mix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_albedo_mix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_upper_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fade", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_upper_fade", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_lower_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fade", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_lower_fade", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_normal_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fade", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_normal_fade", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_enable_distance_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_distance_fade_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_distance_fade_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_distance_fade_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "Texture", + "name": "texture_albedo", + "setter": "set_texture", + "getter": "get_texture", + "index": 0 + }, + { + "type": "Texture", + "name": "texture_normal", + "setter": "set_texture", + "getter": "get_texture", + "index": 1 + }, + { + "type": "Texture", + "name": "texture_orm", + "setter": "set_texture", + "getter": "get_texture", + "index": 2 + }, + { + "type": "Texture", + "name": "texture_emission", + "setter": "set_texture", + "getter": "get_texture", + "index": 3 + }, + { + "type": "float", + "name": "emission_energy", + "setter": "set_emission_energy", + "getter": "get_emission_energy", + "index": -1 + }, + { + "type": "Color", + "name": "modulate", + "setter": "set_modulate", + "getter": "get_modulate", + "index": -1 + }, + { + "type": "float", + "name": "albedo_mix", + "setter": "set_albedo_mix", + "getter": "get_albedo_mix", + "index": -1 + }, + { + "type": "float", + "name": "normal_fade", + "setter": "set_normal_fade", + "getter": "get_normal_fade", + "index": -1 + }, + { + "type": "float", + "name": "upper_fade", + "setter": "set_upper_fade", + "getter": "get_upper_fade", + "index": -1 + }, + { + "type": "float", + "name": "lower_fade", + "setter": "set_lower_fade", + "getter": "get_lower_fade", + "index": -1 + }, + { + "type": "bool", + "name": "distance_fade_enabled", + "setter": "set_enable_distance_fade", + "getter": "is_distance_fade_enabled", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_begin", + "setter": "set_distance_fade_begin", + "getter": "get_distance_fade_begin", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_length", + "setter": "set_distance_fade_length", + "getter": "get_distance_fade_length", + "index": -1 + }, + { + "type": "int", + "name": "cull_mask", + "setter": "set_cull_mask", + "getter": "get_cull_mask", + "index": -1 + } + ] + }, + { + "name": "DirectionalLight2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Light2D", + "api_type": "core", + "methods": [ + { + "name": "set_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "float", + "name": "max_distance", + "setter": "set_max_distance", + "getter": "get_max_distance", + "index": -1 + } + ] + }, + { + "name": "DirectionalLight3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Light3D", + "api_type": "core", + "enums": [ + { + "name": "ShadowMode", + "values": [ + { + "name": "SHADOW_ORTHOGONAL", + "value": 0 + }, + { + "name": "SHADOW_PARALLEL_2_SPLITS", + "value": 1 + }, + { + "name": "SHADOW_PARALLEL_4_SPLITS", + "value": 2 + } + ] + }, + { + "name": "SkyMode", + "values": [ + { + "name": "SKY_MODE_LIGHT_AND_SKY", + "value": 0 + }, + { + "name": "SKY_MODE_LIGHT_ONLY", + "value": 1 + }, + { + "name": "SKY_MODE_SKY_ONLY", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_shadow_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::DirectionalLight3D.ShadowMode" + } + ] + }, + { + "name": "get_shadow_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::DirectionalLight3D.ShadowMode" + } + }, + { + "name": "set_blend_splits", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_blend_splits_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_sky_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::DirectionalLight3D.SkyMode" + } + ] + }, + { + "name": "get_sky_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::DirectionalLight3D.SkyMode" + } + } + ], + "properties": [ + { + "type": "int", + "name": "directional_shadow_mode", + "setter": "set_shadow_mode", + "getter": "get_shadow_mode", + "index": -1 + }, + { + "type": "float", + "name": "directional_shadow_split_1", + "setter": "set_param", + "getter": "get_param", + "index": 9 + }, + { + "type": "float", + "name": "directional_shadow_split_2", + "setter": "set_param", + "getter": "get_param", + "index": 10 + }, + { + "type": "float", + "name": "directional_shadow_split_3", + "setter": "set_param", + "getter": "get_param", + "index": 11 + }, + { + "type": "bool", + "name": "directional_shadow_blend_splits", + "setter": "set_blend_splits", + "getter": "is_blend_splits_enabled", + "index": -1 + }, + { + "type": "float", + "name": "directional_shadow_fade_start", + "setter": "set_param", + "getter": "get_param", + "index": 12 + }, + { + "type": "float", + "name": "directional_shadow_max_distance", + "setter": "set_param", + "getter": "get_param", + "index": 8 + }, + { + "type": "float", + "name": "directional_shadow_pancake_size", + "setter": "set_param", + "getter": "get_param", + "index": 15 + }, + { + "type": "int", + "name": "sky_mode", + "setter": "set_sky_mode", + "getter": "get_sky_mode", + "index": -1 + } + ] + }, + { + "name": "Directory", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "open", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "list_dir_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1356729128, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "get_next", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "current_is_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "list_dir_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_files", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_directories", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_drive_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_drive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_drive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "change_dir", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "todir", + "type": "String" + } + ] + }, + { + "name": "get_current_dir", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "make_dir", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "make_dir_recursive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "file_exists", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "dir_exists", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_space_left", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "copy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "from", + "type": "String" + }, + { + "name": "to", + "type": "String" + } + ] + }, + { + "name": "rename", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "from", + "type": "String" + }, + { + "name": "to", + "type": "String" + } + ] + }, + { + "name": "remove", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "set_include_navigational", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_include_navigational", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_include_hidden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_include_hidden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "include_navigational", + "setter": "set_include_navigational", + "getter": "get_include_navigational", + "index": -1 + }, + { + "type": "bool", + "name": "include_hidden", + "setter": "set_include_hidden", + "getter": "get_include_hidden", + "index": -1 + } + ] + }, + { + "name": "DisplayServer", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "SCREEN_OF_MAIN_WINDOW", + "value": -1 + }, + { + "name": "MAIN_WINDOW_ID", + "value": 0 + }, + { + "name": "INVALID_WINDOW_ID", + "value": -1 + } + ], + "enums": [ + { + "name": "Feature", + "values": [ + { + "name": "FEATURE_GLOBAL_MENU", + "value": 0 + }, + { + "name": "FEATURE_SUBWINDOWS", + "value": 1 + }, + { + "name": "FEATURE_TOUCHSCREEN", + "value": 2 + }, + { + "name": "FEATURE_MOUSE", + "value": 3 + }, + { + "name": "FEATURE_MOUSE_WARP", + "value": 4 + }, + { + "name": "FEATURE_CLIPBOARD", + "value": 5 + }, + { + "name": "FEATURE_VIRTUAL_KEYBOARD", + "value": 6 + }, + { + "name": "FEATURE_CURSOR_SHAPE", + "value": 7 + }, + { + "name": "FEATURE_CUSTOM_CURSOR_SHAPE", + "value": 8 + }, + { + "name": "FEATURE_NATIVE_DIALOG", + "value": 9 + }, + { + "name": "FEATURE_IME", + "value": 10 + }, + { + "name": "FEATURE_WINDOW_TRANSPARENCY", + "value": 11 + }, + { + "name": "FEATURE_HIDPI", + "value": 12 + }, + { + "name": "FEATURE_ICON", + "value": 13 + }, + { + "name": "FEATURE_NATIVE_ICON", + "value": 14 + }, + { + "name": "FEATURE_ORIENTATION", + "value": 15 + }, + { + "name": "FEATURE_SWAP_BUFFERS", + "value": 16 + }, + { + "name": "FEATURE_CLIPBOARD_PRIMARY", + "value": 18 + }, + { + "name": "FEATURE_TEXT_TO_SPEECH", + "value": 19 + } + ] + }, + { + "name": "MouseMode", + "values": [ + { + "name": "MOUSE_MODE_VISIBLE", + "value": 0 + }, + { + "name": "MOUSE_MODE_HIDDEN", + "value": 1 + }, + { + "name": "MOUSE_MODE_CAPTURED", + "value": 2 + }, + { + "name": "MOUSE_MODE_CONFINED", + "value": 3 + }, + { + "name": "MOUSE_MODE_CONFINED_HIDDEN", + "value": 4 + } + ] + }, + { + "name": "ScreenOrientation", + "values": [ + { + "name": "SCREEN_LANDSCAPE", + "value": 0 + }, + { + "name": "SCREEN_PORTRAIT", + "value": 1 + }, + { + "name": "SCREEN_REVERSE_LANDSCAPE", + "value": 2 + }, + { + "name": "SCREEN_REVERSE_PORTRAIT", + "value": 3 + }, + { + "name": "SCREEN_SENSOR_LANDSCAPE", + "value": 4 + }, + { + "name": "SCREEN_SENSOR_PORTRAIT", + "value": 5 + }, + { + "name": "SCREEN_SENSOR", + "value": 6 + } + ] + }, + { + "name": "CursorShape", + "values": [ + { + "name": "CURSOR_ARROW", + "value": 0 + }, + { + "name": "CURSOR_IBEAM", + "value": 1 + }, + { + "name": "CURSOR_POINTING_HAND", + "value": 2 + }, + { + "name": "CURSOR_CROSS", + "value": 3 + }, + { + "name": "CURSOR_WAIT", + "value": 4 + }, + { + "name": "CURSOR_BUSY", + "value": 5 + }, + { + "name": "CURSOR_DRAG", + "value": 6 + }, + { + "name": "CURSOR_CAN_DROP", + "value": 7 + }, + { + "name": "CURSOR_FORBIDDEN", + "value": 8 + }, + { + "name": "CURSOR_VSIZE", + "value": 9 + }, + { + "name": "CURSOR_HSIZE", + "value": 10 + }, + { + "name": "CURSOR_BDIAGSIZE", + "value": 11 + }, + { + "name": "CURSOR_FDIAGSIZE", + "value": 12 + }, + { + "name": "CURSOR_MOVE", + "value": 13 + }, + { + "name": "CURSOR_VSPLIT", + "value": 14 + }, + { + "name": "CURSOR_HSPLIT", + "value": 15 + }, + { + "name": "CURSOR_HELP", + "value": 16 + }, + { + "name": "CURSOR_MAX", + "value": 17 + } + ] + }, + { + "name": "WindowMode", + "values": [ + { + "name": "WINDOW_MODE_WINDOWED", + "value": 0 + }, + { + "name": "WINDOW_MODE_MINIMIZED", + "value": 1 + }, + { + "name": "WINDOW_MODE_MAXIMIZED", + "value": 2 + }, + { + "name": "WINDOW_MODE_FULLSCREEN", + "value": 3 + }, + { + "name": "WINDOW_MODE_EXCLUSIVE_FULLSCREEN", + "value": 4 + } + ] + }, + { + "name": "WindowFlags", + "values": [ + { + "name": "WINDOW_FLAG_RESIZE_DISABLED", + "value": 0 + }, + { + "name": "WINDOW_FLAG_BORDERLESS", + "value": 1 + }, + { + "name": "WINDOW_FLAG_ALWAYS_ON_TOP", + "value": 2 + }, + { + "name": "WINDOW_FLAG_TRANSPARENT", + "value": 3 + }, + { + "name": "WINDOW_FLAG_NO_FOCUS", + "value": 4 + }, + { + "name": "WINDOW_FLAG_POPUP", + "value": 5 + }, + { + "name": "WINDOW_FLAG_MAX", + "value": 6 + } + ] + }, + { + "name": "WindowEvent", + "values": [ + { + "name": "WINDOW_EVENT_MOUSE_ENTER", + "value": 0 + }, + { + "name": "WINDOW_EVENT_MOUSE_EXIT", + "value": 1 + }, + { + "name": "WINDOW_EVENT_FOCUS_IN", + "value": 2 + }, + { + "name": "WINDOW_EVENT_FOCUS_OUT", + "value": 3 + }, + { + "name": "WINDOW_EVENT_CLOSE_REQUEST", + "value": 4 + }, + { + "name": "WINDOW_EVENT_GO_BACK_REQUEST", + "value": 5 + }, + { + "name": "WINDOW_EVENT_DPI_CHANGE", + "value": 6 + } + ] + }, + { + "name": "VSyncMode", + "values": [ + { + "name": "VSYNC_DISABLED", + "value": 0 + }, + { + "name": "VSYNC_ENABLED", + "value": 1 + }, + { + "name": "VSYNC_ADAPTIVE", + "value": 2 + }, + { + "name": "VSYNC_MAILBOX", + "value": 3 + } + ] + }, + { + "name": "HandleType", + "values": [ + { + "name": "DISPLAY_HANDLE", + "value": 0 + }, + { + "name": "WINDOW_HANDLE", + "value": 1 + }, + { + "name": "WINDOW_VIEW", + "value": 2 + } + ] + }, + { + "name": "TTSUtteranceEvent", + "values": [ + { + "name": "TTS_UTTERANCE_STARTED", + "value": 0 + }, + { + "name": "TTS_UTTERANCE_ENDED", + "value": 1 + }, + { + "name": "TTS_UTTERANCE_CANCELED", + "value": 2 + }, + { + "name": "TTS_UTTERANCE_BOUNDARY", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "has_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::DisplayServer.Feature" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "global_menu_add_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2945481455, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2945481455, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_icon_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2614251472, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "icon", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_icon_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2614251472, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "icon", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_radio_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2945481455, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_icon_radio_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2614251472, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "icon", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_multistate_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2283021489, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "labe", + "type": "String" + }, + { + "name": "max_states", + "type": "int", + "meta": "int32" + }, + { + "name": "default_state", + "type": "int", + "meta": "int32" + }, + { + "name": "callback", + "type": "Callable", + "default_value": "" + }, + { + "name": "tag", + "type": "Variant", + "default_value": "null" + }, + { + "name": "accelerator", + "type": "enum::Key", + "default_value": "0" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_submenu_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "submenu", + "type": "String" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_add_separator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "global_menu_get_item_index_from_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "global_menu_get_item_index_from_tag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "tag", + "type": "Variant" + } + ] + }, + { + "name": "global_menu_is_item_checked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_is_item_checkable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_is_item_radio_checkable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Callable" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_tag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_submenu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_accelerator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "enum::Key" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_is_item_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_max_states", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_get_item_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_set_item_checked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "checked", + "type": "bool" + } + ] + }, + { + "name": "global_menu_set_item_checkable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "checkable", + "type": "bool" + } + ] + }, + { + "name": "global_menu_set_item_radio_checkable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "checkable", + "type": "bool" + } + ] + }, + { + "name": "global_menu_set_item_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "global_menu_set_item_tag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "Variant" + } + ] + }, + { + "name": "global_menu_set_item_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "global_menu_set_item_submenu", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "submenu", + "type": "String" + } + ] + }, + { + "name": "global_menu_set_item_accelerator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "keycode", + "type": "enum::Key" + } + ] + }, + { + "name": "global_menu_set_item_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "global_menu_set_item_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tooltip", + "type": "String" + } + ] + }, + { + "name": "global_menu_set_item_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "state", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_set_item_max_states", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "max_states", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_set_item_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "global_menu_remove_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "menu_root", + "type": "String" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_menu_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "menu_root", + "type": "String" + } + ] + }, + { + "name": "tts_is_speaking", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "tts_is_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "tts_get_voices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "tts_get_voices_for_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "tts_speak", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 839004078, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "voice", + "type": "String" + }, + { + "name": "volume", + "type": "int", + "meta": "int32", + "default_value": "50" + }, + { + "name": "pitch", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "rate", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "utterance_id", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "interrupt", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "tts_pause", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "tts_resume", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "tts_stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "tts_set_utterance_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "event", + "type": "enum::DisplayServer.TTSUtteranceEvent" + }, + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "mouse_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mouse_mode", + "type": "enum::DisplayServer.MouseMode" + } + ] + }, + { + "name": "mouse_get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::DisplayServer.MouseMode" + } + }, + { + "name": "warp_mouse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + } + ] + }, + { + "name": "mouse_get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "mouse_get_button_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MouseButton" + } + }, + { + "name": "clipboard_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clipboard", + "type": "String" + } + ] + }, + { + "name": "clipboard_get", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "clipboard_has", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "clipboard_set_primary", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clipboard_primary", + "type": "String" + } + ] + }, + { + "name": "clipboard_get_primary", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_display_cutouts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_display_safe_area", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2i" + } + }, + { + "name": "get_screen_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "screen_get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_get_usable_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "Rect2i" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_get_dpi", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_is_touchscreen", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_get_max_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "screen_get_refresh_rate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_set_orientation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "orientation", + "type": "enum::DisplayServer.ScreenOrientation" + }, + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_get_orientation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "enum::DisplayServer.ScreenOrientation" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "screen_set_keep_on", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "screen_is_kept_on", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_window_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "get_window_at_screen_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + } + ] + }, + { + "name": "create_sub_window", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::DisplayServer.WindowMode" + }, + { + "name": "vsync_mode", + "type": "enum::DisplayServer.VSyncMode" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32" + }, + { + "name": "rect", + "type": "Rect2i", + "default_value": "Rect2i(0, 0, 0, 0)" + } + ] + }, + { + "name": "delete_sub_window", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "window_get_native_handle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "handle_type", + "type": "enum::DisplayServer.HandleType" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_active_popup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "window_set_popup_safe_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "window", + "type": "int", + "meta": "int32" + }, + { + "name": "rect", + "type": "Rect2i" + } + ] + }, + { + "name": "window_get_popup_safe_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Rect2i" + }, + "arguments": [ + { + "name": "window", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "window_set_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "title", + "type": "String" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_mouse_passthrough", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "region", + "type": "PackedVector2Array" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_current_screen", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_current_screen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_rect_changed_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "callback", + "type": "Callable" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_window_event_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "callback", + "type": "Callable" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_input_event_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "callback", + "type": "Callable" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_input_text_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "callback", + "type": "Callable" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_drop_files_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "callback", + "type": "Callable" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_attach_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "instance_id", + "type": "int", + "meta": "uint64" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_attached_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_max_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_max_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "max_size", + "type": "Vector2i" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_min_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_min_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "min_size", + "type": "Vector2i" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_real_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "enum::DisplayServer.WindowMode" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "mode", + "type": "enum::DisplayServer.WindowMode" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "flag", + "type": "enum::DisplayServer.WindowFlags" + }, + { + "name": "enabled", + "type": "bool" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::DisplayServer.WindowFlags" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_request_attention", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_move_to_foreground", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_can_draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_transient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32" + }, + { + "name": "parent_window_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "window_set_exclusive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32" + }, + { + "name": "exclusive", + "type": "bool" + } + ] + }, + { + "name": "window_set_ime_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "active", + "type": "bool" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_ime_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_set_vsync_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "vsync_mode", + "type": "enum::DisplayServer.VSyncMode" + }, + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "window_get_vsync_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "enum::DisplayServer.VSyncMode" + }, + "arguments": [ + { + "name": "window_id", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "ime_get_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "ime_get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "virtual_keyboard_show", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1151322837, + "arguments": [ + { + "name": "existing_text", + "type": "String" + }, + { + "name": "position", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + }, + { + "name": "multiline", + "type": "bool", + "default_value": "false" + }, + { + "name": "max_length", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "cursor_start", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "cursor_end", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "virtual_keyboard_hide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "virtual_keyboard_get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "cursor_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::DisplayServer.CursorShape" + } + ] + }, + { + "name": "cursor_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::DisplayServer.CursorShape" + } + }, + { + "name": "cursor_set_custom_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2600550837, + "arguments": [ + { + "name": "cursor", + "type": "Resource" + }, + { + "name": "shape", + "type": "enum::DisplayServer.CursorShape", + "default_value": "0" + }, + { + "name": "hotspot", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "get_swap_cancel_ok", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "enable_for_stealing_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "process_id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "dialog_show", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "title", + "type": "String" + }, + { + "name": "description", + "type": "String" + }, + { + "name": "buttons", + "type": "PackedStringArray" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "dialog_input_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "title", + "type": "String" + }, + { + "name": "description", + "type": "String" + }, + { + "name": "existing_text", + "type": "String" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "keyboard_get_layout_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "keyboard_get_current_layout", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "keyboard_set_current_layout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "keyboard_get_layout_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "keyboard_get_layout_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "keyboard_get_keycode_from_physical", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Key" + }, + "arguments": [ + { + "name": "keycode", + "type": "enum::Key" + } + ] + }, + { + "name": "process_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "force_process_and_drop_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_native_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filename", + "type": "String" + } + ] + }, + { + "name": "set_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "tablet_get_driver_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "tablet_get_driver_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "tablet_get_current_driver", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "tablet_set_current_driver", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + } + ] + }, + { + "name": "ENetConnection", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "CompressionMode", + "values": [ + { + "name": "COMPRESS_NONE", + "value": 0 + }, + { + "name": "COMPRESS_RANGE_CODER", + "value": 1 + }, + { + "name": "COMPRESS_FASTLZ", + "value": 2 + }, + { + "name": "COMPRESS_ZLIB", + "value": 3 + }, + { + "name": "COMPRESS_ZSTD", + "value": 4 + } + ] + }, + { + "name": "EventType", + "values": [ + { + "name": "EVENT_ERROR", + "value": -1 + }, + { + "name": "EVENT_NONE", + "value": 0 + }, + { + "name": "EVENT_CONNECT", + "value": 1 + }, + { + "name": "EVENT_DISCONNECT", + "value": 2 + }, + { + "name": "EVENT_RECEIVE", + "value": 3 + } + ] + }, + { + "name": "HostStatistic", + "values": [ + { + "name": "HOST_TOTAL_SENT_DATA", + "value": 0 + }, + { + "name": "HOST_TOTAL_SENT_PACKETS", + "value": 1 + }, + { + "name": "HOST_TOTAL_RECEIVED_DATA", + "value": 2 + }, + { + "name": "HOST_TOTAL_RECEIVED_PACKETS", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "create_host_bound", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3777066231, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "bind_address", + "type": "String" + }, + { + "name": "bind_port", + "type": "int", + "meta": "int32" + }, + { + "name": "max_peers", + "type": "int", + "meta": "int32", + "default_value": "32" + }, + { + "name": "max_channels", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "in_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "out_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "create_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3286190379, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "max_peers", + "type": "int", + "meta": "int32", + "default_value": "32" + }, + { + "name": "max_channels", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "in_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "out_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "destroy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "connect_to_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "ENetPacketPeer" + }, + "arguments": [ + { + "name": "address", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "channels", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "data", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "service", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297011, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "timeout", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "flush", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "bandwidth_limit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 747192287, + "arguments": [ + { + "name": "in_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "out_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "channel_limit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "limit", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "broadcast", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "channel", + "type": "int", + "meta": "int32" + }, + { + "name": "packet", + "type": "PackedByteArray" + }, + { + "name": "flags", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "compress", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::ENetConnection.CompressionMode" + } + ] + }, + { + "name": "dtls_server_setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "key", + "type": "CryptoKey" + }, + { + "name": "certificate", + "type": "X509Certificate" + } + ] + }, + { + "name": "dtls_client_setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "certificate", + "type": "X509Certificate" + }, + { + "name": "hostname", + "type": "String" + }, + { + "name": "verify", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "refuse_new_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "refuse", + "type": "bool" + } + ] + }, + { + "name": "pop_statistic", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "statistic", + "type": "enum::ENetConnection.HostStatistic" + } + ] + }, + { + "name": "get_max_channels", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_local_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_peers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "ENetMultiplayerPeer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "MultiplayerPeer", + "api_type": "core", + "methods": [ + { + "name": "create_server", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 663665249, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "max_clients", + "type": "int", + "meta": "int32", + "default_value": "32" + }, + { + "name": "max_channels", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "in_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "out_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "create_client", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1208486950, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "address", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "channel_count", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "in_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "out_bandwidth", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "local_port", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "create_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "unique_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_mesh_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "peer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "host", + "type": "ENetConnection" + } + ] + }, + { + "name": "close_connection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1814615277, + "arguments": [ + { + "name": "wait_usec", + "type": "int", + "meta": "uint32", + "default_value": "100" + } + ] + }, + { + "name": "set_bind_ip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ip", + "type": "String" + } + ] + }, + { + "name": "set_server_relay_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_server_relay_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_host", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ENetConnection" + } + }, + { + "name": "get_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "ENetPacketPeer" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "server_relay", + "setter": "set_server_relay_enabled", + "getter": "is_server_relay_enabled", + "index": -1 + }, + { + "type": "ENetConnection", + "name": "host", + "setter": "", + "getter": "get_host", + "index": -1 + } + ] + }, + { + "name": "ENetPacketPeer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "PacketPeer", + "api_type": "core", + "constants": [ + { + "name": "PACKET_LOSS_SCALE", + "value": 65536 + }, + { + "name": "PACKET_THROTTLE_SCALE", + "value": 32 + }, + { + "name": "FLAG_RELIABLE", + "value": 1 + }, + { + "name": "FLAG_UNSEQUENCED", + "value": 2 + }, + { + "name": "FLAG_UNRELIABLE_FRAGMENT", + "value": 8 + } + ], + "enums": [ + { + "name": "PeerState", + "values": [ + { + "name": "STATE_DISCONNECTED", + "value": 0 + }, + { + "name": "STATE_CONNECTING", + "value": 1 + }, + { + "name": "STATE_ACKNOWLEDGING_CONNECT", + "value": 2 + }, + { + "name": "STATE_CONNECTION_PENDING", + "value": 3 + }, + { + "name": "STATE_CONNECTION_SUCCEEDED", + "value": 4 + }, + { + "name": "STATE_CONNECTED", + "value": 5 + }, + { + "name": "STATE_DISCONNECT_LATER", + "value": 6 + }, + { + "name": "STATE_DISCONNECTING", + "value": 7 + }, + { + "name": "STATE_ACKNOWLEDGING_DISCONNECT", + "value": 8 + }, + { + "name": "STATE_ZOMBIE", + "value": 9 + } + ] + }, + { + "name": "PeerStatistic", + "values": [ + { + "name": "PEER_PACKET_LOSS", + "value": 0 + }, + { + "name": "PEER_PACKET_LOSS_VARIANCE", + "value": 1 + }, + { + "name": "PEER_PACKET_LOSS_EPOCH", + "value": 2 + }, + { + "name": "PEER_ROUND_TRIP_TIME", + "value": 3 + }, + { + "name": "PEER_ROUND_TRIP_TIME_VARIANCE", + "value": 4 + }, + { + "name": "PEER_LAST_ROUND_TRIP_TIME", + "value": 5 + }, + { + "name": "PEER_LAST_ROUND_TRIP_TIME_VARIANCE", + "value": 6 + }, + { + "name": "PEER_PACKET_THROTTLE", + "value": 7 + }, + { + "name": "PEER_PACKET_THROTTLE_LIMIT", + "value": 8 + }, + { + "name": "PEER_PACKET_THROTTLE_COUNTER", + "value": 9 + }, + { + "name": "PEER_PACKET_THROTTLE_EPOCH", + "value": 10 + }, + { + "name": "PEER_PACKET_THROTTLE_ACCELERATION", + "value": 11 + }, + { + "name": "PEER_PACKET_THROTTLE_DECELERATION", + "value": 12 + }, + { + "name": "PEER_PACKET_THROTTLE_INTERVAL", + "value": 13 + } + ] + } + ], + "methods": [ + { + "name": "peer_disconnect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "data", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "peer_disconnect_later", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "data", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "peer_disconnect_now", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "data", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "ping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "ping_interval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ping_interval", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "reset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "send", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "channel", + "type": "int", + "meta": "int32" + }, + { + "name": "packet", + "type": "PackedByteArray" + }, + { + "name": "flags", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "throttle_configure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "interval", + "type": "int", + "meta": "int32" + }, + { + "name": "acceleration", + "type": "int", + "meta": "int32" + }, + { + "name": "deceleration", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_timeout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "timeout", + "type": "int", + "meta": "int32" + }, + { + "name": "timeout_min", + "type": "int", + "meta": "int32" + }, + { + "name": "timeout_max", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_statistic", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "statistic", + "type": "enum::ENetPacketPeer.PeerStatistic" + } + ] + }, + { + "name": "get_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ENetPacketPeer.PeerState" + } + }, + { + "name": "get_channels", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "EditorCommandPalette", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "ConfirmationDialog", + "api_type": "editor", + "methods": [ + { + "name": "add_command", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "command_name", + "type": "String" + }, + { + "name": "key_name", + "type": "String" + }, + { + "name": "binded_callable", + "type": "Callable" + }, + { + "name": "shortcut_text", + "type": "String", + "default_value": "\"None\"" + } + ] + }, + { + "name": "remove_command", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "key_name", + "type": "String" + } + ] + } + ] + }, + { + "name": "EditorDebuggerPlugin", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Control", + "api_type": "editor", + "methods": [ + { + "name": "send_message", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "message", + "type": "String" + }, + { + "name": "data", + "type": "Array" + } + ] + }, + { + "name": "register_message_capture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "unregister_message_capture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_capture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "is_breaked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_debuggable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_session_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "started" + }, + { + "name": "stopped" + }, + { + "name": "breaked", + "arguments": [ + { + "name": "can_debug", + "type": "bool" + } + ] + }, + { + "name": "continued" + } + ] + }, + { + "name": "EditorExportPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_export_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "type", + "type": "String" + }, + { + "name": "features", + "type": "PackedStringArray" + } + ] + }, + { + "name": "_export_begin", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "features", + "type": "PackedStringArray" + }, + { + "name": "is_debug", + "type": "bool" + }, + { + "name": "path", + "type": "String" + }, + { + "name": "flags", + "type": "int" + } + ] + }, + { + "name": "_export_end", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "add_shared_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "tags", + "type": "PackedStringArray" + }, + { + "name": "target", + "type": "String" + } + ] + }, + { + "name": "add_ios_project_static_lib", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "add_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "file", + "type": "PackedByteArray" + }, + { + "name": "remap", + "type": "bool" + } + ] + }, + { + "name": "add_ios_framework", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "add_ios_embedded_framework", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "add_ios_plist_content", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plist_content", + "type": "String" + } + ] + }, + { + "name": "add_ios_linker_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "String" + } + ] + }, + { + "name": "add_ios_bundle_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "add_ios_cpp_code", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "code", + "type": "String" + } + ] + }, + { + "name": "add_osx_plugin_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "skip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "EditorFeatureProfile", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "enums": [ + { + "name": "Feature", + "values": [ + { + "name": "FEATURE_3D", + "value": 0 + }, + { + "name": "FEATURE_SCRIPT", + "value": 1 + }, + { + "name": "FEATURE_ASSET_LIB", + "value": 2 + }, + { + "name": "FEATURE_SCENE_TREE", + "value": 3 + }, + { + "name": "FEATURE_NODE_DOCK", + "value": 4 + }, + { + "name": "FEATURE_FILESYSTEM_DOCK", + "value": 5 + }, + { + "name": "FEATURE_IMPORT_DOCK", + "value": 6 + }, + { + "name": "FEATURE_MAX", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "set_disable_class", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "class_name", + "type": "StringName" + }, + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_class_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class_name", + "type": "StringName" + } + ] + }, + { + "name": "set_disable_class_editor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "class_name", + "type": "StringName" + }, + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_class_editor_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class_name", + "type": "StringName" + } + ] + }, + { + "name": "set_disable_class_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "class_name", + "type": "StringName" + }, + { + "name": "property", + "type": "StringName" + }, + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_class_property_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class_name", + "type": "StringName" + }, + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "set_disable_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "feature", + "type": "enum::EditorFeatureProfile.Feature" + }, + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_feature_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::EditorFeatureProfile.Feature" + } + ] + }, + { + "name": "get_feature_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::EditorFeatureProfile.Feature" + } + ] + }, + { + "name": "save_to_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "load_from_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ] + }, + { + "name": "EditorFileDialog", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "ConfirmationDialog", + "api_type": "editor", + "enums": [ + { + "name": "FileMode", + "values": [ + { + "name": "FILE_MODE_OPEN_FILE", + "value": 0 + }, + { + "name": "FILE_MODE_OPEN_FILES", + "value": 1 + }, + { + "name": "FILE_MODE_OPEN_DIR", + "value": 2 + }, + { + "name": "FILE_MODE_OPEN_ANY", + "value": 3 + }, + { + "name": "FILE_MODE_SAVE_FILE", + "value": 4 + } + ] + }, + { + "name": "Access", + "values": [ + { + "name": "ACCESS_RESOURCES", + "value": 0 + }, + { + "name": "ACCESS_USERDATA", + "value": 1 + }, + { + "name": "ACCESS_FILESYSTEM", + "value": 2 + } + ] + }, + { + "name": "DisplayMode", + "values": [ + { + "name": "DISPLAY_THUMBNAILS", + "value": 0 + }, + { + "name": "DISPLAY_LIST", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "clear_filters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "String" + } + ] + }, + { + "name": "get_current_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_current_file", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_current_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_current_dir", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "dir", + "type": "String" + } + ] + }, + { + "name": "set_current_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "set_current_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "set_file_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::EditorFileDialog.FileMode" + } + ] + }, + { + "name": "get_file_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::EditorFileDialog.FileMode" + } + }, + { + "name": "get_vbox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "VBoxContainer" + } + }, + { + "name": "set_access", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "access", + "type": "enum::EditorFileDialog.Access" + } + ] + }, + { + "name": "get_access", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::EditorFileDialog.Access" + } + }, + { + "name": "set_show_hidden_files", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "show", + "type": "bool" + } + ] + }, + { + "name": "is_showing_hidden_files", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_display_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::EditorFileDialog.DisplayMode" + } + ] + }, + { + "name": "get_display_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::EditorFileDialog.DisplayMode" + } + }, + { + "name": "set_disable_overwrite_warning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_overwrite_warning_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "invalidate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "signals": [ + { + "name": "file_selected", + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "files_selected", + "arguments": [ + { + "name": "paths", + "type": "PackedStringArray" + } + ] + }, + { + "name": "dir_selected", + "arguments": [ + { + "name": "dir", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "access", + "setter": "set_access", + "getter": "get_access", + "index": -1 + }, + { + "type": "int", + "name": "display_mode", + "setter": "set_display_mode", + "getter": "get_display_mode", + "index": -1 + }, + { + "type": "int", + "name": "file_mode", + "setter": "set_file_mode", + "getter": "get_file_mode", + "index": -1 + }, + { + "type": "String", + "name": "current_dir", + "setter": "set_current_dir", + "getter": "get_current_dir", + "index": -1 + }, + { + "type": "String", + "name": "current_file", + "setter": "set_current_file", + "getter": "get_current_file", + "index": -1 + }, + { + "type": "String", + "name": "current_path", + "setter": "set_current_path", + "getter": "get_current_path", + "index": -1 + }, + { + "type": "bool", + "name": "show_hidden_files", + "setter": "set_show_hidden_files", + "getter": "is_showing_hidden_files", + "index": -1 + }, + { + "type": "bool", + "name": "disable_overwrite_warning", + "setter": "set_disable_overwrite_warning", + "getter": "is_overwrite_warning_disabled", + "index": -1 + } + ] + }, + { + "name": "EditorFileSystem", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "editor", + "methods": [ + { + "name": "get_filesystem", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorFileSystemDirectory" + } + }, + { + "name": "is_scanning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_scanning_progress", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "scan", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "scan_sources", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "update_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_filesystem_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "EditorFileSystemDirectory" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_file_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "update_script_classes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "reimport_files", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "files", + "type": "PackedStringArray" + } + ] + } + ], + "signals": [ + { + "name": "filesystem_changed" + }, + { + "name": "sources_changed", + "arguments": [ + { + "name": "exist", + "type": "bool" + } + ] + }, + { + "name": "resources_reimported", + "arguments": [ + { + "name": "resources", + "type": "PackedStringArray" + } + ] + }, + { + "name": "resources_reload", + "arguments": [ + { + "name": "resources", + "type": "PackedStringArray" + } + ] + } + ] + }, + { + "name": "EditorFileSystemDirectory", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "editor", + "methods": [ + { + "name": "get_subdir_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_subdir", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "EditorFileSystemDirectory" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_file_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_file", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_file_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_file_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_file_script_class_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_file_script_class_extends", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_file_import_is_valid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorFileSystemDirectory" + } + }, + { + "name": "find_file_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "find_dir_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + } + ] + }, + { + "name": "EditorFileSystemImportFormatSupportQuery", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_is_active", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_file_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_query", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "EditorImportPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "ResourceImporter", + "api_type": "editor", + "methods": [ + { + "name": "_get_importer_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_visible_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_preset_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_preset_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "preset_index", + "type": "int" + } + ] + }, + { + "name": "_get_recognized_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_get_import_options", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "preset_index", + "type": "int" + } + ] + }, + { + "name": "_get_save_extension", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_resource_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_priority", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_get_import_order", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_option_visibility", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "option_name", + "type": "StringName" + }, + { + "name": "options", + "type": "Dictionary" + } + ] + }, + { + "name": "_import", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "source_file", + "type": "String" + }, + { + "name": "save_path", + "type": "String" + }, + { + "name": "options", + "type": "Dictionary" + }, + { + "name": "platform_variants", + "type": "Array" + }, + { + "name": "gen_files", + "type": "Array" + } + ] + } + ] + }, + { + "name": "EditorInspector", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "ScrollContainer", + "api_type": "editor", + "signals": [ + { + "name": "property_selected", + "arguments": [ + { + "name": "property", + "type": "String" + } + ] + }, + { + "name": "property_keyed", + "arguments": [ + { + "name": "property", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + }, + { + "name": "advance", + "type": "bool" + } + ] + }, + { + "name": "property_deleted", + "arguments": [ + { + "name": "property", + "type": "String" + } + ] + }, + { + "name": "resource_selected", + "arguments": [ + { + "name": "resource", + "type": "Resource" + }, + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "object_id_selected", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "property_edited", + "arguments": [ + { + "name": "property", + "type": "String" + } + ] + }, + { + "name": "property_toggled", + "arguments": [ + { + "name": "property", + "type": "String" + }, + { + "name": "checked", + "type": "bool" + } + ] + }, + { + "name": "edited_object_changed" + }, + { + "name": "restart_requested" + } + ] + }, + { + "name": "EditorInspectorPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_can_handle", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "object", + "type": "Variant" + } + ] + }, + { + "name": "_parse_begin", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "_parse_category", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "category", + "type": "String" + } + ] + }, + { + "name": "_parse_group", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "group", + "type": "String" + } + ] + }, + { + "name": "_parse_property", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "type", + "type": "int" + }, + { + "name": "name", + "type": "String" + }, + { + "name": "hint_type", + "type": "int" + }, + { + "name": "hint_string", + "type": "String" + }, + { + "name": "usage_flags", + "type": "int" + }, + { + "name": "wide", + "type": "bool" + } + ] + }, + { + "name": "_parse_end", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "add_custom_control", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "add_property_editor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "property", + "type": "String" + }, + { + "name": "editor", + "type": "Control" + }, + { + "name": "add_to_end", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_property_editor_for_multiple_properties", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "properties", + "type": "PackedStringArray" + }, + { + "name": "editor", + "type": "Control" + } + ] + } + ] + }, + { + "name": "EditorInterface", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "editor", + "methods": [ + { + "name": "inspect_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 188527247, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "for_property", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "inspector_only", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorSelection" + } + }, + { + "name": "get_editor_settings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorSettings" + } + }, + { + "name": "get_script_editor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "ScriptEditor" + } + }, + { + "name": "get_base_control", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Control" + } + }, + { + "name": "get_editor_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "edit_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "edit_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "edit_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 420673793, + "arguments": [ + { + "name": "script", + "type": "Script" + }, + { + "name": "line", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "column", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "grab_focus", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "open_scene_from_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_filepath", + "type": "String" + } + ] + }, + { + "name": "reload_scene_from_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_filepath", + "type": "String" + } + ] + }, + { + "name": "play_main_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "play_current_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "play_custom_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_filepath", + "type": "String" + } + ] + }, + { + "name": "stop_playing_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_playing_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_open_scenes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_edited_scene_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Node" + } + }, + { + "name": "get_resource_previewer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorResourcePreview" + } + }, + { + "name": "get_resource_filesystem", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorFileSystem" + } + }, + { + "name": "get_editor_main_control", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Control" + } + }, + { + "name": "make_mesh_previews", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "meshes", + "type": "Array" + }, + { + "name": "preview_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "select_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "get_selected_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_current_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_file_system_dock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "FileSystemDock" + } + }, + { + "name": "get_editor_paths", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorPaths" + } + }, + { + "name": "get_command_palette", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "EditorCommandPalette" + } + }, + { + "name": "set_plugin_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "plugin", + "type": "String" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_plugin_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "plugin", + "type": "String" + } + ] + }, + { + "name": "get_inspector", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "EditorInspector" + } + }, + { + "name": "save_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "save_scene_as", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "with_preview", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_main_screen_editor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_distraction_free_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enter", + "type": "bool" + } + ] + }, + { + "name": "is_distraction_free_mode_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "distraction_free_mode", + "setter": "set_distraction_free_mode", + "getter": "is_distraction_free_mode_enabled", + "index": -1 + } + ] + }, + { + "name": "EditorNode3DGizmo", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Node3DGizmo", + "api_type": "editor", + "methods": [ + { + "name": "_redraw", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_handle_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + } + ] + }, + { + "name": "_is_handle_highlighted", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + } + ] + }, + { + "name": "_get_handle_value", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + } + ] + }, + { + "name": "_set_handle", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + }, + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "_commit_handle", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + }, + { + "name": "restore", + "type": "Variant" + }, + { + "name": "cancel", + "type": "bool" + } + ] + }, + { + "name": "_subgizmos_intersect_ray", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "_subgizmos_intersect_frustum", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "frustum", + "type": "Array" + } + ] + }, + { + "name": "_set_subgizmo_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_get_subgizmo_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "_commit_subgizmos", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "ids", + "type": "PackedInt32Array" + }, + { + "name": "restores", + "type": "Array" + }, + { + "name": "cancel", + "type": "bool" + } + ] + }, + { + "name": "add_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "lines", + "type": "PackedVector3Array" + }, + { + "name": "material", + "type": "Material" + }, + { + "name": "billboard", + "type": "bool", + "default_value": "false" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "add_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3942238741, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + }, + { + "name": "material", + "type": "Material", + "default_value": "null" + }, + { + "name": "transform", + "type": "Transform3D", + "default_value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" + }, + { + "name": "skeleton", + "type": "SkinReference", + "default_value": "null" + } + ] + }, + { + "name": "add_collision_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "add_collision_triangles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "triangles", + "type": "TriangleMesh" + } + ] + }, + { + "name": "add_unscaled_billboard", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3121317638, + "arguments": [ + { + "name": "material", + "type": "Material" + }, + { + "name": "default_scale", + "type": "float", + "meta": "float", + "default_value": "1" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "add_handles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "handles", + "type": "PackedVector3Array" + }, + { + "name": "material", + "type": "Material" + }, + { + "name": "ids", + "type": "PackedInt32Array" + }, + { + "name": "billboard", + "type": "bool", + "default_value": "false" + }, + { + "name": "secondary", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_spatial_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_spatial_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node3D" + } + }, + { + "name": "get_plugin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "EditorNode3DGizmoPlugin" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_hidden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hidden", + "type": "bool" + } + ] + }, + { + "name": "is_subgizmo_selected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subgizmo_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + } + ] + }, + { + "name": "EditorNode3DGizmoPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "editor", + "methods": [ + { + "name": "_has_gizmo", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "for_node_3d", + "type": "Node3D" + } + ] + }, + { + "name": "_create_gizmo", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "EditorNode3DGizmo" + }, + "arguments": [ + { + "name": "for_node_3d", + "type": "Node3D" + } + ] + }, + { + "name": "_get_gizmo_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_priority", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_can_be_hidden", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_is_selectable_when_hidden", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_redraw", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + } + ] + }, + { + "name": "_get_handle_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "handle_id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + } + ] + }, + { + "name": "_is_handle_highlighted", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "handle_id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + } + ] + }, + { + "name": "_get_handle_value", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "handle_id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + } + ] + }, + { + "name": "_set_handle", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "handle_id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + }, + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "screen_pos", + "type": "Vector2" + } + ] + }, + { + "name": "_commit_handle", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "handle_id", + "type": "int" + }, + { + "name": "secondary", + "type": "bool" + }, + { + "name": "restore", + "type": "Variant" + }, + { + "name": "cancel", + "type": "bool" + } + ] + }, + { + "name": "_subgizmos_intersect_ray", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "screen_pos", + "type": "Vector2" + } + ] + }, + { + "name": "_subgizmos_intersect_frustum", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "camera", + "type": "Camera3D" + }, + { + "name": "frustum_planes", + "type": "Array" + } + ] + }, + { + "name": "_get_subgizmo_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "subgizmo_id", + "type": "int" + } + ] + }, + { + "name": "_set_subgizmo_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "subgizmo_id", + "type": "int" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_commit_subgizmos", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "gizmo", + "type": "EditorNode3DGizmo" + }, + { + "name": "ids", + "type": "PackedInt32Array" + }, + { + "name": "restores", + "type": "Array" + }, + { + "name": "cancel", + "type": "bool" + } + ] + }, + { + "name": "create_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 60158893, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "billboard", + "type": "bool", + "default_value": "false" + }, + { + "name": "on_top", + "type": "bool", + "default_value": "false" + }, + { + "name": "use_vertex_color", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_icon_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "on_top", + "type": "bool", + "default_value": "false" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "create_handle_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 182667338, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "billboard", + "type": "bool", + "default_value": "false" + }, + { + "name": "texture", + "type": "Texture2D", + "default_value": "null" + } + ] + }, + { + "name": "add_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "material", + "type": "StandardMaterial3D" + } + ] + }, + { + "name": "get_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "StandardMaterial3D" + }, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "gizmo", + "type": "EditorNode3DGizmo", + "default_value": "null" + } + ] + } + ] + }, + { + "name": "EditorPaths", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "editor", + "methods": [ + { + "name": "get_data_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_config_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_cache_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_self_contained", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_self_contained_file", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ] + }, + { + "name": "EditorPlugin", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "editor", + "enums": [ + { + "name": "CustomControlContainer", + "values": [ + { + "name": "CONTAINER_TOOLBAR", + "value": 0 + }, + { + "name": "CONTAINER_SPATIAL_EDITOR_MENU", + "value": 1 + }, + { + "name": "CONTAINER_SPATIAL_EDITOR_SIDE_LEFT", + "value": 2 + }, + { + "name": "CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT", + "value": 3 + }, + { + "name": "CONTAINER_SPATIAL_EDITOR_BOTTOM", + "value": 4 + }, + { + "name": "CONTAINER_CANVAS_EDITOR_MENU", + "value": 5 + }, + { + "name": "CONTAINER_CANVAS_EDITOR_SIDE_LEFT", + "value": 6 + }, + { + "name": "CONTAINER_CANVAS_EDITOR_SIDE_RIGHT", + "value": 7 + }, + { + "name": "CONTAINER_CANVAS_EDITOR_BOTTOM", + "value": 8 + }, + { + "name": "CONTAINER_PROPERTY_EDITOR_BOTTOM", + "value": 9 + }, + { + "name": "CONTAINER_PROJECT_SETTING_TAB_LEFT", + "value": 10 + }, + { + "name": "CONTAINER_PROJECT_SETTING_TAB_RIGHT", + "value": 11 + } + ] + }, + { + "name": "DockSlot", + "values": [ + { + "name": "DOCK_SLOT_LEFT_UL", + "value": 0 + }, + { + "name": "DOCK_SLOT_LEFT_BL", + "value": 1 + }, + { + "name": "DOCK_SLOT_LEFT_UR", + "value": 2 + }, + { + "name": "DOCK_SLOT_LEFT_BR", + "value": 3 + }, + { + "name": "DOCK_SLOT_RIGHT_UL", + "value": 4 + }, + { + "name": "DOCK_SLOT_RIGHT_BL", + "value": 5 + }, + { + "name": "DOCK_SLOT_RIGHT_UR", + "value": 6 + }, + { + "name": "DOCK_SLOT_RIGHT_BR", + "value": 7 + }, + { + "name": "DOCK_SLOT_MAX", + "value": 8 + } + ] + } + ], + "methods": [ + { + "name": "_forward_canvas_gui_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "_forward_canvas_draw_over_viewport", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "viewport_control", + "type": "Control" + } + ] + }, + { + "name": "_forward_canvas_force_draw_over_viewport", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "viewport_control", + "type": "Control" + } + ] + }, + { + "name": "_forward_3d_gui_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "viewport_camera", + "type": "Camera3D" + }, + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "_forward_3d_draw_over_viewport", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "viewport_control", + "type": "Control" + } + ] + }, + { + "name": "_forward_3d_force_draw_over_viewport", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "viewport_control", + "type": "Control" + } + ] + }, + { + "name": "_get_plugin_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_plugin_icon", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "_has_main_screen", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_make_visible", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "_edit", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "object", + "type": "Variant" + } + ] + }, + { + "name": "_handles", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "object", + "type": "Variant" + } + ] + }, + { + "name": "_get_state", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "_set_state", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "state", + "type": "Dictionary" + } + ] + }, + { + "name": "_clear", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_save_external_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_apply_changes", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_breakpoints", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_set_window_layout", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "configuration", + "type": "ConfigFile" + } + ] + }, + { + "name": "_get_window_layout", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "configuration", + "type": "ConfigFile" + } + ] + }, + { + "name": "_build", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_enable_plugin", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_disable_plugin", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "add_control_to_container", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "container", + "type": "enum::EditorPlugin.CustomControlContainer" + }, + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "add_control_to_bottom_panel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Button" + }, + "arguments": [ + { + "name": "control", + "type": "Control" + }, + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "add_control_to_dock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "slot", + "type": "enum::EditorPlugin.DockSlot" + }, + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "remove_control_from_docks", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "remove_control_from_bottom_panel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "remove_control_from_container", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "container", + "type": "enum::EditorPlugin.CustomControlContainer" + }, + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "add_tool_menu_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "add_tool_submenu_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "submenu", + "type": "PopupMenu" + } + ] + }, + { + "name": "remove_tool_menu_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_export_as_menu", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PopupMenu" + } + }, + { + "name": "add_custom_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "type", + "type": "String" + }, + { + "name": "base", + "type": "String" + }, + { + "name": "script", + "type": "Script" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "remove_custom_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "String" + } + ] + }, + { + "name": "add_autoload_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "remove_autoload_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "update_overlays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "make_bottom_panel_item_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "item", + "type": "Control" + } + ] + }, + { + "name": "hide_bottom_panel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_undo_redo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "UndoRedo" + } + }, + { + "name": "add_undo_redo_inspector_hook_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "remove_undo_redo_inspector_hook_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "queue_save_layout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_translation_parser_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "EditorTranslationParserPlugin" + } + ] + }, + { + "name": "remove_translation_parser_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "EditorTranslationParserPlugin" + } + ] + }, + { + "name": "add_import_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "importer", + "type": "EditorImportPlugin" + }, + { + "name": "first_priority", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_import_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "importer", + "type": "EditorImportPlugin" + } + ] + }, + { + "name": "add_scene_format_importer_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "scene_format_importer", + "type": "EditorSceneFormatImporter" + }, + { + "name": "first_priority", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_scene_format_importer_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_format_importer", + "type": "EditorSceneFormatImporter" + } + ] + }, + { + "name": "add_scene_post_import_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "scene_import_plugin", + "type": "EditorScenePostImportPlugin" + }, + { + "name": "first_priority", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_scene_post_import_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_import_plugin", + "type": "EditorScenePostImportPlugin" + } + ] + }, + { + "name": "add_export_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plugin", + "type": "EditorExportPlugin" + } + ] + }, + { + "name": "remove_export_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plugin", + "type": "EditorExportPlugin" + } + ] + }, + { + "name": "add_spatial_gizmo_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plugin", + "type": "EditorNode3DGizmoPlugin" + } + ] + }, + { + "name": "remove_spatial_gizmo_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plugin", + "type": "EditorNode3DGizmoPlugin" + } + ] + }, + { + "name": "add_inspector_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plugin", + "type": "EditorInspectorPlugin" + } + ] + }, + { + "name": "remove_inspector_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plugin", + "type": "EditorInspectorPlugin" + } + ] + }, + { + "name": "set_input_event_forwarding_always_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_force_draw_over_forwarding_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_editor_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorInterface" + } + }, + { + "name": "get_script_create_dialog", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "ScriptCreateDialog" + } + }, + { + "name": "add_debugger_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "script", + "type": "Script" + } + ] + }, + { + "name": "remove_debugger_plugin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "script", + "type": "Script" + } + ] + } + ], + "signals": [ + { + "name": "scene_changed", + "arguments": [ + { + "name": "scene_root", + "type": "Node" + } + ] + }, + { + "name": "scene_closed", + "arguments": [ + { + "name": "filepath", + "type": "String" + } + ] + }, + { + "name": "main_screen_changed", + "arguments": [ + { + "name": "screen_name", + "type": "String" + } + ] + }, + { + "name": "resource_saved", + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "project_settings_changed" + } + ] + }, + { + "name": "EditorProperty", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Container", + "api_type": "editor", + "methods": [ + { + "name": "_update_property", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "set_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_read_only", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "read_only", + "type": "bool" + } + ] + }, + { + "name": "is_read_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_checkable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "checkable", + "type": "bool" + } + ] + }, + { + "name": "is_checkable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_checked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "checked", + "type": "bool" + } + ] + }, + { + "name": "is_checked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_warning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "draw_warning", + "type": "bool" + } + ] + }, + { + "name": "is_draw_warning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_keying", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keying", + "type": "bool" + } + ] + }, + { + "name": "is_keying", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_deletable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "deletable", + "type": "bool" + } + ] + }, + { + "name": "is_deletable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_edited_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "StringName" + } + }, + { + "name": "get_edited_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_tooltip_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "update_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_focusable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "set_bottom_editor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "editor", + "type": "Control" + } + ] + }, + { + "name": "emit_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + }, + { + "name": "field", + "type": "StringName", + "default_value": "&\"\"" + }, + { + "name": "changing", + "type": "bool", + "default_value": "false" + } + ] + } + ], + "signals": [ + { + "name": "property_changed", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "multiple_properties_changed", + "arguments": [ + { + "name": "properties", + "type": "PackedStringArray" + }, + { + "name": "value", + "type": "Array" + } + ] + }, + { + "name": "property_keyed", + "arguments": [ + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "property_deleted", + "arguments": [ + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "property_keyed_with_value", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "property_checked", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "checked", + "type": "bool" + } + ] + }, + { + "name": "property_pinned", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "pinned", + "type": "bool" + } + ] + }, + { + "name": "resource_selected", + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "object_id_selected", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "selected", + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "focusable_idx", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "label", + "setter": "set_label", + "getter": "get_label", + "index": -1 + }, + { + "type": "bool", + "name": "read_only", + "setter": "set_read_only", + "getter": "is_read_only", + "index": -1 + }, + { + "type": "bool", + "name": "checkable", + "setter": "set_checkable", + "getter": "is_checkable", + "index": -1 + }, + { + "type": "bool", + "name": "checked", + "setter": "set_checked", + "getter": "is_checked", + "index": -1 + }, + { + "type": "bool", + "name": "draw_warning", + "setter": "set_draw_warning", + "getter": "is_draw_warning", + "index": -1 + }, + { + "type": "bool", + "name": "keying", + "setter": "set_keying", + "getter": "is_keying", + "index": -1 + }, + { + "type": "bool", + "name": "deletable", + "setter": "set_deletable", + "getter": "is_deletable", + "index": -1 + } + ] + }, + { + "name": "EditorResourceConversionPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_converts_to", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_handles", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "_convert", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Resource" + }, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + } + ] + }, + { + "name": "EditorResourcePicker", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "HBoxContainer", + "api_type": "editor", + "methods": [ + { + "name": "_set_create_options", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "menu_node", + "type": "Object" + } + ] + }, + { + "name": "_handle_menu_selected", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_type", + "type": "String" + } + ] + }, + { + "name": "get_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_allowed_types", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_edited_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "get_edited_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Resource" + } + }, + { + "name": "set_toggle_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_toggle_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_toggle_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "set_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_editable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "resource_selected", + "arguments": [ + { + "name": "resource", + "type": "Resource" + }, + { + "name": "edit", + "type": "bool" + } + ] + }, + { + "name": "resource_changed", + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "Resource", + "name": "edited_resource", + "setter": "set_edited_resource", + "getter": "get_edited_resource", + "index": -1 + }, + { + "type": "bool", + "name": "editable", + "setter": "set_editable", + "getter": "is_editable", + "index": -1 + }, + { + "type": "bool", + "name": "toggle_mode", + "setter": "set_toggle_mode", + "getter": "is_toggle_mode", + "index": -1 + } + ] + }, + { + "name": "EditorResourcePreview", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "editor", + "methods": [ + { + "name": "queue_resource_preview", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "receiver", + "type": "Object" + }, + { + "name": "receiver_func", + "type": "StringName" + }, + { + "name": "userdata", + "type": "Variant" + } + ] + }, + { + "name": "queue_edited_resource_preview", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "resource", + "type": "Resource" + }, + { + "name": "receiver", + "type": "Object" + }, + { + "name": "receiver_func", + "type": "StringName" + }, + { + "name": "userdata", + "type": "Variant" + } + ] + }, + { + "name": "add_preview_generator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "generator", + "type": "EditorResourcePreviewGenerator" + } + ] + }, + { + "name": "remove_preview_generator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "generator", + "type": "EditorResourcePreviewGenerator" + } + ] + }, + { + "name": "check_for_invalidation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ], + "signals": [ + { + "name": "preview_invalidated", + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ] + }, + { + "name": "EditorResourcePreviewGenerator", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_handles", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "type", + "type": "String" + } + ] + }, + { + "name": "_generate", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "resource", + "type": "Resource" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "_generate_from_path", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "_generate_small_preview_automatically", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_can_generate_small_preview", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "EditorSceneFormatImporter", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "constants": [ + { + "name": "IMPORT_SCENE", + "value": 1 + }, + { + "name": "IMPORT_ANIMATION", + "value": 2 + }, + { + "name": "IMPORT_FAIL_ON_MISSING_DEPENDENCIES", + "value": 4 + }, + { + "name": "IMPORT_GENERATE_TANGENT_ARRAYS", + "value": 8 + }, + { + "name": "IMPORT_USE_NAMED_SKIN_BINDS", + "value": 16 + }, + { + "name": "IMPORT_DISCARD_MESHES_AND_MATERIALS", + "value": 32 + } + ], + "methods": [ + { + "name": "_get_import_flags", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_import_scene", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "flags", + "type": "int" + }, + { + "name": "options", + "type": "Dictionary" + }, + { + "name": "bake_fps", + "type": "int" + } + ] + }, + { + "name": "_get_import_options", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_get_option_visibility", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "for_animation", + "type": "bool" + }, + { + "name": "option", + "type": "String" + } + ] + } + ] + }, + { + "name": "EditorSceneFormatImporterBlend", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "EditorSceneFormatImporter", + "api_type": "editor" + }, + { + "name": "EditorSceneFormatImporterFBX", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "EditorSceneFormatImporter", + "api_type": "editor" + }, + { + "name": "EditorSceneFormatImporterGLTF", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "EditorSceneFormatImporter", + "api_type": "editor" + }, + { + "name": "EditorScenePostImport", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_post_import", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "scene", + "type": "Node" + } + ] + }, + { + "name": "get_source_file", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ] + }, + { + "name": "EditorScenePostImportPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "enums": [ + { + "name": "InternalImportCategory", + "values": [ + { + "name": "INTERNAL_IMPORT_CATEGORY_NODE", + "value": 0 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_MESH_3D_NODE", + "value": 1 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_MESH", + "value": 2 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_MATERIAL", + "value": 3 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_ANIMATION", + "value": 4 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_ANIMATION_NODE", + "value": 5 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_MAX", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "_get_internal_import_options", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "category", + "type": "int" + } + ] + }, + { + "name": "_get_internal_option_visibility", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "category", + "type": "int" + }, + { + "name": "for_animation", + "type": "bool" + }, + { + "name": "option", + "type": "String" + } + ] + }, + { + "name": "_get_internal_option_update_view_required", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "category", + "type": "int" + }, + { + "name": "option", + "type": "String" + } + ] + }, + { + "name": "_internal_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "category", + "type": "int" + }, + { + "name": "base_node", + "type": "Node" + }, + { + "name": "node", + "type": "Node" + }, + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "_get_import_options", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_get_option_visibility", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "for_animation", + "type": "bool" + }, + { + "name": "option", + "type": "String" + } + ] + }, + { + "name": "_pre_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "scene", + "type": "Node" + } + ] + }, + { + "name": "_post_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "scene", + "type": "Node" + } + ] + }, + { + "name": "get_option_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "add_import_option", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "add_import_option_advanced", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626862, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + }, + { + "name": "name", + "type": "String" + }, + { + "name": "default_value", + "type": "Variant" + }, + { + "name": "hint", + "type": "enum::PropertyHint", + "default_value": "0" + }, + { + "name": "hint_string", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "usage_flags", + "type": "int", + "meta": "int32", + "default_value": "7" + } + ] + } + ] + }, + { + "name": "EditorScript", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_run", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "add_root_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Node" + } + }, + { + "name": "get_editor_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "EditorInterface" + } + } + ] + }, + { + "name": "EditorScriptPicker", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "EditorResourcePicker", + "api_type": "editor", + "methods": [ + { + "name": "set_script_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "owner_node", + "type": "Node" + } + ] + }, + { + "name": "get_script_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + } + ], + "properties": [ + { + "type": "Node", + "name": "script_owner", + "setter": "set_script_owner", + "getter": "get_script_owner", + "index": -1 + } + ] + }, + { + "name": "EditorSelection", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "editor", + "methods": [ + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "remove_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_selected_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_transformable_selected_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + } + ], + "signals": [ + { + "name": "selection_changed" + } + ] + }, + { + "name": "EditorSettings", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "editor", + "constants": [ + { + "name": "NOTIFICATION_EDITOR_SETTINGS_CHANGED", + "value": 10000 + } + ], + "methods": [ + { + "name": "has_setting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_setting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_setting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "erase", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "property", + "type": "String" + } + ] + }, + { + "name": "set_initial_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + }, + { + "name": "update_current", + "type": "bool" + } + ] + }, + { + "name": "property_can_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "property_get_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "add_property_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "info", + "type": "Dictionary" + } + ] + }, + { + "name": "get_project_settings_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_project_metadata", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "section", + "type": "String" + }, + { + "name": "key", + "type": "String" + }, + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "get_project_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "section", + "type": "String" + }, + { + "name": "key", + "type": "String" + }, + { + "name": "default", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "set_favorites", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "dirs", + "type": "PackedStringArray" + } + ] + }, + { + "name": "get_favorites", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_recent_dirs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "dirs", + "type": "PackedStringArray" + } + ] + }, + { + "name": "get_recent_dirs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_builtin_action_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "actions_list", + "type": "Array" + } + ] + }, + { + "name": "check_changed_settings_in_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "setting_prefix", + "type": "String" + } + ] + }, + { + "name": "get_changed_settings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "mark_setting_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "setting", + "type": "String" + } + ] + } + ], + "signals": [ + { + "name": "settings_changed" + } + ] + }, + { + "name": "EditorSpinSlider", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Range", + "api_type": "editor", + "methods": [ + { + "name": "set_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "label", + "type": "String" + } + ] + }, + { + "name": "get_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_suffix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "suffix", + "type": "String" + } + ] + }, + { + "name": "get_suffix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_read_only", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "read_only", + "type": "bool" + } + ] + }, + { + "name": "is_read_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flat", + "type": "bool" + } + ] + }, + { + "name": "is_flat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hide_slider", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hide_slider", + "type": "bool" + } + ] + }, + { + "name": "is_hiding_slider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "label", + "setter": "set_label", + "getter": "get_label", + "index": -1 + }, + { + "type": "String", + "name": "suffix", + "setter": "set_suffix", + "getter": "get_suffix", + "index": -1 + }, + { + "type": "bool", + "name": "read_only", + "setter": "set_read_only", + "getter": "is_read_only", + "index": -1 + }, + { + "type": "bool", + "name": "flat", + "setter": "set_flat", + "getter": "is_flat", + "index": -1 + }, + { + "type": "bool", + "name": "hide_slider", + "setter": "set_hide_slider", + "getter": "is_hiding_slider", + "index": -1 + } + ] + }, + { + "name": "EditorSyntaxHighlighter", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "SyntaxHighlighter", + "api_type": "editor", + "methods": [ + { + "name": "_get_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_supported_languages", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "EditorTranslationParserPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "editor", + "methods": [ + { + "name": "_parse_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "msgids", + "type": "Array" + }, + { + "name": "msgids_context_plural", + "type": "Array" + } + ] + }, + { + "name": "_get_recognized_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + } + ] + }, + { + "name": "EditorVCSInterface", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "editor", + "enums": [ + { + "name": "ChangeType", + "values": [ + { + "name": "CHANGE_TYPE_NEW", + "value": 0 + }, + { + "name": "CHANGE_TYPE_MODIFIED", + "value": 1 + }, + { + "name": "CHANGE_TYPE_RENAMED", + "value": 2 + }, + { + "name": "CHANGE_TYPE_DELETED", + "value": 3 + }, + { + "name": "CHANGE_TYPE_TYPECHANGE", + "value": 4 + }, + { + "name": "CHANGE_TYPE_UNMERGED", + "value": 5 + } + ] + }, + { + "name": "TreeArea", + "values": [ + { + "name": "TREE_AREA_COMMIT", + "value": 0 + }, + { + "name": "TREE_AREA_STAGED", + "value": 1 + }, + { + "name": "TREE_AREA_UNSTAGED", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_initialize", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "project_path", + "type": "String" + } + ] + }, + { + "name": "_set_credentials", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "username", + "type": "String" + }, + { + "name": "password", + "type": "String" + }, + { + "name": "ssh_public_key_path", + "type": "String" + }, + { + "name": "ssh_private_key_path", + "type": "String" + }, + { + "name": "ssh_passphrase", + "type": "String" + } + ] + }, + { + "name": "_get_modified_files_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_stage_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "file_path", + "type": "String" + } + ] + }, + { + "name": "_unstage_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "file_path", + "type": "String" + } + ] + }, + { + "name": "_discard_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "file_path", + "type": "String" + } + ] + }, + { + "name": "_commit", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "msg", + "type": "String" + } + ] + }, + { + "name": "_get_diff", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "identifier", + "type": "String" + }, + { + "name": "area", + "type": "int" + } + ] + }, + { + "name": "_shut_down", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_vcs_name", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_previous_commits", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "max_commits", + "type": "int" + } + ] + }, + { + "name": "_get_branch_list", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_get_remotes", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_create_branch", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "branch_name", + "type": "String" + } + ] + }, + { + "name": "_remove_branch", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "branch_name", + "type": "String" + } + ] + }, + { + "name": "_create_remote", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "remote_name", + "type": "String" + }, + { + "name": "remote_url", + "type": "String" + } + ] + }, + { + "name": "_remove_remote", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "remote_name", + "type": "String" + } + ] + }, + { + "name": "_get_current_branch_name", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_checkout_branch", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "branch_name", + "type": "String" + } + ] + }, + { + "name": "_pull", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "remote", + "type": "String" + } + ] + }, + { + "name": "_push", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "remote", + "type": "String" + }, + { + "name": "force", + "type": "bool" + } + ] + }, + { + "name": "_fetch", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "remote", + "type": "String" + } + ] + }, + { + "name": "_get_line_diff", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "file_path", + "type": "String" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "create_diff_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "new_line_no", + "type": "int", + "meta": "int32" + }, + { + "name": "old_line_no", + "type": "int", + "meta": "int32" + }, + { + "name": "content", + "type": "String" + }, + { + "name": "status", + "type": "String" + } + ] + }, + { + "name": "create_diff_hunk", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "old_start", + "type": "int", + "meta": "int32" + }, + { + "name": "new_start", + "type": "int", + "meta": "int32" + }, + { + "name": "old_lines", + "type": "int", + "meta": "int32" + }, + { + "name": "new_lines", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "create_diff_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "new_file", + "type": "String" + }, + { + "name": "old_file", + "type": "String" + } + ] + }, + { + "name": "create_commit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517835, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "msg", + "type": "String" + }, + { + "name": "author", + "type": "String" + }, + { + "name": "id", + "type": "String" + }, + { + "name": "unix_timestamp", + "type": "int", + "meta": "int64" + }, + { + "name": "offset_minutes", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "create_status_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "file_path", + "type": "String" + }, + { + "name": "change_type", + "type": "enum::EditorVCSInterface.ChangeType" + }, + { + "name": "area", + "type": "enum::EditorVCSInterface.TreeArea" + } + ] + }, + { + "name": "add_diff_hunks_into_diff_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "diff_file", + "type": "Dictionary" + }, + { + "name": "diff_hunks", + "type": "Array" + } + ] + }, + { + "name": "add_line_diffs_into_diff_hunk", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "diff_hunk", + "type": "Dictionary" + }, + { + "name": "line_diffs", + "type": "Array" + } + ] + }, + { + "name": "popup_error", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msg", + "type": "String" + } + ] + } + ] + }, + { + "name": "EncodedObjectAsID", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_object_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "get_object_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + } + ], + "properties": [ + { + "type": "int", + "name": "object_id", + "setter": "set_object_id", + "getter": "get_object_id", + "index": -1 + } + ] + }, + { + "name": "Engine", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "set_physics_ticks_per_second", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physics_ticks_per_second", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_physics_ticks_per_second", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_physics_jitter_fix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physics_jitter_fix", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_physics_jitter_fix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_physics_interpolation_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_target_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_fps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_target_fps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_time_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time_scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_time_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_frames_drawn", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_frames_per_second", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_physics_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_process_frames", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_main_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "MainLoop" + } + }, + { + "name": "get_version_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_author_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_copyright_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_donor_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_license_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_license_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_in_physics_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "has_singleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_singleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "register_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "instance", + "type": "Object" + } + ] + }, + { + "name": "unregister_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_singleton_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "register_script_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "ScriptLanguage" + } + ] + }, + { + "name": "get_script_language_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_script_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "ScriptLanguage" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_editor_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_print_error_messages", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_printing_error_messages", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "print_error_messages", + "setter": "set_print_error_messages", + "getter": "is_printing_error_messages", + "index": -1 + }, + { + "type": "int", + "name": "physics_ticks_per_second", + "setter": "set_physics_ticks_per_second", + "getter": "get_physics_ticks_per_second", + "index": -1 + }, + { + "type": "int", + "name": "target_fps", + "setter": "set_target_fps", + "getter": "get_target_fps", + "index": -1 + }, + { + "type": "float", + "name": "time_scale", + "setter": "set_time_scale", + "getter": "get_time_scale", + "index": -1 + }, + { + "type": "float", + "name": "physics_jitter_fix", + "setter": "set_physics_jitter_fix", + "getter": "get_physics_jitter_fix", + "index": -1 + } + ] + }, + { + "name": "EngineDebugger", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "is_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "register_profiler", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "profiler", + "type": "EngineProfiler" + } + ] + }, + { + "name": "unregister_profiler", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "is_profiling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_profiler", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "profiler_add_frame_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "data", + "type": "Array" + } + ] + }, + { + "name": "profiler_enable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "arguments", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "register_message_capture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "unregister_message_capture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_capture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "send_message", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "message", + "type": "String" + }, + { + "name": "data", + "type": "Array" + } + ] + } + ] + }, + { + "name": "EngineProfiler", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "_toggle", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "enable", + "type": "bool" + }, + { + "name": "options", + "type": "Array" + } + ] + }, + { + "name": "_add_frame", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "data", + "type": "Array" + } + ] + }, + { + "name": "_tick", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "frame_time", + "type": "float" + }, + { + "name": "process_time", + "type": "float" + }, + { + "name": "physics_time", + "type": "float" + }, + { + "name": "physics_frame_time", + "type": "float" + } + ] + } + ] + }, + { + "name": "Environment", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "BGMode", + "values": [ + { + "name": "BG_CLEAR_COLOR", + "value": 0 + }, + { + "name": "BG_COLOR", + "value": 1 + }, + { + "name": "BG_SKY", + "value": 2 + }, + { + "name": "BG_CANVAS", + "value": 3 + }, + { + "name": "BG_KEEP", + "value": 4 + }, + { + "name": "BG_CAMERA_FEED", + "value": 5 + }, + { + "name": "BG_MAX", + "value": 6 + } + ] + }, + { + "name": "AmbientSource", + "values": [ + { + "name": "AMBIENT_SOURCE_BG", + "value": 0 + }, + { + "name": "AMBIENT_SOURCE_DISABLED", + "value": 1 + }, + { + "name": "AMBIENT_SOURCE_COLOR", + "value": 2 + }, + { + "name": "AMBIENT_SOURCE_SKY", + "value": 3 + } + ] + }, + { + "name": "ReflectionSource", + "values": [ + { + "name": "REFLECTION_SOURCE_BG", + "value": 0 + }, + { + "name": "REFLECTION_SOURCE_DISABLED", + "value": 1 + }, + { + "name": "REFLECTION_SOURCE_SKY", + "value": 2 + } + ] + }, + { + "name": "ToneMapper", + "values": [ + { + "name": "TONE_MAPPER_LINEAR", + "value": 0 + }, + { + "name": "TONE_MAPPER_REINHARDT", + "value": 1 + }, + { + "name": "TONE_MAPPER_FILMIC", + "value": 2 + }, + { + "name": "TONE_MAPPER_ACES", + "value": 3 + } + ] + }, + { + "name": "GlowBlendMode", + "values": [ + { + "name": "GLOW_BLEND_MODE_ADDITIVE", + "value": 0 + }, + { + "name": "GLOW_BLEND_MODE_SCREEN", + "value": 1 + }, + { + "name": "GLOW_BLEND_MODE_SOFTLIGHT", + "value": 2 + }, + { + "name": "GLOW_BLEND_MODE_REPLACE", + "value": 3 + }, + { + "name": "GLOW_BLEND_MODE_MIX", + "value": 4 + } + ] + }, + { + "name": "SDFGIYScale", + "values": [ + { + "name": "SDFGI_Y_SCALE_50_PERCENT", + "value": 0 + }, + { + "name": "SDFGI_Y_SCALE_75_PERCENT", + "value": 1 + }, + { + "name": "SDFGI_Y_SCALE_100_PERCENT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_background", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Environment.BGMode" + } + ] + }, + { + "name": "get_background", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Environment.BGMode" + } + }, + { + "name": "set_sky", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sky", + "type": "Sky" + } + ] + }, + { + "name": "get_sky", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Sky" + } + }, + { + "name": "set_sky_custom_fov", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sky_custom_fov", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sky_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "euler_radians", + "type": "Vector3" + } + ] + }, + { + "name": "get_sky_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_bg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_bg_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_bg_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bg_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_canvas_max_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_canvas_max_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_camera_feed_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_camera_feed_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_ambient_light_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_ambient_light_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_ambient_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "source", + "type": "enum::Environment.AmbientSource" + } + ] + }, + { + "name": "get_ambient_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Environment.AmbientSource" + } + }, + { + "name": "set_ambient_light_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ambient_light_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ambient_light_sky_contribution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ambient_light_sky_contribution", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_reflection_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "source", + "type": "enum::Environment.ReflectionSource" + } + ] + }, + { + "name": "get_reflection_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Environment.ReflectionSource" + } + }, + { + "name": "set_tonemapper", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Environment.ToneMapper" + } + ] + }, + { + "name": "get_tonemapper", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Environment.ToneMapper" + } + }, + { + "name": "set_tonemap_exposure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tonemap_exposure", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tonemap_white", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "white", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tonemap_white", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tonemap_auto_exposure_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_tonemap_auto_exposure_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tonemap_auto_exposure_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure_max", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tonemap_auto_exposure_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tonemap_auto_exposure_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure_min", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tonemap_auto_exposure_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tonemap_auto_exposure_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tonemap_auto_exposure_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_tonemap_auto_exposure_grey", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure_grey", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tonemap_auto_exposure_grey", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssr_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_ssr_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_ssr_max_steps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_steps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ssr_max_steps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_ssr_fade_in", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fade_in", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssr_fade_in", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssr_fade_out", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fade_out", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssr_fade_out", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssr_depth_tolerance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth_tolerance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssr_depth_tolerance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_ssao_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_ssao_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_intensity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_power", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "power", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_power", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_detail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_detail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_horizon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "horizon", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_horizon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_sharpness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sharpness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_sharpness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_direct_light_affect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_direct_light_affect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssao_ao_channel_affect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssao_ao_channel_affect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssil_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_ssil_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_ssil_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssil_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssil_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssil_intensity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssil_sharpness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sharpness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssil_sharpness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ssil_normal_rejection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal_rejection", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ssil_normal_rejection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_sdfgi_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_sdfgi_cascades", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sdfgi_cascades", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sdfgi_min_cell_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_min_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_max_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_cascade0_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_cascade0_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_y_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "enum::Environment.SDFGIYScale" + } + ] + }, + { + "name": "get_sdfgi_y_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Environment.SDFGIYScale" + } + }, + { + "name": "set_sdfgi_use_occlusion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_sdfgi_using_occlusion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_sdfgi_bounce_feedback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_bounce_feedback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_read_sky_light", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_sdfgi_reading_sky_light", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_sdfgi_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_normal_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_normal_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sdfgi_probe_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sdfgi_probe_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_glow_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_glow_level", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_level", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_glow_normalized", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normalize", + "type": "bool" + } + ] + }, + { + "name": "is_glow_normalized", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_glow_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_intensity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_mix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mix", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_mix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_bloom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_bloom", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_blend_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Environment.GlowBlendMode" + } + ] + }, + { + "name": "get_glow_blend_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Environment.GlowBlendMode" + } + }, + { + "name": "set_glow_hdr_bleed_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "threshold", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_hdr_bleed_threshold", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_hdr_bleed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_hdr_bleed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_hdr_luminance_cap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_hdr_luminance_cap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_map_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_glow_map_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_glow_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "Texture" + } + ] + }, + { + "name": "get_glow_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture" + } + }, + { + "name": "set_fog_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_fog_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_fog_light_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light_color", + "type": "Color" + } + ] + }, + { + "name": "get_fog_light_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_fog_light_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light_energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fog_light_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fog_sun_scatter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sun_scatter", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fog_sun_scatter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fog_density", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "density", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fog_density", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fog_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fog_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fog_height_density", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height_density", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fog_height_density", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fog_aerial_perspective", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aerial_perspective", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fog_aerial_perspective", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_volumetric_fog_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_volumetric_fog_emission", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_volumetric_fog_emission", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_volumetric_fog_albedo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_volumetric_fog_albedo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_volumetric_fog_density", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "density", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_density", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_emission_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "begin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_emission_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_anisotropy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anisotropy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_anisotropy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_detail_spread", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail_spread", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_detail_spread", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_gi_inject", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gi_inject", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_gi_inject", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_ambient_inject", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_ambient_inject", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volumetric_fog_temporal_reprojection_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_volumetric_fog_temporal_reprojection_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_volumetric_fog_temporal_reprojection_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "temporal_reprojection_amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volumetric_fog_temporal_reprojection_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_adjustment_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_adjustment_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_adjustment_brightness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "brightness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_adjustment_brightness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_adjustment_contrast", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "contrast", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_adjustment_contrast", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_adjustment_saturation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "saturation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_adjustment_saturation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_adjustment_color_correction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color_correction", + "type": "Texture" + } + ] + }, + { + "name": "get_adjustment_color_correction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture" + } + } + ], + "properties": [ + { + "type": "int", + "name": "background_mode", + "setter": "set_background", + "getter": "get_background", + "index": -1 + }, + { + "type": "Color", + "name": "background_color", + "setter": "set_bg_color", + "getter": "get_bg_color", + "index": -1 + }, + { + "type": "float", + "name": "background_energy", + "setter": "set_bg_energy", + "getter": "get_bg_energy", + "index": -1 + }, + { + "type": "int", + "name": "background_canvas_max_layer", + "setter": "set_canvas_max_layer", + "getter": "get_canvas_max_layer", + "index": -1 + }, + { + "type": "int", + "name": "background_camera_feed_id", + "setter": "set_camera_feed_id", + "getter": "get_camera_feed_id", + "index": -1 + }, + { + "type": "Sky", + "name": "sky", + "setter": "set_sky", + "getter": "get_sky", + "index": -1 + }, + { + "type": "float", + "name": "sky_custom_fov", + "setter": "set_sky_custom_fov", + "getter": "get_sky_custom_fov", + "index": -1 + }, + { + "type": "Vector3", + "name": "sky_rotation", + "setter": "set_sky_rotation", + "getter": "get_sky_rotation", + "index": -1 + }, + { + "type": "int", + "name": "ambient_light_source", + "setter": "set_ambient_source", + "getter": "get_ambient_source", + "index": -1 + }, + { + "type": "Color", + "name": "ambient_light_color", + "setter": "set_ambient_light_color", + "getter": "get_ambient_light_color", + "index": -1 + }, + { + "type": "float", + "name": "ambient_light_sky_contribution", + "setter": "set_ambient_light_sky_contribution", + "getter": "get_ambient_light_sky_contribution", + "index": -1 + }, + { + "type": "float", + "name": "ambient_light_energy", + "setter": "set_ambient_light_energy", + "getter": "get_ambient_light_energy", + "index": -1 + }, + { + "type": "int", + "name": "reflected_light_source", + "setter": "set_reflection_source", + "getter": "get_reflection_source", + "index": -1 + }, + { + "type": "int", + "name": "tonemap_mode", + "setter": "set_tonemapper", + "getter": "get_tonemapper", + "index": -1 + }, + { + "type": "float", + "name": "tonemap_exposure", + "setter": "set_tonemap_exposure", + "getter": "get_tonemap_exposure", + "index": -1 + }, + { + "type": "float", + "name": "tonemap_white", + "setter": "set_tonemap_white", + "getter": "get_tonemap_white", + "index": -1 + }, + { + "type": "bool", + "name": "auto_exposure_enabled", + "setter": "set_tonemap_auto_exposure_enabled", + "getter": "is_tonemap_auto_exposure_enabled", + "index": -1 + }, + { + "type": "float", + "name": "auto_exposure_scale", + "setter": "set_tonemap_auto_exposure_grey", + "getter": "get_tonemap_auto_exposure_grey", + "index": -1 + }, + { + "type": "float", + "name": "auto_exposure_min_luma", + "setter": "set_tonemap_auto_exposure_min", + "getter": "get_tonemap_auto_exposure_min", + "index": -1 + }, + { + "type": "float", + "name": "auto_exposure_max_luma", + "setter": "set_tonemap_auto_exposure_max", + "getter": "get_tonemap_auto_exposure_max", + "index": -1 + }, + { + "type": "float", + "name": "auto_exposure_speed", + "setter": "set_tonemap_auto_exposure_speed", + "getter": "get_tonemap_auto_exposure_speed", + "index": -1 + }, + { + "type": "bool", + "name": "ssr_enabled", + "setter": "set_ssr_enabled", + "getter": "is_ssr_enabled", + "index": -1 + }, + { + "type": "int", + "name": "ssr_max_steps", + "setter": "set_ssr_max_steps", + "getter": "get_ssr_max_steps", + "index": -1 + }, + { + "type": "float", + "name": "ssr_fade_in", + "setter": "set_ssr_fade_in", + "getter": "get_ssr_fade_in", + "index": -1 + }, + { + "type": "float", + "name": "ssr_fade_out", + "setter": "set_ssr_fade_out", + "getter": "get_ssr_fade_out", + "index": -1 + }, + { + "type": "float", + "name": "ssr_depth_tolerance", + "setter": "set_ssr_depth_tolerance", + "getter": "get_ssr_depth_tolerance", + "index": -1 + }, + { + "type": "bool", + "name": "ssao_enabled", + "setter": "set_ssao_enabled", + "getter": "is_ssao_enabled", + "index": -1 + }, + { + "type": "float", + "name": "ssao_radius", + "setter": "set_ssao_radius", + "getter": "get_ssao_radius", + "index": -1 + }, + { + "type": "float", + "name": "ssao_intensity", + "setter": "set_ssao_intensity", + "getter": "get_ssao_intensity", + "index": -1 + }, + { + "type": "float", + "name": "ssao_power", + "setter": "set_ssao_power", + "getter": "get_ssao_power", + "index": -1 + }, + { + "type": "float", + "name": "ssao_detail", + "setter": "set_ssao_detail", + "getter": "get_ssao_detail", + "index": -1 + }, + { + "type": "float", + "name": "ssao_horizon", + "setter": "set_ssao_horizon", + "getter": "get_ssao_horizon", + "index": -1 + }, + { + "type": "float", + "name": "ssao_sharpness", + "setter": "set_ssao_sharpness", + "getter": "get_ssao_sharpness", + "index": -1 + }, + { + "type": "float", + "name": "ssao_light_affect", + "setter": "set_ssao_direct_light_affect", + "getter": "get_ssao_direct_light_affect", + "index": -1 + }, + { + "type": "float", + "name": "ssao_ao_channel_affect", + "setter": "set_ssao_ao_channel_affect", + "getter": "get_ssao_ao_channel_affect", + "index": -1 + }, + { + "type": "bool", + "name": "ssil_enabled", + "setter": "set_ssil_enabled", + "getter": "is_ssil_enabled", + "index": -1 + }, + { + "type": "float", + "name": "ssil_radius", + "setter": "set_ssil_radius", + "getter": "get_ssil_radius", + "index": -1 + }, + { + "type": "float", + "name": "ssil_intensity", + "setter": "set_ssil_intensity", + "getter": "get_ssil_intensity", + "index": -1 + }, + { + "type": "float", + "name": "ssil_sharpness", + "setter": "set_ssil_sharpness", + "getter": "get_ssil_sharpness", + "index": -1 + }, + { + "type": "float", + "name": "ssil_normal_rejection", + "setter": "set_ssil_normal_rejection", + "getter": "get_ssil_normal_rejection", + "index": -1 + }, + { + "type": "bool", + "name": "sdfgi_enabled", + "setter": "set_sdfgi_enabled", + "getter": "is_sdfgi_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "sdfgi_use_occlusion", + "setter": "set_sdfgi_use_occlusion", + "getter": "is_sdfgi_using_occlusion", + "index": -1 + }, + { + "type": "bool", + "name": "sdfgi_read_sky_light", + "setter": "set_sdfgi_read_sky_light", + "getter": "is_sdfgi_reading_sky_light", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_bounce_feedback", + "setter": "set_sdfgi_bounce_feedback", + "getter": "get_sdfgi_bounce_feedback", + "index": -1 + }, + { + "type": "int", + "name": "sdfgi_cascades", + "setter": "set_sdfgi_cascades", + "getter": "get_sdfgi_cascades", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_min_cell_size", + "setter": "set_sdfgi_min_cell_size", + "getter": "get_sdfgi_min_cell_size", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_cascade0_distance", + "setter": "set_sdfgi_cascade0_distance", + "getter": "get_sdfgi_cascade0_distance", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_max_distance", + "setter": "set_sdfgi_max_distance", + "getter": "get_sdfgi_max_distance", + "index": -1 + }, + { + "type": "int", + "name": "sdfgi_y_scale", + "setter": "set_sdfgi_y_scale", + "getter": "get_sdfgi_y_scale", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_energy", + "setter": "set_sdfgi_energy", + "getter": "get_sdfgi_energy", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_normal_bias", + "setter": "set_sdfgi_normal_bias", + "getter": "get_sdfgi_normal_bias", + "index": -1 + }, + { + "type": "float", + "name": "sdfgi_probe_bias", + "setter": "set_sdfgi_probe_bias", + "getter": "get_sdfgi_probe_bias", + "index": -1 + }, + { + "type": "bool", + "name": "glow_enabled", + "setter": "set_glow_enabled", + "getter": "is_glow_enabled", + "index": -1 + }, + { + "type": "float", + "name": "glow_levels/1", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 0 + }, + { + "type": "float", + "name": "glow_levels/2", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 1 + }, + { + "type": "float", + "name": "glow_levels/3", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 2 + }, + { + "type": "float", + "name": "glow_levels/4", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 3 + }, + { + "type": "float", + "name": "glow_levels/5", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 4 + }, + { + "type": "float", + "name": "glow_levels/6", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 5 + }, + { + "type": "float", + "name": "glow_levels/7", + "setter": "set_glow_level", + "getter": "get_glow_level", + "index": 6 + }, + { + "type": "bool", + "name": "glow_normalized", + "setter": "set_glow_normalized", + "getter": "is_glow_normalized", + "index": -1 + }, + { + "type": "float", + "name": "glow_intensity", + "setter": "set_glow_intensity", + "getter": "get_glow_intensity", + "index": -1 + }, + { + "type": "float", + "name": "glow_strength", + "setter": "set_glow_strength", + "getter": "get_glow_strength", + "index": -1 + }, + { + "type": "float", + "name": "glow_mix", + "setter": "set_glow_mix", + "getter": "get_glow_mix", + "index": -1 + }, + { + "type": "float", + "name": "glow_bloom", + "setter": "set_glow_bloom", + "getter": "get_glow_bloom", + "index": -1 + }, + { + "type": "int", + "name": "glow_blend_mode", + "setter": "set_glow_blend_mode", + "getter": "get_glow_blend_mode", + "index": -1 + }, + { + "type": "float", + "name": "glow_hdr_threshold", + "setter": "set_glow_hdr_bleed_threshold", + "getter": "get_glow_hdr_bleed_threshold", + "index": -1 + }, + { + "type": "float", + "name": "glow_hdr_scale", + "setter": "set_glow_hdr_bleed_scale", + "getter": "get_glow_hdr_bleed_scale", + "index": -1 + }, + { + "type": "float", + "name": "glow_hdr_luminance_cap", + "setter": "set_glow_hdr_luminance_cap", + "getter": "get_glow_hdr_luminance_cap", + "index": -1 + }, + { + "type": "float", + "name": "glow_map_strength", + "setter": "set_glow_map_strength", + "getter": "get_glow_map_strength", + "index": -1 + }, + { + "type": "Texture2D", + "name": "glow_map", + "setter": "set_glow_map", + "getter": "get_glow_map", + "index": -1 + }, + { + "type": "bool", + "name": "fog_enabled", + "setter": "set_fog_enabled", + "getter": "is_fog_enabled", + "index": -1 + }, + { + "type": "Color", + "name": "fog_light_color", + "setter": "set_fog_light_color", + "getter": "get_fog_light_color", + "index": -1 + }, + { + "type": "float", + "name": "fog_light_energy", + "setter": "set_fog_light_energy", + "getter": "get_fog_light_energy", + "index": -1 + }, + { + "type": "float", + "name": "fog_sun_scatter", + "setter": "set_fog_sun_scatter", + "getter": "get_fog_sun_scatter", + "index": -1 + }, + { + "type": "float", + "name": "fog_density", + "setter": "set_fog_density", + "getter": "get_fog_density", + "index": -1 + }, + { + "type": "float", + "name": "fog_aerial_perspective", + "setter": "set_fog_aerial_perspective", + "getter": "get_fog_aerial_perspective", + "index": -1 + }, + { + "type": "float", + "name": "fog_height", + "setter": "set_fog_height", + "getter": "get_fog_height", + "index": -1 + }, + { + "type": "float", + "name": "fog_height_density", + "setter": "set_fog_height_density", + "getter": "get_fog_height_density", + "index": -1 + }, + { + "type": "bool", + "name": "volumetric_fog_enabled", + "setter": "set_volumetric_fog_enabled", + "getter": "is_volumetric_fog_enabled", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_density", + "setter": "set_volumetric_fog_density", + "getter": "get_volumetric_fog_density", + "index": -1 + }, + { + "type": "Color", + "name": "volumetric_fog_albedo", + "setter": "set_volumetric_fog_albedo", + "getter": "get_volumetric_fog_albedo", + "index": -1 + }, + { + "type": "Color", + "name": "volumetric_fog_emission", + "setter": "set_volumetric_fog_emission", + "getter": "get_volumetric_fog_emission", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_emission_energy", + "setter": "set_volumetric_fog_emission_energy", + "getter": "get_volumetric_fog_emission_energy", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_gi_inject", + "setter": "set_volumetric_fog_gi_inject", + "getter": "get_volumetric_fog_gi_inject", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_anisotropy", + "setter": "set_volumetric_fog_anisotropy", + "getter": "get_volumetric_fog_anisotropy", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_length", + "setter": "set_volumetric_fog_length", + "getter": "get_volumetric_fog_length", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_detail_spread", + "setter": "set_volumetric_fog_detail_spread", + "getter": "get_volumetric_fog_detail_spread", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_ambient_inject", + "setter": "set_volumetric_fog_ambient_inject", + "getter": "get_volumetric_fog_ambient_inject", + "index": -1 + }, + { + "type": "bool", + "name": "volumetric_fog_temporal_reprojection_enabled", + "setter": "set_volumetric_fog_temporal_reprojection_enabled", + "getter": "is_volumetric_fog_temporal_reprojection_enabled", + "index": -1 + }, + { + "type": "float", + "name": "volumetric_fog_temporal_reprojection_amount", + "setter": "set_volumetric_fog_temporal_reprojection_amount", + "getter": "get_volumetric_fog_temporal_reprojection_amount", + "index": -1 + }, + { + "type": "bool", + "name": "adjustment_enabled", + "setter": "set_adjustment_enabled", + "getter": "is_adjustment_enabled", + "index": -1 + }, + { + "type": "float", + "name": "adjustment_brightness", + "setter": "set_adjustment_brightness", + "getter": "get_adjustment_brightness", + "index": -1 + }, + { + "type": "float", + "name": "adjustment_contrast", + "setter": "set_adjustment_contrast", + "getter": "get_adjustment_contrast", + "index": -1 + }, + { + "type": "float", + "name": "adjustment_saturation", + "setter": "set_adjustment_saturation", + "getter": "get_adjustment_saturation", + "index": -1 + }, + { + "type": "Texture2D,Texture3D", + "name": "adjustment_color_correction", + "setter": "set_adjustment_color_correction", + "getter": "get_adjustment_color_correction", + "index": -1 + } + ] + }, + { + "name": "Expression", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "parse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "expression", + "type": "String" + }, + { + "name": "input_names", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + } + ] + }, + { + "name": "execute", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1604761611, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "inputs", + "type": "Array", + "default_value": "[]" + }, + { + "name": "base_instance", + "type": "Object", + "default_value": "null" + }, + { + "name": "show_error", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "has_execute_failed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_error_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ] + }, + { + "name": "FastNoiseLite", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Noise", + "api_type": "core", + "enums": [ + { + "name": "NoiseType", + "values": [ + { + "name": "TYPE_VALUE", + "value": 5 + }, + { + "name": "TYPE_VALUE_CUBIC", + "value": 4 + }, + { + "name": "TYPE_PERLIN", + "value": 3 + }, + { + "name": "TYPE_CELLULAR", + "value": 2 + }, + { + "name": "TYPE_SIMPLEX", + "value": 0 + }, + { + "name": "TYPE_SIMPLEX_SMOOTH", + "value": 1 + } + ] + }, + { + "name": "FractalType", + "values": [ + { + "name": "FRACTAL_NONE", + "value": 0 + }, + { + "name": "FRACTAL_FBM", + "value": 1 + }, + { + "name": "FRACTAL_RIDGED", + "value": 2 + }, + { + "name": "FRACTAL_PING_PONG", + "value": 3 + } + ] + }, + { + "name": "CellularDistanceFunction", + "values": [ + { + "name": "DISTANCE_EUCLIDEAN", + "value": 0 + }, + { + "name": "DISTANCE_EUCLIDEAN_SQUARED", + "value": 1 + }, + { + "name": "DISTANCE_MANHATTAN", + "value": 2 + }, + { + "name": "DISTANCE_HYBRID", + "value": 3 + } + ] + }, + { + "name": "CellularReturnType", + "values": [ + { + "name": "RETURN_CELL_VALUE", + "value": 0 + }, + { + "name": "RETURN_DISTANCE", + "value": 1 + }, + { + "name": "RETURN_DISTANCE2", + "value": 2 + }, + { + "name": "RETURN_DISTANCE2_ADD", + "value": 3 + }, + { + "name": "RETURN_DISTANCE2_SUB", + "value": 4 + }, + { + "name": "RETURN_DISTANCE2_MUL", + "value": 5 + }, + { + "name": "RETURN_DISTANCE2_DIV", + "value": 6 + } + ] + }, + { + "name": "DomainWarpType", + "values": [ + { + "name": "DOMAIN_WARP_SIMPLEX", + "value": 0 + }, + { + "name": "DOMAIN_WARP_SIMPLEX_REDUCED", + "value": 1 + }, + { + "name": "DOMAIN_WARP_BASIC_GRID", + "value": 2 + } + ] + }, + { + "name": "DomainWarpFractalType", + "values": [ + { + "name": "DOMAIN_WARP_FRACTAL_NONE", + "value": 0 + }, + { + "name": "DOMAIN_WARP_FRACTAL_PROGRESSIVE", + "value": 1 + }, + { + "name": "DOMAIN_WARP_FRACTAL_INDEPENDENT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_noise_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::FastNoiseLite.NoiseType" + } + ] + }, + { + "name": "get_noise_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FastNoiseLite.NoiseType" + } + }, + { + "name": "set_seed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seed", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_seed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_frequency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "freq", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_frequency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_fractal_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::FastNoiseLite.FractalType" + } + ] + }, + { + "name": "get_fractal_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FastNoiseLite.FractalType" + } + }, + { + "name": "set_fractal_octaves", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "octave_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fractal_octaves", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_fractal_lacunarity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lacunarity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fractal_lacunarity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fractal_gain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gain", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fractal_gain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fractal_weighted_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "weighted_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fractal_weighted_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fractal_ping_pong_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ping_pong_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fractal_ping_pong_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_cellular_distance_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::FastNoiseLite.CellularDistanceFunction" + } + ] + }, + { + "name": "get_cellular_distance_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FastNoiseLite.CellularDistanceFunction" + } + }, + { + "name": "set_cellular_jitter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "jitter", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cellular_jitter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_cellular_return_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ret", + "type": "enum::FastNoiseLite.CellularReturnType" + } + ] + }, + { + "name": "get_cellular_return_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FastNoiseLite.CellularReturnType" + } + }, + { + "name": "set_domain_warp_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_enabled", + "type": "bool" + } + ] + }, + { + "name": "is_domain_warp_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_domain_warp_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_type", + "type": "enum::FastNoiseLite.DomainWarpType" + } + ] + }, + { + "name": "get_domain_warp_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FastNoiseLite.DomainWarpType" + } + }, + { + "name": "set_domain_warp_amplitude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_amplitude", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_domain_warp_amplitude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_domain_warp_frequency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_frequency", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_domain_warp_frequency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_domain_warp_fractal_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_fractal_type", + "type": "enum::FastNoiseLite.DomainWarpFractalType" + } + ] + }, + { + "name": "get_domain_warp_fractal_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FastNoiseLite.DomainWarpFractalType" + } + }, + { + "name": "set_domain_warp_fractal_octaves", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_octave_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_domain_warp_fractal_octaves", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_domain_warp_fractal_lacunarity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_lacunarity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_domain_warp_fractal_lacunarity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_domain_warp_fractal_gain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "domain_warp_gain", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_domain_warp_fractal_gain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "noise_type", + "setter": "set_noise_type", + "getter": "get_noise_type", + "index": -1 + }, + { + "type": "int", + "name": "seed", + "setter": "set_seed", + "getter": "get_seed", + "index": -1 + }, + { + "type": "float", + "name": "frequency", + "setter": "set_frequency", + "getter": "get_frequency", + "index": -1 + }, + { + "type": "Vector3", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "int", + "name": "fractal_type", + "setter": "set_fractal_type", + "getter": "get_fractal_type", + "index": -1 + }, + { + "type": "int", + "name": "fractal_octaves", + "setter": "set_fractal_octaves", + "getter": "get_fractal_octaves", + "index": -1 + }, + { + "type": "float", + "name": "fractal_lacunarity", + "setter": "set_fractal_lacunarity", + "getter": "get_fractal_lacunarity", + "index": -1 + }, + { + "type": "float", + "name": "fractal_gain", + "setter": "set_fractal_gain", + "getter": "get_fractal_gain", + "index": -1 + }, + { + "type": "float", + "name": "fractal_weighted_strength", + "setter": "set_fractal_weighted_strength", + "getter": "get_fractal_weighted_strength", + "index": -1 + }, + { + "type": "float", + "name": "fractal_ping_pong_strength", + "setter": "set_fractal_ping_pong_strength", + "getter": "get_fractal_ping_pong_strength", + "index": -1 + }, + { + "type": "int", + "name": "cellular_distance_function", + "setter": "set_cellular_distance_function", + "getter": "get_cellular_distance_function", + "index": -1 + }, + { + "type": "float", + "name": "cellular_jitter", + "setter": "set_cellular_jitter", + "getter": "get_cellular_jitter", + "index": -1 + }, + { + "type": "int", + "name": "cellular_return_type", + "setter": "set_cellular_return_type", + "getter": "get_cellular_return_type", + "index": -1 + }, + { + "type": "bool", + "name": "domain_warp_enabled", + "setter": "set_domain_warp_enabled", + "getter": "is_domain_warp_enabled", + "index": -1 + }, + { + "type": "int", + "name": "domain_warp_type", + "setter": "set_domain_warp_type", + "getter": "get_domain_warp_type", + "index": -1 + }, + { + "type": "float", + "name": "domain_warp_amplitude", + "setter": "set_domain_warp_amplitude", + "getter": "get_domain_warp_amplitude", + "index": -1 + }, + { + "type": "float", + "name": "domain_warp_frequency", + "setter": "set_domain_warp_frequency", + "getter": "get_domain_warp_frequency", + "index": -1 + }, + { + "type": "int", + "name": "domain_warp_fractal_type", + "setter": "set_domain_warp_fractal_type", + "getter": "get_domain_warp_fractal_type", + "index": -1 + }, + { + "type": "int", + "name": "domain_warp_fractal_octaves", + "setter": "set_domain_warp_fractal_octaves", + "getter": "get_domain_warp_fractal_octaves", + "index": -1 + }, + { + "type": "float", + "name": "domain_warp_fractal_lacunarity", + "setter": "set_domain_warp_fractal_lacunarity", + "getter": "get_domain_warp_fractal_lacunarity", + "index": -1 + }, + { + "type": "float", + "name": "domain_warp_fractal_gain", + "setter": "set_domain_warp_fractal_gain", + "getter": "get_domain_warp_fractal_gain", + "index": -1 + } + ] + }, + { + "name": "File", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "ModeFlags", + "values": [ + { + "name": "READ", + "value": 1 + }, + { + "name": "WRITE", + "value": 2 + }, + { + "name": "READ_WRITE", + "value": 3 + }, + { + "name": "WRITE_READ", + "value": 7 + } + ] + }, + { + "name": "CompressionMode", + "values": [ + { + "name": "COMPRESSION_FASTLZ", + "value": 0 + }, + { + "name": "COMPRESSION_DEFLATE", + "value": 1 + }, + { + "name": "COMPRESSION_ZSTD", + "value": 2 + }, + { + "name": "COMPRESSION_GZIP", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "open_encrypted", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "mode_flags", + "type": "enum::File.ModeFlags" + }, + { + "name": "key", + "type": "PackedByteArray" + } + ] + }, + { + "name": "open_encrypted_with_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "mode_flags", + "type": "enum::File.ModeFlags" + }, + { + "name": "pass", + "type": "String" + } + ] + }, + { + "name": "open_compressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "mode_flags", + "type": "enum::File.ModeFlags" + }, + { + "name": "compression_mode", + "type": "enum::File.CompressionMode", + "default_value": "0" + } + ] + }, + { + "name": "open", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "flags", + "type": "enum::File.ModeFlags" + } + ] + }, + { + "name": "flush", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_path_absolute", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_open", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "seek_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "position", + "type": "int", + "meta": "int64", + "default_value": "0" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "eof_reached", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_8", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint8" + } + }, + { + "name": "get_16", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "get_32", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_64", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_float", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_double", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_real", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_csv_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 365838458, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "delim", + "type": "String", + "default_value": "\",\"" + } + ] + }, + { + "name": "get_as_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_md5", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_sha256", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "is_big_endian", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_big_endian", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "big_endian", + "type": "bool" + } + ] + }, + { + "name": "get_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "get_var", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "store_8", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint8" + } + ] + }, + { + "name": "store_16", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint16" + } + ] + }, + { + "name": "store_32", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "store_64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "store_float", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "store_double", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "store_real", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "store_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + }, + { + "name": "store_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line", + "type": "String" + } + ] + }, + { + "name": "store_csv_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "values", + "type": "PackedStringArray" + }, + { + "name": "delim", + "type": "String", + "default_value": "\",\"" + } + ] + }, + { + "name": "store_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, + { + "name": "store_var", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "value", + "type": "Variant" + }, + { + "name": "full_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "store_pascal_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, + { + "name": "get_pascal_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "file_exists", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_modified_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "big_endian", + "setter": "set_big_endian", + "getter": "is_big_endian", + "index": -1 + } + ] + }, + { + "name": "FileDialog", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "ConfirmationDialog", + "api_type": "core", + "enums": [ + { + "name": "FileMode", + "values": [ + { + "name": "FILE_MODE_OPEN_FILE", + "value": 0 + }, + { + "name": "FILE_MODE_OPEN_FILES", + "value": 1 + }, + { + "name": "FILE_MODE_OPEN_DIR", + "value": 2 + }, + { + "name": "FILE_MODE_OPEN_ANY", + "value": 3 + }, + { + "name": "FILE_MODE_SAVE_FILE", + "value": 4 + } + ] + }, + { + "name": "Access", + "values": [ + { + "name": "ACCESS_RESOURCES", + "value": 0 + }, + { + "name": "ACCESS_USERDATA", + "value": 1 + }, + { + "name": "ACCESS_FILESYSTEM", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "clear_filters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "String" + } + ] + }, + { + "name": "set_filters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filters", + "type": "PackedStringArray" + } + ] + }, + { + "name": "get_filters", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_current_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_current_file", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_current_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_current_dir", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "dir", + "type": "String" + } + ] + }, + { + "name": "set_current_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "set_current_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "set_mode_overrides_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override", + "type": "bool" + } + ] + }, + { + "name": "is_mode_overriding_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_file_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::FileDialog.FileMode" + } + ] + }, + { + "name": "get_file_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FileDialog.FileMode" + } + }, + { + "name": "get_vbox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "VBoxContainer" + } + }, + { + "name": "get_line_edit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "LineEdit" + } + }, + { + "name": "set_access", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "access", + "type": "enum::FileDialog.Access" + } + ] + }, + { + "name": "get_access", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::FileDialog.Access" + } + }, + { + "name": "set_show_hidden_files", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "show", + "type": "bool" + } + ] + }, + { + "name": "is_showing_hidden_files", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "deselect_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "invalidate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "signals": [ + { + "name": "file_selected", + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "files_selected", + "arguments": [ + { + "name": "paths", + "type": "PackedStringArray" + } + ] + }, + { + "name": "dir_selected", + "arguments": [ + { + "name": "dir", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "mode_overrides_title", + "setter": "set_mode_overrides_title", + "getter": "is_mode_overriding_title", + "index": -1 + }, + { + "type": "int", + "name": "file_mode", + "setter": "set_file_mode", + "getter": "get_file_mode", + "index": -1 + }, + { + "type": "int", + "name": "access", + "setter": "set_access", + "getter": "get_access", + "index": -1 + }, + { + "type": "PackedStringArray", + "name": "filters", + "setter": "set_filters", + "getter": "get_filters", + "index": -1 + }, + { + "type": "bool", + "name": "show_hidden_files", + "setter": "set_show_hidden_files", + "getter": "is_showing_hidden_files", + "index": -1 + }, + { + "type": "String", + "name": "current_dir", + "setter": "set_current_dir", + "getter": "get_current_dir", + "index": -1 + }, + { + "type": "String", + "name": "current_file", + "setter": "set_current_file", + "getter": "get_current_file", + "index": -1 + }, + { + "type": "String", + "name": "current_path", + "setter": "set_current_path", + "getter": "get_current_path", + "index": -1 + } + ] + }, + { + "name": "FileSystemDock", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "VBoxContainer", + "api_type": "editor", + "methods": [ + { + "name": "navigate_to_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ], + "signals": [ + { + "name": "inherit", + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "instance", + "arguments": [ + { + "name": "files", + "type": "PackedStringArray" + } + ] + }, + { + "name": "file_removed", + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "folder_removed", + "arguments": [ + { + "name": "folder", + "type": "String" + } + ] + }, + { + "name": "files_moved", + "arguments": [ + { + "name": "old_file", + "type": "String" + }, + { + "name": "new_file", + "type": "String" + } + ] + }, + { + "name": "folder_moved", + "arguments": [ + { + "name": "old_folder", + "type": "String" + }, + { + "name": "new_file", + "type": "String" + } + ] + }, + { + "name": "display_mode_changed" + } + ] + }, + { + "name": "FlowContainer", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Container", + "api_type": "core", + "methods": [ + { + "name": "get_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "FogMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "methods": [ + { + "name": "set_density", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "density", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_density", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_albedo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "albedo", + "type": "Color" + } + ] + }, + { + "name": "get_albedo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_emission", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emission", + "type": "Color" + } + ] + }, + { + "name": "get_emission", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_height_falloff", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height_falloff", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height_falloff", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_edge_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "edge_fade", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_edge_fade", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_density_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "density_texture", + "type": "Texture3D" + } + ] + }, + { + "name": "get_density_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture3D" + } + } + ], + "properties": [ + { + "type": "float", + "name": "density", + "setter": "set_density", + "getter": "get_density", + "index": -1 + }, + { + "type": "Color", + "name": "albedo", + "setter": "set_albedo", + "getter": "get_albedo", + "index": -1 + }, + { + "type": "Color", + "name": "emission", + "setter": "set_emission", + "getter": "get_emission", + "index": -1 + }, + { + "type": "float", + "name": "height_falloff", + "setter": "set_height_falloff", + "getter": "get_height_falloff", + "index": -1 + }, + { + "type": "float", + "name": "edge_fade", + "setter": "set_edge_fade", + "getter": "get_edge_fade", + "index": -1 + }, + { + "type": "Texture3D", + "name": "density_texture", + "setter": "set_density_texture", + "getter": "get_density_texture", + "index": -1 + } + ] + }, + { + "name": "FogVolume", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::RenderingServer.FogVolumeShape" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingServer.FogVolumeShape" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "int", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "FogMaterial,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + } + ] + }, + { + "name": "Font", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "add_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "FontData" + } + ] + }, + { + "name": "set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "FontData" + } + ] + }, + { + "name": "get_data_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "FontData" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_data_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "remove_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_variation_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "variation_coordinates", + "type": "Dictionary" + } + ] + }, + { + "name": "get_variation_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4222031257, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + } + ] + }, + { + "name": "get_ascent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4222031257, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + } + ] + }, + { + "name": "get_descent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4222031257, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + } + ] + }, + { + "name": "get_underline_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4222031257, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + } + ] + }, + { + "name": "get_underline_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4222031257, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + } + ] + }, + { + "name": "get_string_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2495867029, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "flags", + "type": "int", + "meta": "uint16", + "default_value": "3" + } + ] + }, + { + "name": "get_multiline_string_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1721178056, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "flags", + "type": "int", + "meta": "uint16", + "default_value": "96" + } + ] + }, + { + "name": "draw_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 788614421, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 0)" + }, + { + "name": "flags", + "type": "int", + "meta": "uint16", + "default_value": "3" + } + ] + }, + { + "name": "draw_multiline_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4242164481, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "max_lines", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 0)" + }, + { + "name": "flags", + "type": "int", + "meta": "uint16", + "default_value": "99" + } + ] + }, + { + "name": "get_char_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3892018839, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "char", + "type": "int" + }, + { + "name": "next", + "type": "int", + "default_value": "0" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + } + ] + }, + { + "name": "draw_char", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2263791, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "char", + "type": "int" + }, + { + "name": "next", + "type": "int", + "default_value": "0" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 0)" + } + ] + }, + { + "name": "has_char", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "char", + "type": "int" + } + ] + }, + { + "name": "get_supported_chars", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "update_changes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_rids", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "variation_coordinates", + "setter": "set_variation_coordinates", + "getter": "get_variation_coordinates", + "index": -1 + }, + { + "type": "int", + "name": "spacing_top", + "setter": "set_spacing", + "getter": "get_spacing", + "index": 2 + }, + { + "type": "int", + "name": "spacing_bottom", + "setter": "set_spacing", + "getter": "get_spacing", + "index": 3 + } + ] + }, + { + "name": "FontData", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "load_bitmap_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "load_dynamic_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "set_antialiased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "antialiased", + "type": "bool" + } + ] + }, + { + "name": "is_antialiased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_generate_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "generate_mipmaps", + "type": "bool" + } + ] + }, + { + "name": "get_generate_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_font_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_font_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_font_style_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_font_style_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_font_style", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "style", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_font_style", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_multichannel_signed_distance_field", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msdf", + "type": "bool" + } + ] + }, + { + "name": "is_multichannel_signed_distance_field", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_msdf_pixel_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msdf_pixel_range", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_msdf_pixel_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_msdf_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msdf_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_msdf_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_fixed_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fixed_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fixed_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_force_autohinter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force_autohinter", + "type": "bool" + } + ] + }, + { + "name": "is_force_autohinter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hinting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hinting", + "type": "enum::TextServer.Hinting" + } + ] + }, + { + "name": "get_hinting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Hinting" + } + }, + { + "name": "set_subpixel_positioning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subpixel_positioning", + "type": "enum::TextServer.SubpixelPositioning" + } + ] + }, + { + "name": "get_subpixel_positioning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.SubpixelPositioning" + } + }, + { + "name": "set_embolden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_embolden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_oversampling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "oversampling", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_oversampling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "find_cache", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "variation_coordinates", + "type": "Dictionary" + } + ] + }, + { + "name": "get_cache_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "clear_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "remove_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_size_cache_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_size_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_size_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "set_variation_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "variation_coordinates", + "type": "Dictionary" + } + ] + }, + { + "name": "get_variation_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ascent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "ascent", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ascent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_descent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "descent", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_descent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_underline_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "underline_position", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_underline_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_underline_thickness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "underline_thickness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_underline_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "spacing_type", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "spacing_type", + "type": "enum::TextServer.SpacingType" + } + ] + }, + { + "name": "get_texture_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "clear_textures", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "remove_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_texture_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int32" + }, + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "get_texture_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_texture_offsets", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_texture_offsets", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_glyph_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "clear_glyphs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "remove_glyph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_glyph_advance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + }, + { + "name": "advance", + "type": "Vector2" + } + ] + }, + { + "name": "get_glyph_advance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_glyph_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_glyph_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_glyph_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + }, + { + "name": "gl_size", + "type": "Vector2" + } + ] + }, + { + "name": "get_glyph_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_glyph_uv_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + }, + { + "name": "uv_rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_glyph_uv_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_glyph_texture_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + }, + { + "name": "texture_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_glyph_texture_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_kerning_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_kerning_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_kerning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + } + ] + }, + { + "name": "set_kerning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + }, + { + "name": "kerning", + "type": "Vector2" + } + ] + }, + { + "name": "get_kerning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + } + ] + }, + { + "name": "render_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "end", + "type": "int" + } + ] + }, + { + "name": "render_glyph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_cache_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_language_supported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "set_language_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "language", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "get_language_support_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "remove_language_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language_support_overrides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "is_script_supported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "set_script_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "script", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "get_script_support_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "remove_script_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "get_script_support_overrides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_opentype_feature_overrides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "overrides", + "type": "Dictionary" + } + ] + }, + { + "name": "get_opentype_feature_overrides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "has_char", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "char", + "type": "int" + } + ] + }, + { + "name": "get_supported_chars", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_glyph_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "char", + "type": "int" + }, + { + "name": "variation_selector", + "type": "int" + } + ] + }, + { + "name": "get_supported_feature_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_supported_variation_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + } + ], + "properties": [ + { + "type": "PackedByteArray", + "name": "data", + "setter": "set_data", + "getter": "get_data", + "index": -1 + }, + { + "type": "bool", + "name": "generate_mipmaps", + "setter": "set_generate_mipmaps", + "getter": "get_generate_mipmaps", + "index": -1 + }, + { + "type": "bool", + "name": "antialiased", + "setter": "set_antialiased", + "getter": "is_antialiased", + "index": -1 + }, + { + "type": "String", + "name": "font_name", + "setter": "set_font_name", + "getter": "get_font_name", + "index": -1 + }, + { + "type": "String", + "name": "style_name", + "setter": "set_font_style_name", + "getter": "get_font_style_name", + "index": -1 + }, + { + "type": "int", + "name": "font_style", + "setter": "set_font_style", + "getter": "get_font_style", + "index": -1 + }, + { + "type": "int", + "name": "subpixel_positioning", + "setter": "set_subpixel_positioning", + "getter": "get_subpixel_positioning", + "index": -1 + }, + { + "type": "float", + "name": "embolden", + "setter": "set_embolden", + "getter": "get_embolden", + "index": -1 + }, + { + "type": "Transform2D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "bool", + "name": "multichannel_signed_distance_field", + "setter": "set_multichannel_signed_distance_field", + "getter": "is_multichannel_signed_distance_field", + "index": -1 + }, + { + "type": "int", + "name": "msdf_pixel_range", + "setter": "set_msdf_pixel_range", + "getter": "get_msdf_pixel_range", + "index": -1 + }, + { + "type": "int", + "name": "msdf_size", + "setter": "set_msdf_size", + "getter": "get_msdf_size", + "index": -1 + }, + { + "type": "bool", + "name": "force_autohinter", + "setter": "set_force_autohinter", + "getter": "is_force_autohinter", + "index": -1 + }, + { + "type": "int", + "name": "hinting", + "setter": "set_hinting", + "getter": "get_hinting", + "index": -1 + }, + { + "type": "float", + "name": "oversampling", + "setter": "set_oversampling", + "getter": "get_oversampling", + "index": -1 + }, + { + "type": "int", + "name": "fixed_size", + "setter": "set_fixed_size", + "getter": "get_fixed_size", + "index": -1 + }, + { + "type": "Dictionary", + "name": "opentype_feature_overrides", + "setter": "set_opentype_feature_overrides", + "getter": "get_opentype_feature_overrides", + "index": -1 + } + ] + }, + { + "name": "GDScript", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Script", + "api_type": "core", + "methods": [ + { + "name": "new", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 135338151, + "return_value": { + "type": "Variant" + } + }, + { + "name": "get_as_byte_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + } + ] + }, + { + "name": "GDScriptEditorTranslationParserPlugin", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "EditorTranslationParserPlugin", + "api_type": "core" + }, + { + "name": "GDScriptNativeClass", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "new", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Variant" + } + } + ] + }, + { + "name": "GLTFAccessor", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_buffer_view", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_buffer_view", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffer_view", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "byte_offset", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_component_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_component_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "component_type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_normalized", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_normalized", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normalized", + "type": "bool" + } + ] + }, + { + "name": "get_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedFloat64Array" + } + }, + { + "name": "set_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "min", + "type": "PackedFloat64Array" + } + ] + }, + { + "name": "get_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedFloat64Array" + } + }, + { + "name": "set_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max", + "type": "PackedFloat64Array" + } + ] + }, + { + "name": "get_sparse_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sparse_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sparse_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sparse_indices_buffer_view", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sparse_indices_buffer_view", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sparse_indices_buffer_view", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sparse_indices_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sparse_indices_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sparse_indices_byte_offset", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sparse_indices_component_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sparse_indices_component_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sparse_indices_component_type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sparse_values_buffer_view", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sparse_values_buffer_view", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sparse_values_buffer_view", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sparse_values_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sparse_values_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sparse_values_byte_offset", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "buffer_view", + "setter": "set_buffer_view", + "getter": "get_buffer_view", + "index": -1 + }, + { + "type": "int", + "name": "byte_offset", + "setter": "set_byte_offset", + "getter": "get_byte_offset", + "index": -1 + }, + { + "type": "int", + "name": "component_type", + "setter": "set_component_type", + "getter": "get_component_type", + "index": -1 + }, + { + "type": "bool", + "name": "normalized", + "setter": "set_normalized", + "getter": "get_normalized", + "index": -1 + }, + { + "type": "int", + "name": "count", + "setter": "set_count", + "getter": "get_count", + "index": -1 + }, + { + "type": "int", + "name": "type", + "setter": "set_type", + "getter": "get_type", + "index": -1 + }, + { + "type": "PackedFloat64Array", + "name": "min", + "setter": "set_min", + "getter": "get_min", + "index": -1 + }, + { + "type": "PackedFloat64Array", + "name": "max", + "setter": "set_max", + "getter": "get_max", + "index": -1 + }, + { + "type": "int", + "name": "sparse_count", + "setter": "set_sparse_count", + "getter": "get_sparse_count", + "index": -1 + }, + { + "type": "int", + "name": "sparse_indices_buffer_view", + "setter": "set_sparse_indices_buffer_view", + "getter": "get_sparse_indices_buffer_view", + "index": -1 + }, + { + "type": "int", + "name": "sparse_indices_byte_offset", + "setter": "set_sparse_indices_byte_offset", + "getter": "get_sparse_indices_byte_offset", + "index": -1 + }, + { + "type": "int", + "name": "sparse_indices_component_type", + "setter": "set_sparse_indices_component_type", + "getter": "get_sparse_indices_component_type", + "index": -1 + }, + { + "type": "int", + "name": "sparse_values_buffer_view", + "setter": "set_sparse_values_buffer_view", + "getter": "get_sparse_values_buffer_view", + "index": -1 + }, + { + "type": "int", + "name": "sparse_values_byte_offset", + "setter": "set_sparse_values_byte_offset", + "getter": "get_sparse_values_byte_offset", + "index": -1 + } + ] + }, + { + "name": "GLTFAnimation", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "loop", + "setter": "set_loop", + "getter": "get_loop", + "index": -1 + } + ] + }, + { + "name": "GLTFBufferView", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_byte_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "byte_offset", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_byte_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_byte_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "byte_length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_byte_stride", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_byte_stride", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "byte_stride", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_indices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_indices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "indices", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "buffer", + "setter": "set_buffer", + "getter": "get_buffer", + "index": -1 + }, + { + "type": "int", + "name": "byte_offset", + "setter": "set_byte_offset", + "getter": "get_byte_offset", + "index": -1 + }, + { + "type": "int", + "name": "byte_length", + "setter": "set_byte_length", + "getter": "get_byte_length", + "index": -1 + }, + { + "type": "int", + "name": "byte_stride", + "setter": "set_byte_stride", + "getter": "get_byte_stride", + "index": -1 + }, + { + "type": "bool", + "name": "indices", + "setter": "set_indices", + "getter": "get_indices", + "index": -1 + } + ] + }, + { + "name": "GLTFCamera", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_perspective", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_perspective", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "perspective", + "type": "bool" + } + ] + }, + { + "name": "get_fov_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fov_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fov_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_far", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_depth_far", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zdepth_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_near", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_depth_near", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zdepth_near", + "type": "float", + "meta": "float" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "perspective", + "setter": "set_perspective", + "getter": "get_perspective", + "index": -1 + }, + { + "type": "float", + "name": "fov_size", + "setter": "set_fov_size", + "getter": "get_fov_size", + "index": -1 + }, + { + "type": "float", + "name": "depth_far", + "setter": "set_depth_far", + "getter": "get_depth_far", + "index": -1 + }, + { + "type": "float", + "name": "depth_near", + "setter": "set_depth_near", + "getter": "get_depth_near", + "index": -1 + } + ] + }, + { + "name": "GLTFDocument", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "append_from_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2146812409, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + }, + { + "name": "bake_fps", + "type": "int", + "meta": "int32", + "default_value": "30" + }, + { + "name": "base_path", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "append_from_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1552406093, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "bytes", + "type": "PackedByteArray" + }, + { + "name": "base_path", + "type": "String" + }, + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + }, + { + "name": "bake_fps", + "type": "int", + "meta": "int32", + "default_value": "30" + } + ] + }, + { + "name": "append_from_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "node", + "type": "Node" + }, + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + }, + { + "name": "bake_fps", + "type": "int", + "meta": "int32", + "default_value": "30" + } + ] + }, + { + "name": "generate_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "bake_fps", + "type": "int", + "meta": "int32", + "default_value": "30" + } + ] + }, + { + "name": "generate_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + } + ] + }, + { + "name": "write_to_filesystem", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "set_extensions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extensions", + "type": "Array" + } + ] + }, + { + "name": "get_extensions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "Array", + "name": "extensions", + "setter": "set_extensions", + "getter": "get_extensions", + "index": -1 + } + ] + }, + { + "name": "GLTFDocumentExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_import_preflight", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + } + ] + }, + { + "name": "_import_post_parse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + } + ] + }, + { + "name": "_import_node", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "gltf_node", + "type": "GLTFNode" + }, + { + "name": "json", + "type": "Dictionary" + }, + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "_import_post", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "root", + "type": "Node" + } + ] + }, + { + "name": "_export_preflight", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "root", + "type": "Node" + } + ] + }, + { + "name": "_export_node", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + }, + { + "name": "gltf_node", + "type": "GLTFNode" + }, + { + "name": "json", + "type": "Dictionary" + }, + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "_export_post", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "state", + "type": "GLTFState" + } + ] + } + ] + }, + { + "name": "GLTFDocumentExtensionConvertImporterMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "GLTFDocumentExtension", + "api_type": "core" + }, + { + "name": "GLTFLight", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_light_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "set_light_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light_type", + "type": "String" + } + ] + }, + { + "name": "get_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "range", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_inner_cone_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_inner_cone_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inner_cone_angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_outer_cone_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_outer_cone_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "outer_cone_angle", + "type": "float", + "meta": "float" + } + ] + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "float", + "name": "intensity", + "setter": "set_intensity", + "getter": "get_intensity", + "index": -1 + }, + { + "type": "String", + "name": "light_type", + "setter": "set_light_type", + "getter": "get_light_type", + "index": -1 + }, + { + "type": "float", + "name": "range", + "setter": "set_range", + "getter": "get_range", + "index": -1 + }, + { + "type": "float", + "name": "inner_cone_angle", + "setter": "set_inner_cone_angle", + "getter": "get_inner_cone_angle", + "index": -1 + }, + { + "type": "float", + "name": "outer_cone_angle", + "setter": "set_outer_cone_angle", + "getter": "get_outer_cone_angle", + "index": -1 + } + ] + }, + { + "name": "GLTFMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "ImporterMesh" + } + }, + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "ImporterMesh" + } + ] + }, + { + "name": "get_blend_weights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedFloat32Array" + } + }, + { + "name": "set_blend_weights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "blend_weights", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "get_instance_materials", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_instance_materials", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "instance_materials", + "type": "Array" + } + ] + } + ], + "properties": [ + { + "type": "Object", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "PackedFloat32Array", + "name": "blend_weights", + "setter": "set_blend_weights", + "getter": "get_blend_weights", + "index": -1 + }, + { + "type": "Array", + "name": "instance_materials", + "setter": "set_instance_materials", + "getter": "get_instance_materials", + "index": -1 + } + ] + }, + { + "name": "GLTFNode", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parent", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_xform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_xform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "xform", + "type": "Transform3D" + } + ] + }, + { + "name": "get_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_camera", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_camera", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "camera", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skin", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeleton", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_joint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint", + "type": "bool" + } + ] + }, + { + "name": "get_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Quaternion" + } + }, + { + "name": "set_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rotation", + "type": "Quaternion" + } + ] + }, + { + "name": "get_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "get_children", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_children", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "children", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_light", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_light", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "parent", + "setter": "set_parent", + "getter": "get_parent", + "index": -1 + }, + { + "type": "int", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "Transform3D", + "name": "xform", + "setter": "set_xform", + "getter": "get_xform", + "index": -1 + }, + { + "type": "int", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "int", + "name": "camera", + "setter": "set_camera", + "getter": "get_camera", + "index": -1 + }, + { + "type": "int", + "name": "skin", + "setter": "set_skin", + "getter": "get_skin", + "index": -1 + }, + { + "type": "int", + "name": "skeleton", + "setter": "set_skeleton", + "getter": "get_skeleton", + "index": -1 + }, + { + "type": "bool", + "name": "joint", + "setter": "set_joint", + "getter": "get_joint", + "index": -1 + }, + { + "type": "Vector3", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "Quaternion", + "name": "rotation", + "setter": "set_rotation", + "getter": "get_rotation", + "index": -1 + }, + { + "type": "Vector3", + "name": "scale", + "setter": "set_scale", + "getter": "get_scale", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "children", + "setter": "set_children", + "getter": "get_children", + "index": -1 + }, + { + "type": "int", + "name": "light", + "setter": "set_light", + "getter": "get_light", + "index": -1 + } + ] + }, + { + "name": "GLTFSkeleton", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_joints", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_joints", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joints", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_roots", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_roots", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "roots", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_godot_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Skeleton3D" + } + }, + { + "name": "get_unique_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_unique_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unique_names", + "type": "Array" + } + ] + }, + { + "name": "get_godot_bone_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_godot_bone_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "godot_bone_node", + "type": "Dictionary" + } + ] + }, + { + "name": "get_bone_attachment_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_bone_attachment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "BoneAttachment3D" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "PackedInt32Array", + "name": "joints", + "setter": "set_joints", + "getter": "get_joints", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "roots", + "setter": "set_roots", + "getter": "get_roots", + "index": -1 + }, + { + "type": "Array", + "name": "unique_names", + "setter": "set_unique_names", + "getter": "get_unique_names", + "index": -1 + }, + { + "type": "Dictionary", + "name": "godot_bone_node", + "setter": "set_godot_bone_node", + "getter": "get_godot_bone_node", + "index": -1 + } + ] + }, + { + "name": "GLTFSkin", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_skin_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_skin_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skin_root", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joints_original", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_joints_original", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joints_original", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_inverse_binds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_inverse_binds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inverse_binds", + "type": "Array" + } + ] + }, + { + "name": "get_joints", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_joints", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joints", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_non_joints", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_non_joints", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "non_joints", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_roots", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_roots", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "roots", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeleton", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joint_i_to_bone_i", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_joint_i_to_bone_i", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint_i_to_bone_i", + "type": "Dictionary" + } + ] + }, + { + "name": "get_joint_i_to_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_joint_i_to_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint_i_to_name", + "type": "Dictionary" + } + ] + }, + { + "name": "get_godot_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Skin" + } + }, + { + "name": "set_godot_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "godot_skin", + "type": "Skin" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "skin_root", + "setter": "set_skin_root", + "getter": "get_skin_root", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "joints_original", + "setter": "set_joints_original", + "getter": "get_joints_original", + "index": -1 + }, + { + "type": "Array", + "name": "inverse_binds", + "setter": "set_inverse_binds", + "getter": "get_inverse_binds", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "joints", + "setter": "set_joints", + "getter": "get_joints", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "non_joints", + "setter": "set_non_joints", + "getter": "get_non_joints", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "roots", + "setter": "set_roots", + "getter": "get_roots", + "index": -1 + }, + { + "type": "int", + "name": "skeleton", + "setter": "set_skeleton", + "getter": "get_skeleton", + "index": -1 + }, + { + "type": "Dictionary", + "name": "joint_i_to_bone_i", + "setter": "set_joint_i_to_bone_i", + "getter": "get_joint_i_to_bone_i", + "index": -1 + }, + { + "type": "Dictionary", + "name": "joint_i_to_name", + "setter": "set_joint_i_to_name", + "getter": "get_joint_i_to_name", + "index": -1 + }, + { + "type": "Object", + "name": "godot_skin", + "setter": "set_godot_skin", + "getter": "get_godot_skin", + "index": -1 + } + ] + }, + { + "name": "GLTFSpecGloss", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_diffuse_img", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Image" + } + }, + { + "name": "set_diffuse_img", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "diffuse_img", + "type": "Image" + } + ] + }, + { + "name": "get_diffuse_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_diffuse_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "diffuse_factor", + "type": "Color" + } + ] + }, + { + "name": "get_gloss_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_gloss_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gloss_factor", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_specular_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_specular_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "specular_factor", + "type": "Color" + } + ] + }, + { + "name": "get_spec_gloss_img", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Image" + } + }, + { + "name": "set_spec_gloss_img", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "spec_gloss_img", + "type": "Image" + } + ] + } + ], + "properties": [ + { + "type": "Object", + "name": "diffuse_img", + "setter": "set_diffuse_img", + "getter": "get_diffuse_img", + "index": -1 + }, + { + "type": "Color", + "name": "diffuse_factor", + "setter": "set_diffuse_factor", + "getter": "get_diffuse_factor", + "index": -1 + }, + { + "type": "float", + "name": "gloss_factor", + "setter": "set_gloss_factor", + "getter": "get_gloss_factor", + "index": -1 + }, + { + "type": "Color", + "name": "specular_factor", + "setter": "set_specular_factor", + "getter": "get_specular_factor", + "index": -1 + }, + { + "type": "Object", + "name": "spec_gloss_img", + "setter": "set_spec_gloss_img", + "getter": "get_spec_gloss_img", + "index": -1 + } + ] + }, + { + "name": "GLTFState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_json", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_json", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "json", + "type": "Dictionary" + } + ] + }, + { + "name": "get_major_version", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_major_version", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "major_version", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_minor_version", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_minor_version", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "minor_version", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_glb_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "set_glb_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "glb_data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_use_named_skin_binds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_named_skin_binds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_named_skin_binds", + "type": "bool" + } + ] + }, + { + "name": "get_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "nodes", + "type": "Array" + } + ] + }, + { + "name": "get_buffers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_buffers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffers", + "type": "Array" + } + ] + }, + { + "name": "get_buffer_views", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_buffer_views", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffer_views", + "type": "Array" + } + ] + }, + { + "name": "get_accessors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_accessors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "accessors", + "type": "Array" + } + ] + }, + { + "name": "get_meshes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_meshes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "meshes", + "type": "Array" + } + ] + }, + { + "name": "get_animation_players_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_animation_player", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "AnimationPlayer" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_materials", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_materials", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "materials", + "type": "Array" + } + ] + }, + { + "name": "get_scene_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "set_scene_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_name", + "type": "String" + } + ] + }, + { + "name": "get_base_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "set_base_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_path", + "type": "String" + } + ] + }, + { + "name": "get_root_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_root_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "root_nodes", + "type": "Array" + } + ] + }, + { + "name": "get_textures", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_textures", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "textures", + "type": "Array" + } + ] + }, + { + "name": "get_images", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_images", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "images", + "type": "Array" + } + ] + }, + { + "name": "get_skins", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_skins", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skins", + "type": "Array" + } + ] + }, + { + "name": "get_cameras", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_cameras", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cameras", + "type": "Array" + } + ] + }, + { + "name": "get_lights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_lights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lights", + "type": "Array" + } + ] + }, + { + "name": "get_unique_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_unique_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unique_names", + "type": "Array" + } + ] + }, + { + "name": "get_unique_animation_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_unique_animation_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unique_animation_names", + "type": "Array" + } + ] + }, + { + "name": "get_skeletons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_skeletons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeletons", + "type": "Array" + } + ] + }, + { + "name": "get_skeleton_to_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_skeleton_to_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeleton_to_node", + "type": "Dictionary" + } + ] + }, + { + "name": "get_animations", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_animations", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "animations", + "type": "Array" + } + ] + }, + { + "name": "get_scene_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "json", + "setter": "set_json", + "getter": "get_json", + "index": -1 + }, + { + "type": "int", + "name": "major_version", + "setter": "set_major_version", + "getter": "get_major_version", + "index": -1 + }, + { + "type": "int", + "name": "minor_version", + "setter": "set_minor_version", + "getter": "get_minor_version", + "index": -1 + }, + { + "type": "PackedByteArray", + "name": "glb_data", + "setter": "set_glb_data", + "getter": "get_glb_data", + "index": -1 + }, + { + "type": "bool", + "name": "use_named_skin_binds", + "setter": "set_use_named_skin_binds", + "getter": "get_use_named_skin_binds", + "index": -1 + }, + { + "type": "Array", + "name": "nodes", + "setter": "set_nodes", + "getter": "get_nodes", + "index": -1 + }, + { + "type": "Array", + "name": "buffers", + "setter": "set_buffers", + "getter": "get_buffers", + "index": -1 + }, + { + "type": "Array", + "name": "buffer_views", + "setter": "set_buffer_views", + "getter": "get_buffer_views", + "index": -1 + }, + { + "type": "Array", + "name": "accessors", + "setter": "set_accessors", + "getter": "get_accessors", + "index": -1 + }, + { + "type": "Array", + "name": "meshes", + "setter": "set_meshes", + "getter": "get_meshes", + "index": -1 + }, + { + "type": "Array", + "name": "materials", + "setter": "set_materials", + "getter": "get_materials", + "index": -1 + }, + { + "type": "String", + "name": "scene_name", + "setter": "set_scene_name", + "getter": "get_scene_name", + "index": -1 + }, + { + "type": "String", + "name": "base_path", + "setter": "set_base_path", + "getter": "get_base_path", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "root_nodes", + "setter": "set_root_nodes", + "getter": "get_root_nodes", + "index": -1 + }, + { + "type": "Array", + "name": "textures", + "setter": "set_textures", + "getter": "get_textures", + "index": -1 + }, + { + "type": "Array", + "name": "images", + "setter": "set_images", + "getter": "get_images", + "index": -1 + }, + { + "type": "Array", + "name": "skins", + "setter": "set_skins", + "getter": "get_skins", + "index": -1 + }, + { + "type": "Array", + "name": "cameras", + "setter": "set_cameras", + "getter": "get_cameras", + "index": -1 + }, + { + "type": "Array", + "name": "lights", + "setter": "set_lights", + "getter": "get_lights", + "index": -1 + }, + { + "type": "Array", + "name": "unique_names", + "setter": "set_unique_names", + "getter": "get_unique_names", + "index": -1 + }, + { + "type": "Array", + "name": "unique_animation_names", + "setter": "set_unique_animation_names", + "getter": "get_unique_animation_names", + "index": -1 + }, + { + "type": "Array", + "name": "skeletons", + "setter": "set_skeletons", + "getter": "get_skeletons", + "index": -1 + }, + { + "type": "Dictionary", + "name": "skeleton_to_node", + "setter": "set_skeleton_to_node", + "getter": "get_skeleton_to_node", + "index": -1 + }, + { + "type": "Array", + "name": "animations", + "setter": "set_animations", + "getter": "get_animations", + "index": -1 + } + ] + }, + { + "name": "GLTFTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_src_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_src_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "src_image", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "src_image", + "setter": "set_src_image", + "getter": "get_src_image", + "index": -1 + } + ] + }, + { + "name": "GPUParticles2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "DrawOrder", + "values": [ + { + "name": "DRAW_ORDER_INDEX", + "value": 0 + }, + { + "name": "DRAW_ORDER_LIFETIME", + "value": 1 + }, + { + "name": "DRAW_ORDER_REVERSE_LIFETIME", + "value": 2 + } + ] + }, + { + "name": "EmitFlags", + "values": [ + { + "name": "EMIT_FLAG_POSITION", + "value": 1 + }, + { + "name": "EMIT_FLAG_ROTATION_SCALE", + "value": 2 + }, + { + "name": "EMIT_FLAG_VELOCITY", + "value": 4 + }, + { + "name": "EMIT_FLAG_COLOR", + "value": 8 + }, + { + "name": "EMIT_FLAG_CUSTOM", + "value": 16 + } + ] + } + ], + "methods": [ + { + "name": "set_emitting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emitting", + "type": "bool" + } + ] + }, + { + "name": "set_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_lifetime", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_one_shot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "bool" + } + ] + }, + { + "name": "set_pre_process_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_explosiveness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_randomness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_visibility_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visibility_rect", + "type": "Rect2" + } + ] + }, + { + "name": "set_use_local_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_fixed_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fractional_delta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_interpolate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_process_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_collision_base_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "is_emitting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_lifetime", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_one_shot", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_pre_process_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_explosiveness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_randomness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_visibility_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "get_use_local_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_fixed_fps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_fractional_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_process_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "get_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_collision_base_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_draw_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "order", + "type": "enum::GPUParticles2D.DrawOrder" + } + ] + }, + { + "name": "get_draw_order", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GPUParticles2D.DrawOrder" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "capture_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "restart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_sub_emitter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_sub_emitter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "emit_particle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + }, + { + "name": "velocity", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "custom", + "type": "Color" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "set_trail_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_trail_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "is_trail_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_trail_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_trail_sections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sections", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_trail_sections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_trail_section_subdivisions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subdivisions", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_trail_section_subdivisions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "emitting", + "setter": "set_emitting", + "getter": "is_emitting", + "index": -1 + }, + { + "type": "int", + "name": "amount", + "setter": "set_amount", + "getter": "get_amount", + "index": -1 + }, + { + "type": "NodePath", + "name": "sub_emitter", + "setter": "set_sub_emitter", + "getter": "get_sub_emitter", + "index": -1 + }, + { + "type": "float", + "name": "lifetime", + "setter": "set_lifetime", + "getter": "get_lifetime", + "index": -1 + }, + { + "type": "bool", + "name": "one_shot", + "setter": "set_one_shot", + "getter": "get_one_shot", + "index": -1 + }, + { + "type": "float", + "name": "preprocess", + "setter": "set_pre_process_time", + "getter": "get_pre_process_time", + "index": -1 + }, + { + "type": "float", + "name": "speed_scale", + "setter": "set_speed_scale", + "getter": "get_speed_scale", + "index": -1 + }, + { + "type": "float", + "name": "explosiveness", + "setter": "set_explosiveness_ratio", + "getter": "get_explosiveness_ratio", + "index": -1 + }, + { + "type": "float", + "name": "randomness", + "setter": "set_randomness_ratio", + "getter": "get_randomness_ratio", + "index": -1 + }, + { + "type": "int", + "name": "fixed_fps", + "setter": "set_fixed_fps", + "getter": "get_fixed_fps", + "index": -1 + }, + { + "type": "bool", + "name": "interpolate", + "setter": "set_interpolate", + "getter": "get_interpolate", + "index": -1 + }, + { + "type": "bool", + "name": "fract_delta", + "setter": "set_fractional_delta", + "getter": "get_fractional_delta", + "index": -1 + }, + { + "type": "float", + "name": "collision_base_size", + "setter": "set_collision_base_size", + "getter": "get_collision_base_size", + "index": -1 + }, + { + "type": "Rect2", + "name": "visibility_rect", + "setter": "set_visibility_rect", + "getter": "get_visibility_rect", + "index": -1 + }, + { + "type": "bool", + "name": "local_coords", + "setter": "set_use_local_coordinates", + "getter": "get_use_local_coordinates", + "index": -1 + }, + { + "type": "int", + "name": "draw_order", + "setter": "set_draw_order", + "getter": "get_draw_order", + "index": -1 + }, + { + "type": "bool", + "name": "trail_enabled", + "setter": "set_trail_enabled", + "getter": "is_trail_enabled", + "index": -1 + }, + { + "type": "float", + "name": "trail_length_secs", + "setter": "set_trail_length", + "getter": "get_trail_length", + "index": -1 + }, + { + "type": "int", + "name": "trail_sections", + "setter": "set_trail_sections", + "getter": "get_trail_sections", + "index": -1 + }, + { + "type": "int", + "name": "trail_section_subdivisions", + "setter": "set_trail_section_subdivisions", + "getter": "get_trail_section_subdivisions", + "index": -1 + }, + { + "type": "ShaderMaterial,ParticlesMaterial", + "name": "process_material", + "setter": "set_process_material", + "getter": "get_process_material", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + } + ] + }, + { + "name": "GPUParticles3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GeometryInstance3D", + "api_type": "core", + "constants": [ + { + "name": "MAX_DRAW_PASSES", + "value": 4 + } + ], + "enums": [ + { + "name": "DrawOrder", + "values": [ + { + "name": "DRAW_ORDER_INDEX", + "value": 0 + }, + { + "name": "DRAW_ORDER_LIFETIME", + "value": 1 + }, + { + "name": "DRAW_ORDER_REVERSE_LIFETIME", + "value": 2 + }, + { + "name": "DRAW_ORDER_VIEW_DEPTH", + "value": 3 + } + ] + }, + { + "name": "EmitFlags", + "values": [ + { + "name": "EMIT_FLAG_POSITION", + "value": 1 + }, + { + "name": "EMIT_FLAG_ROTATION_SCALE", + "value": 2 + }, + { + "name": "EMIT_FLAG_VELOCITY", + "value": 4 + }, + { + "name": "EMIT_FLAG_COLOR", + "value": 8 + }, + { + "name": "EMIT_FLAG_CUSTOM", + "value": 16 + } + ] + }, + { + "name": "TransformAlign", + "values": [ + { + "name": "TRANSFORM_ALIGN_DISABLED", + "value": 0 + }, + { + "name": "TRANSFORM_ALIGN_Z_BILLBOARD", + "value": 1 + }, + { + "name": "TRANSFORM_ALIGN_Y_TO_VELOCITY", + "value": 2 + }, + { + "name": "TRANSFORM_ALIGN_Z_BILLBOARD_Y_TO_VELOCITY", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_emitting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "emitting", + "type": "bool" + } + ] + }, + { + "name": "set_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_lifetime", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_one_shot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_pre_process_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_explosiveness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_randomness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_visibility_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "set_use_local_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_fixed_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fractional_delta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_interpolate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_process_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_collision_base_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "is_emitting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_lifetime", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_one_shot", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_pre_process_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_explosiveness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_randomness_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_visibility_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "get_use_local_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_fixed_fps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_fractional_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_interpolate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_process_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "get_speed_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_collision_base_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_draw_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "order", + "type": "enum::GPUParticles3D.DrawOrder" + } + ] + }, + { + "name": "get_draw_order", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GPUParticles3D.DrawOrder" + } + }, + { + "name": "set_draw_passes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "passes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_draw_pass_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "pass", + "type": "int", + "meta": "int32" + }, + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_draw_passes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_draw_pass_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Mesh" + }, + "arguments": [ + { + "name": "pass", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skin", + "type": "Skin" + } + ] + }, + { + "name": "get_skin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skin" + } + }, + { + "name": "restart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "capture_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "set_sub_emitter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_sub_emitter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "emit_particle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "xform", + "type": "Transform3D" + }, + { + "name": "velocity", + "type": "Vector3" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "custom", + "type": "Color" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "set_trail_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_trail_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "secs", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "is_trail_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_trail_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_transform_align", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "align", + "type": "enum::GPUParticles3D.TransformAlign" + } + ] + }, + { + "name": "get_transform_align", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GPUParticles3D.TransformAlign" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "emitting", + "setter": "set_emitting", + "getter": "is_emitting", + "index": -1 + }, + { + "type": "int", + "name": "amount", + "setter": "set_amount", + "getter": "get_amount", + "index": -1 + }, + { + "type": "NodePath", + "name": "sub_emitter", + "setter": "set_sub_emitter", + "getter": "get_sub_emitter", + "index": -1 + }, + { + "type": "float", + "name": "lifetime", + "setter": "set_lifetime", + "getter": "get_lifetime", + "index": -1 + }, + { + "type": "bool", + "name": "one_shot", + "setter": "set_one_shot", + "getter": "get_one_shot", + "index": -1 + }, + { + "type": "float", + "name": "preprocess", + "setter": "set_pre_process_time", + "getter": "get_pre_process_time", + "index": -1 + }, + { + "type": "float", + "name": "speed_scale", + "setter": "set_speed_scale", + "getter": "get_speed_scale", + "index": -1 + }, + { + "type": "float", + "name": "explosiveness", + "setter": "set_explosiveness_ratio", + "getter": "get_explosiveness_ratio", + "index": -1 + }, + { + "type": "float", + "name": "randomness", + "setter": "set_randomness_ratio", + "getter": "get_randomness_ratio", + "index": -1 + }, + { + "type": "int", + "name": "fixed_fps", + "setter": "set_fixed_fps", + "getter": "get_fixed_fps", + "index": -1 + }, + { + "type": "bool", + "name": "interpolate", + "setter": "set_interpolate", + "getter": "get_interpolate", + "index": -1 + }, + { + "type": "bool", + "name": "fract_delta", + "setter": "set_fractional_delta", + "getter": "get_fractional_delta", + "index": -1 + }, + { + "type": "float", + "name": "collision_base_size", + "setter": "set_collision_base_size", + "getter": "get_collision_base_size", + "index": -1 + }, + { + "type": "AABB", + "name": "visibility_aabb", + "setter": "set_visibility_aabb", + "getter": "get_visibility_aabb", + "index": -1 + }, + { + "type": "bool", + "name": "local_coords", + "setter": "set_use_local_coordinates", + "getter": "get_use_local_coordinates", + "index": -1 + }, + { + "type": "int", + "name": "draw_order", + "setter": "set_draw_order", + "getter": "get_draw_order", + "index": -1 + }, + { + "type": "int", + "name": "transform_align", + "setter": "set_transform_align", + "getter": "get_transform_align", + "index": -1 + }, + { + "type": "bool", + "name": "trail_enabled", + "setter": "set_trail_enabled", + "getter": "is_trail_enabled", + "index": -1 + }, + { + "type": "float", + "name": "trail_length_secs", + "setter": "set_trail_length", + "getter": "get_trail_length", + "index": -1 + }, + { + "type": "ShaderMaterial,ParticlesMaterial", + "name": "process_material", + "setter": "set_process_material", + "getter": "get_process_material", + "index": -1 + }, + { + "type": "int", + "name": "draw_passes", + "setter": "set_draw_passes", + "getter": "get_draw_passes", + "index": -1 + }, + { + "type": "Mesh", + "name": "draw_pass_1", + "setter": "set_draw_pass_mesh", + "getter": "get_draw_pass_mesh", + "index": 0 + }, + { + "type": "Mesh", + "name": "draw_pass_2", + "setter": "set_draw_pass_mesh", + "getter": "get_draw_pass_mesh", + "index": 1 + }, + { + "type": "Mesh", + "name": "draw_pass_3", + "setter": "set_draw_pass_mesh", + "getter": "get_draw_pass_mesh", + "index": 2 + }, + { + "type": "Mesh", + "name": "draw_pass_4", + "setter": "set_draw_pass_mesh", + "getter": "get_draw_pass_mesh", + "index": 3 + }, + { + "type": "Skin", + "name": "draw_skin", + "setter": "set_skin", + "getter": "get_skin", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesAttractor3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "VisualInstance3D", + "api_type": "core", + "methods": [ + { + "name": "set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_attenuation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "attenuation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_attenuation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_directionality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_directionality", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "strength", + "setter": "set_strength", + "getter": "get_strength", + "index": -1 + }, + { + "type": "float", + "name": "attenuation", + "setter": "set_attenuation", + "getter": "get_attenuation", + "index": -1 + }, + { + "type": "float", + "name": "directionality", + "setter": "set_directionality", + "getter": "get_directionality", + "index": -1 + }, + { + "type": "int", + "name": "cull_mask", + "setter": "set_cull_mask", + "getter": "get_cull_mask", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesAttractorBox3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesAttractor3D", + "api_type": "core", + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesAttractorSphere3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesAttractor3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesAttractorVectorField3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesAttractor3D", + "api_type": "core", + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture3D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture3D" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "Texture3D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesCollision3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "VisualInstance3D", + "api_type": "core", + "methods": [ + { + "name": "set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "cull_mask", + "setter": "set_cull_mask", + "getter": "get_cull_mask", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesCollisionBox3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesCollision3D", + "api_type": "core", + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesCollisionHeightField3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesCollision3D", + "api_type": "core", + "enums": [ + { + "name": "Resolution", + "values": [ + { + "name": "RESOLUTION_256", + "value": 0 + }, + { + "name": "RESOLUTION_512", + "value": 1 + }, + { + "name": "RESOLUTION_1024", + "value": 2 + }, + { + "name": "RESOLUTION_2048", + "value": 3 + }, + { + "name": "RESOLUTION_4096", + "value": 4 + }, + { + "name": "RESOLUTION_8192", + "value": 5 + }, + { + "name": "RESOLUTION_MAX", + "value": 6 + } + ] + }, + { + "name": "UpdateMode", + "values": [ + { + "name": "UPDATE_MODE_WHEN_MOVED", + "value": 0 + }, + { + "name": "UPDATE_MODE_ALWAYS", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_resolution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resolution", + "type": "enum::GPUParticlesCollisionHeightField3D.Resolution" + } + ] + }, + { + "name": "get_resolution", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GPUParticlesCollisionHeightField3D.Resolution" + } + }, + { + "name": "set_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_mode", + "type": "enum::GPUParticlesCollisionHeightField3D.UpdateMode" + } + ] + }, + { + "name": "get_update_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GPUParticlesCollisionHeightField3D.UpdateMode" + } + }, + { + "name": "set_follow_camera_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_follow_camera_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "int", + "name": "resolution", + "setter": "set_resolution", + "getter": "get_resolution", + "index": -1 + }, + { + "type": "int", + "name": "update_mode", + "setter": "set_update_mode", + "getter": "get_update_mode", + "index": -1 + }, + { + "type": "bool", + "name": "follow_camera_enabled", + "setter": "set_follow_camera_enabled", + "getter": "is_follow_camera_enabled", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesCollisionSDF3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesCollision3D", + "api_type": "core", + "enums": [ + { + "name": "Resolution", + "values": [ + { + "name": "RESOLUTION_16", + "value": 0 + }, + { + "name": "RESOLUTION_32", + "value": 1 + }, + { + "name": "RESOLUTION_64", + "value": 2 + }, + { + "name": "RESOLUTION_128", + "value": 3 + }, + { + "name": "RESOLUTION_256", + "value": 4 + }, + { + "name": "RESOLUTION_512", + "value": 5 + }, + { + "name": "RESOLUTION_MAX", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_resolution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resolution", + "type": "enum::GPUParticlesCollisionSDF3D.Resolution" + } + ] + }, + { + "name": "get_resolution", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GPUParticlesCollisionSDF3D.Resolution" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture3D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture3D" + } + }, + { + "name": "set_thickness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "thickness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "int", + "name": "resolution", + "setter": "set_resolution", + "getter": "get_resolution", + "index": -1 + }, + { + "type": "float", + "name": "thickness", + "setter": "set_thickness", + "getter": "get_thickness", + "index": -1 + }, + { + "type": "Texture3D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + } + ] + }, + { + "name": "GPUParticlesCollisionSphere3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GPUParticlesCollision3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "Generic6DOFJoint3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint3D", + "api_type": "core", + "enums": [ + { + "name": "Param", + "values": [ + { + "name": "PARAM_LINEAR_LOWER_LIMIT", + "value": 0 + }, + { + "name": "PARAM_LINEAR_UPPER_LIMIT", + "value": 1 + }, + { + "name": "PARAM_LINEAR_LIMIT_SOFTNESS", + "value": 2 + }, + { + "name": "PARAM_LINEAR_RESTITUTION", + "value": 3 + }, + { + "name": "PARAM_LINEAR_DAMPING", + "value": 4 + }, + { + "name": "PARAM_LINEAR_MOTOR_TARGET_VELOCITY", + "value": 5 + }, + { + "name": "PARAM_LINEAR_MOTOR_FORCE_LIMIT", + "value": 6 + }, + { + "name": "PARAM_LINEAR_SPRING_STIFFNESS", + "value": 7 + }, + { + "name": "PARAM_LINEAR_SPRING_DAMPING", + "value": 8 + }, + { + "name": "PARAM_LINEAR_SPRING_EQUILIBRIUM_POINT", + "value": 9 + }, + { + "name": "PARAM_ANGULAR_LOWER_LIMIT", + "value": 10 + }, + { + "name": "PARAM_ANGULAR_UPPER_LIMIT", + "value": 11 + }, + { + "name": "PARAM_ANGULAR_LIMIT_SOFTNESS", + "value": 12 + }, + { + "name": "PARAM_ANGULAR_DAMPING", + "value": 13 + }, + { + "name": "PARAM_ANGULAR_RESTITUTION", + "value": 14 + }, + { + "name": "PARAM_ANGULAR_FORCE_LIMIT", + "value": 15 + }, + { + "name": "PARAM_ANGULAR_ERP", + "value": 16 + }, + { + "name": "PARAM_ANGULAR_MOTOR_TARGET_VELOCITY", + "value": 17 + }, + { + "name": "PARAM_ANGULAR_MOTOR_FORCE_LIMIT", + "value": 18 + }, + { + "name": "PARAM_ANGULAR_SPRING_STIFFNESS", + "value": 19 + }, + { + "name": "PARAM_ANGULAR_SPRING_DAMPING", + "value": 20 + }, + { + "name": "PARAM_ANGULAR_SPRING_EQUILIBRIUM_POINT", + "value": 21 + }, + { + "name": "PARAM_MAX", + "value": 22 + } + ] + }, + { + "name": "Flag", + "values": [ + { + "name": "FLAG_ENABLE_LINEAR_LIMIT", + "value": 0 + }, + { + "name": "FLAG_ENABLE_ANGULAR_LIMIT", + "value": 1 + }, + { + "name": "FLAG_ENABLE_LINEAR_SPRING", + "value": 3 + }, + { + "name": "FLAG_ENABLE_ANGULAR_SPRING", + "value": 2 + }, + { + "name": "FLAG_ENABLE_MOTOR", + "value": 4 + }, + { + "name": "FLAG_ENABLE_LINEAR_MOTOR", + "value": 5 + }, + { + "name": "FLAG_MAX", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_param_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::Generic6DOFJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_x", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::Generic6DOFJoint3D.Param" + } + ] + }, + { + "name": "set_param_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::Generic6DOFJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::Generic6DOFJoint3D.Param" + } + ] + }, + { + "name": "set_param_z", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::Generic6DOFJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_z", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::Generic6DOFJoint3D.Param" + } + ] + }, + { + "name": "set_flag_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::Generic6DOFJoint3D.Flag" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_flag_x", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::Generic6DOFJoint3D.Flag" + } + ] + }, + { + "name": "set_flag_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::Generic6DOFJoint3D.Flag" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_flag_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::Generic6DOFJoint3D.Flag" + } + ] + }, + { + "name": "set_flag_z", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::Generic6DOFJoint3D.Flag" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_flag_z", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::Generic6DOFJoint3D.Flag" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "linear_limit_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_x/upper_distance", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 1 + }, + { + "type": "float", + "name": "linear_limit_x/lower_distance", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_x/softness", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 2 + }, + { + "type": "float", + "name": "linear_limit_x/restitution", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 3 + }, + { + "type": "float", + "name": "linear_limit_x/damping", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 4 + }, + { + "type": "bool", + "name": "linear_motor_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_x/target_velocity", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_x/force_limit", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 6 + }, + { + "type": "bool", + "name": "linear_spring_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 3 + }, + { + "type": "float", + "name": "linear_spring_x/stiffness", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 7 + }, + { + "type": "float", + "name": "linear_spring_x/damping", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 8 + }, + { + "type": "float", + "name": "linear_spring_x/equilibrium_point", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 9 + }, + { + "type": "bool", + "name": "angular_limit_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 1 + }, + { + "type": "float", + "name": "angular_limit_x/upper_angle", + "setter": "_set_angular_hi_limit_x", + "getter": "_get_angular_hi_limit_x", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit_x/lower_angle", + "setter": "_set_angular_lo_limit_x", + "getter": "_get_angular_lo_limit_x", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit_x/softness", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 12 + }, + { + "type": "float", + "name": "angular_limit_x/restitution", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 14 + }, + { + "type": "float", + "name": "angular_limit_x/damping", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 13 + }, + { + "type": "float", + "name": "angular_limit_x/force_limit", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 15 + }, + { + "type": "float", + "name": "angular_limit_x/erp", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 16 + }, + { + "type": "bool", + "name": "angular_motor_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 4 + }, + { + "type": "float", + "name": "angular_motor_x/target_velocity", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 17 + }, + { + "type": "float", + "name": "angular_motor_x/force_limit", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 18 + }, + { + "type": "bool", + "name": "angular_spring_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 2 + }, + { + "type": "float", + "name": "angular_spring_x/stiffness", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 19 + }, + { + "type": "float", + "name": "angular_spring_x/damping", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 20 + }, + { + "type": "float", + "name": "angular_spring_x/equilibrium_point", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 21 + }, + { + "type": "bool", + "name": "linear_limit_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_y/upper_distance", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 1 + }, + { + "type": "float", + "name": "linear_limit_y/lower_distance", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_y/softness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 2 + }, + { + "type": "float", + "name": "linear_limit_y/restitution", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 3 + }, + { + "type": "float", + "name": "linear_limit_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 4 + }, + { + "type": "bool", + "name": "linear_motor_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_y/target_velocity", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_y/force_limit", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 6 + }, + { + "type": "bool", + "name": "linear_spring_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 3 + }, + { + "type": "float", + "name": "linear_spring_y/stiffness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 7 + }, + { + "type": "float", + "name": "linear_spring_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 8 + }, + { + "type": "float", + "name": "linear_spring_y/equilibrium_point", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 9 + }, + { + "type": "bool", + "name": "angular_limit_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 1 + }, + { + "type": "float", + "name": "angular_limit_y/upper_angle", + "setter": "_set_angular_hi_limit_y", + "getter": "_get_angular_hi_limit_y", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit_y/lower_angle", + "setter": "_set_angular_lo_limit_y", + "getter": "_get_angular_lo_limit_y", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit_y/softness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 12 + }, + { + "type": "float", + "name": "angular_limit_y/restitution", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 14 + }, + { + "type": "float", + "name": "angular_limit_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 13 + }, + { + "type": "float", + "name": "angular_limit_y/force_limit", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 15 + }, + { + "type": "float", + "name": "angular_limit_y/erp", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 16 + }, + { + "type": "bool", + "name": "angular_motor_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 4 + }, + { + "type": "float", + "name": "angular_motor_y/target_velocity", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 17 + }, + { + "type": "float", + "name": "angular_motor_y/force_limit", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 18 + }, + { + "type": "bool", + "name": "angular_spring_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 2 + }, + { + "type": "float", + "name": "angular_spring_y/stiffness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 19 + }, + { + "type": "float", + "name": "angular_spring_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 20 + }, + { + "type": "float", + "name": "angular_spring_y/equilibrium_point", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 21 + }, + { + "type": "bool", + "name": "linear_limit_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_z/upper_distance", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 1 + }, + { + "type": "float", + "name": "linear_limit_z/lower_distance", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_z/softness", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 2 + }, + { + "type": "float", + "name": "linear_limit_z/restitution", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 3 + }, + { + "type": "float", + "name": "linear_limit_z/damping", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 4 + }, + { + "type": "bool", + "name": "linear_motor_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_z/target_velocity", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_z/force_limit", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 6 + }, + { + "type": "bool", + "name": "linear_spring_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 3 + }, + { + "type": "float", + "name": "linear_spring_z/stiffness", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 7 + }, + { + "type": "float", + "name": "linear_spring_z/damping", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 8 + }, + { + "type": "float", + "name": "linear_spring_z/equilibrium_point", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 9 + }, + { + "type": "bool", + "name": "angular_limit_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 1 + }, + { + "type": "float", + "name": "angular_limit_z/upper_angle", + "setter": "_set_angular_hi_limit_z", + "getter": "_get_angular_hi_limit_z", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit_z/lower_angle", + "setter": "_set_angular_lo_limit_z", + "getter": "_get_angular_lo_limit_z", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit_z/softness", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 12 + }, + { + "type": "float", + "name": "angular_limit_z/restitution", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 14 + }, + { + "type": "float", + "name": "angular_limit_z/damping", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 13 + }, + { + "type": "float", + "name": "angular_limit_z/force_limit", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 15 + }, + { + "type": "float", + "name": "angular_limit_z/erp", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 16 + }, + { + "type": "bool", + "name": "angular_motor_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 4 + }, + { + "type": "float", + "name": "angular_motor_z/target_velocity", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 17 + }, + { + "type": "float", + "name": "angular_motor_z/force_limit", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 18 + }, + { + "type": "bool", + "name": "angular_spring_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 2 + }, + { + "type": "float", + "name": "angular_spring_z/stiffness", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 19 + }, + { + "type": "float", + "name": "angular_spring_z/damping", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 20 + }, + { + "type": "float", + "name": "angular_spring_z/equilibrium_point", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 21 + } + ] + }, + { + "name": "Geometry2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "PolyBooleanOperation", + "values": [ + { + "name": "OPERATION_UNION", + "value": 0 + }, + { + "name": "OPERATION_DIFFERENCE", + "value": 1 + }, + { + "name": "OPERATION_INTERSECTION", + "value": 2 + }, + { + "name": "OPERATION_XOR", + "value": 3 + } + ] + }, + { + "name": "PolyJoinType", + "values": [ + { + "name": "JOIN_SQUARE", + "value": 0 + }, + { + "name": "JOIN_ROUND", + "value": 1 + }, + { + "name": "JOIN_MITER", + "value": 2 + } + ] + }, + { + "name": "PolyEndType", + "values": [ + { + "name": "END_POLYGON", + "value": 0 + }, + { + "name": "END_JOINED", + "value": 1 + }, + { + "name": "END_BUTT", + "value": 2 + }, + { + "name": "END_SQUARE", + "value": 3 + }, + { + "name": "END_ROUND", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "is_point_in_circle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "circle_position", + "type": "Vector2" + }, + { + "name": "circle_radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "segment_intersects_segment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "from_a", + "type": "Vector2" + }, + { + "name": "to_a", + "type": "Vector2" + }, + { + "name": "from_b", + "type": "Vector2" + }, + { + "name": "to_b", + "type": "Vector2" + } + ] + }, + { + "name": "line_intersects_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "from_a", + "type": "Vector2" + }, + { + "name": "dir_a", + "type": "Vector2" + }, + { + "name": "from_b", + "type": "Vector2" + }, + { + "name": "dir_b", + "type": "Vector2" + } + ] + }, + { + "name": "get_closest_points_between_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "p1", + "type": "Vector2" + }, + { + "name": "q1", + "type": "Vector2" + }, + { + "name": "p2", + "type": "Vector2" + }, + { + "name": "q2", + "type": "Vector2" + } + ] + }, + { + "name": "get_closest_point_to_segment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "s1", + "type": "Vector2" + }, + { + "name": "s2", + "type": "Vector2" + } + ] + }, + { + "name": "get_closest_point_to_segment_uncapped", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "s1", + "type": "Vector2" + }, + { + "name": "s2", + "type": "Vector2" + } + ] + }, + { + "name": "point_is_inside_triangle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481931, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "a", + "type": "Vector2" + }, + { + "name": "b", + "type": "Vector2" + }, + { + "name": "c", + "type": "Vector2" + } + ] + }, + { + "name": "is_polygon_clockwise", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "is_point_in_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "triangulate_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "triangulate_delaunay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "convex_hull", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "merge_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polygon_a", + "type": "PackedVector2Array" + }, + { + "name": "polygon_b", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "clip_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polygon_a", + "type": "PackedVector2Array" + }, + { + "name": "polygon_b", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "intersect_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polygon_a", + "type": "PackedVector2Array" + }, + { + "name": "polygon_b", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "exclude_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polygon_a", + "type": "PackedVector2Array" + }, + { + "name": "polygon_b", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "clip_polyline_with_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polyline", + "type": "PackedVector2Array" + }, + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "intersect_polyline_with_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polyline", + "type": "PackedVector2Array" + }, + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "offset_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + }, + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "join_type", + "type": "enum::Geometry2D.PolyJoinType", + "default_value": "0" + } + ] + }, + { + "name": "offset_polyline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "polyline", + "type": "PackedVector2Array" + }, + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "join_type", + "type": "enum::Geometry2D.PolyJoinType", + "default_value": "0" + }, + { + "name": "end_type", + "type": "enum::Geometry2D.PolyEndType", + "default_value": "3" + } + ] + }, + { + "name": "make_atlas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "sizes", + "type": "PackedVector2Array" + } + ] + } + ] + }, + { + "name": "Geometry3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "build_box_planes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "build_cylinder_planes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + }, + { + "name": "height", + "type": "float", + "meta": "float" + }, + { + "name": "sides", + "type": "int", + "meta": "int32" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis", + "default_value": "2" + } + ] + }, + { + "name": "build_capsule_planes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 177157196, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + }, + { + "name": "height", + "type": "float", + "meta": "float" + }, + { + "name": "sides", + "type": "int", + "meta": "int32" + }, + { + "name": "lats", + "type": "int", + "meta": "int32" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis", + "default_value": "2" + } + ] + }, + { + "name": "get_closest_points_between_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "p1", + "type": "Vector3" + }, + { + "name": "p2", + "type": "Vector3" + }, + { + "name": "q1", + "type": "Vector3" + }, + { + "name": "q2", + "type": "Vector3" + } + ] + }, + { + "name": "get_closest_point_to_segment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "point", + "type": "Vector3" + }, + { + "name": "s1", + "type": "Vector3" + }, + { + "name": "s2", + "type": "Vector3" + } + ] + }, + { + "name": "get_closest_point_to_segment_uncapped", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "point", + "type": "Vector3" + }, + { + "name": "s1", + "type": "Vector3" + }, + { + "name": "s2", + "type": "Vector3" + } + ] + }, + { + "name": "ray_intersects_triangle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517835, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "dir", + "type": "Vector3" + }, + { + "name": "a", + "type": "Vector3" + }, + { + "name": "b", + "type": "Vector3" + }, + { + "name": "c", + "type": "Vector3" + } + ] + }, + { + "name": "segment_intersects_triangle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517835, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "a", + "type": "Vector3" + }, + { + "name": "b", + "type": "Vector3" + }, + { + "name": "c", + "type": "Vector3" + } + ] + }, + { + "name": "segment_intersects_sphere", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "sphere_position", + "type": "Vector3" + }, + { + "name": "sphere_radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "segment_intersects_cylinder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "height", + "type": "float", + "meta": "float" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "segment_intersects_convex", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "planes", + "type": "Array" + } + ] + }, + { + "name": "clip_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "points", + "type": "PackedVector3Array" + }, + { + "name": "plane", + "type": "Plane" + } + ] + } + ] + }, + { + "name": "GeometryInstance3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "enums": [ + { + "name": "ShadowCastingSetting", + "values": [ + { + "name": "SHADOW_CASTING_SETTING_OFF", + "value": 0 + }, + { + "name": "SHADOW_CASTING_SETTING_ON", + "value": 1 + }, + { + "name": "SHADOW_CASTING_SETTING_DOUBLE_SIDED", + "value": 2 + }, + { + "name": "SHADOW_CASTING_SETTING_SHADOWS_ONLY", + "value": 3 + } + ] + }, + { + "name": "GIMode", + "values": [ + { + "name": "GI_MODE_DISABLED", + "value": 0 + }, + { + "name": "GI_MODE_STATIC", + "value": 1 + }, + { + "name": "GI_MODE_DYNAMIC", + "value": 2 + } + ] + }, + { + "name": "LightmapScale", + "values": [ + { + "name": "LIGHTMAP_SCALE_1X", + "value": 0 + }, + { + "name": "LIGHTMAP_SCALE_2X", + "value": 1 + }, + { + "name": "LIGHTMAP_SCALE_4X", + "value": 2 + }, + { + "name": "LIGHTMAP_SCALE_8X", + "value": 3 + }, + { + "name": "LIGHTMAP_SCALE_MAX", + "value": 4 + } + ] + }, + { + "name": "VisibilityRangeFadeMode", + "values": [ + { + "name": "VISIBILITY_RANGE_FADE_DISABLED", + "value": 0 + }, + { + "name": "VISIBILITY_RANGE_FADE_SELF", + "value": 1 + }, + { + "name": "VISIBILITY_RANGE_FADE_DEPENDENCIES", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_material_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_material_overlay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material_overlay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_cast_shadows_setting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shadow_casting_setting", + "type": "enum::GeometryInstance3D.ShadowCastingSetting" + } + ] + }, + { + "name": "get_cast_shadows_setting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GeometryInstance3D.ShadowCastingSetting" + } + }, + { + "name": "set_lod_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_lod_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_transparency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transparency", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_transparency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_visibility_range_end_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_visibility_range_end_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_visibility_range_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_visibility_range_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_visibility_range_begin_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_visibility_range_begin_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_visibility_range_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_visibility_range_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_visibility_range_fade_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" + } + ] + }, + { + "name": "get_visibility_range_fade_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" + } + }, + { + "name": "set_shader_instance_uniform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "uniform", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_shader_instance_uniform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "uniform", + "type": "StringName" + } + ] + }, + { + "name": "set_extra_cull_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_extra_cull_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_lightmap_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "enum::GeometryInstance3D.LightmapScale" + } + ] + }, + { + "name": "get_lightmap_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GeometryInstance3D.LightmapScale" + } + }, + { + "name": "set_gi_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::GeometryInstance3D.GIMode" + } + ] + }, + { + "name": "get_gi_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GeometryInstance3D.GIMode" + } + }, + { + "name": "set_ignore_occlusion_culling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ignore_culling", + "type": "bool" + } + ] + }, + { + "name": "is_ignoring_occlusion_culling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_custom_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + } + ], + "properties": [ + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material_override", + "setter": "set_material_override", + "getter": "get_material_override", + "index": -1 + }, + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material_overlay", + "setter": "set_material_overlay", + "getter": "get_material_overlay", + "index": -1 + }, + { + "type": "float", + "name": "transparency", + "setter": "set_transparency", + "getter": "get_transparency", + "index": -1 + }, + { + "type": "int", + "name": "cast_shadow", + "setter": "set_cast_shadows_setting", + "getter": "get_cast_shadows_setting", + "index": -1 + }, + { + "type": "float", + "name": "extra_cull_margin", + "setter": "set_extra_cull_margin", + "getter": "get_extra_cull_margin", + "index": -1 + }, + { + "type": "float", + "name": "lod_bias", + "setter": "set_lod_bias", + "getter": "get_lod_bias", + "index": -1 + }, + { + "type": "bool", + "name": "ignore_occlusion_culling", + "setter": "set_ignore_occlusion_culling", + "getter": "is_ignoring_occlusion_culling", + "index": -1 + }, + { + "type": "int", + "name": "gi_mode", + "setter": "set_gi_mode", + "getter": "get_gi_mode", + "index": -1 + }, + { + "type": "int", + "name": "gi_lightmap_scale", + "setter": "set_lightmap_scale", + "getter": "get_lightmap_scale", + "index": -1 + }, + { + "type": "float", + "name": "visibility_range_begin", + "setter": "set_visibility_range_begin", + "getter": "get_visibility_range_begin", + "index": -1 + }, + { + "type": "float", + "name": "visibility_range_begin_margin", + "setter": "set_visibility_range_begin_margin", + "getter": "get_visibility_range_begin_margin", + "index": -1 + }, + { + "type": "float", + "name": "visibility_range_end", + "setter": "set_visibility_range_end", + "getter": "get_visibility_range_end", + "index": -1 + }, + { + "type": "float", + "name": "visibility_range_end_margin", + "setter": "set_visibility_range_end_margin", + "getter": "get_visibility_range_end_margin", + "index": -1 + }, + { + "type": "int", + "name": "visibility_range_fade_mode", + "setter": "set_visibility_range_fade_mode", + "getter": "get_visibility_range_fade_mode", + "index": -1 + } + ] + }, + { + "name": "GodotPhysicsServer2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "PhysicsServer2D", + "api_type": "core" + }, + { + "name": "GodotPhysicsServer3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "PhysicsServer3D", + "api_type": "core" + }, + { + "name": "Gradient", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "InterpolationMode", + "values": [ + { + "name": "GRADIENT_INTERPOLATE_LINEAR", + "value": 0 + }, + { + "name": "GRADIENT_INTERPOLATE_CONSTANT", + "value": 1 + }, + { + "name": "GRADIENT_INTERPOLATE_CUBIC", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "reverse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "point", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "interpolate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_offsets", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offsets", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "get_offsets", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedFloat32Array" + } + }, + { + "name": "set_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "colors", + "type": "PackedColorArray" + } + ] + }, + { + "name": "get_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedColorArray" + } + }, + { + "name": "set_interpolation_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interpolation_mode", + "type": "enum::Gradient.InterpolationMode" + } + ] + }, + { + "name": "get_interpolation_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Gradient.InterpolationMode" + } + } + ], + "properties": [ + { + "type": "int", + "name": "interpolation_mode", + "setter": "set_interpolation_mode", + "getter": "get_interpolation_mode", + "index": -1 + }, + { + "type": "PackedFloat32Array", + "name": "offsets", + "setter": "set_offsets", + "getter": "get_offsets", + "index": -1 + }, + { + "type": "PackedColorArray", + "name": "colors", + "setter": "set_colors", + "getter": "get_colors", + "index": -1 + } + ] + }, + { + "name": "GradientTexture1D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_gradient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gradient", + "type": "Gradient" + } + ] + }, + { + "name": "get_gradient", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_use_hdr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_using_hdr", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Gradient", + "name": "gradient", + "setter": "set_gradient", + "getter": "get_gradient", + "index": -1 + }, + { + "type": "int", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "bool", + "name": "use_hdr", + "setter": "set_use_hdr", + "getter": "is_using_hdr", + "index": -1 + } + ] + }, + { + "name": "GradientTexture2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "enums": [ + { + "name": "Fill", + "values": [ + { + "name": "FILL_LINEAR", + "value": 0 + }, + { + "name": "FILL_RADIAL", + "value": 1 + } + ] + }, + { + "name": "Repeat", + "values": [ + { + "name": "REPEAT_NONE", + "value": 0 + }, + { + "name": "REPEAT", + "value": 1 + }, + { + "name": "REPEAT_MIRROR", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_gradient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gradient", + "type": "Gradient" + } + ] + }, + { + "name": "get_gradient", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_use_hdr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_using_hdr", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_fill", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fill", + "type": "enum::GradientTexture2D.Fill" + } + ] + }, + { + "name": "get_fill", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GradientTexture2D.Fill" + } + }, + { + "name": "set_fill_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fill_from", + "type": "Vector2" + } + ] + }, + { + "name": "get_fill_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_fill_to", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fill_to", + "type": "Vector2" + } + ] + }, + { + "name": "get_fill_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "repeat", + "type": "enum::GradientTexture2D.Repeat" + } + ] + }, + { + "name": "get_repeat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GradientTexture2D.Repeat" + } + } + ], + "properties": [ + { + "type": "Gradient", + "name": "gradient", + "setter": "set_gradient", + "getter": "get_gradient", + "index": -1 + }, + { + "type": "int", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "bool", + "name": "use_hdr", + "setter": "set_use_hdr", + "getter": "is_using_hdr", + "index": -1 + }, + { + "type": "int", + "name": "fill", + "setter": "set_fill", + "getter": "get_fill", + "index": -1 + }, + { + "type": "Vector2", + "name": "fill_from", + "setter": "set_fill_from", + "getter": "get_fill_from", + "index": -1 + }, + { + "type": "Vector2", + "name": "fill_to", + "setter": "set_fill_to", + "getter": "get_fill_to", + "index": -1 + }, + { + "type": "int", + "name": "repeat", + "setter": "set_repeat", + "getter": "get_repeat", + "index": -1 + } + ] + }, + { + "name": "GraphEdit", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "PanningScheme", + "values": [ + { + "name": "SCROLL_ZOOMS", + "value": 0 + }, + { + "name": "SCROLL_PANS", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "_is_in_input_hotzone", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "graph_node", + "type": "Object" + }, + { + "name": "slot_index", + "type": "int" + }, + { + "name": "mouse_position", + "type": "Vector2" + } + ] + }, + { + "name": "_is_in_output_hotzone", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "graph_node", + "type": "Object" + }, + { + "name": "slot_index", + "type": "int" + }, + { + "name": "mouse_position", + "type": "Vector2" + } + ] + }, + { + "name": "_get_connection_line", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "connect_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_node_connected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "disconnect_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_connection_activity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_connection_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "clear_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "force_connection_drag_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_scroll_ofs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_scroll_ofs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "add_valid_right_disconnect_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_valid_right_disconnect_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_valid_left_disconnect_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_valid_left_disconnect_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_valid_connection_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from_type", + "type": "int", + "meta": "int32" + }, + { + "name": "to_type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_valid_connection_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from_type", + "type": "int", + "meta": "int32" + }, + { + "name": "to_type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_valid_connection_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from_type", + "type": "int", + "meta": "int32" + }, + { + "name": "to_type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "set_panning_scheme", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scheme", + "type": "enum::GraphEdit.PanningScheme" + } + ] + }, + { + "name": "get_panning_scheme", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GraphEdit.PanningScheme" + } + }, + { + "name": "set_zoom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zoom", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_zoom", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_zoom_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zoom_min", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_zoom_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_zoom_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zoom_max", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_zoom_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_zoom_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "zoom_step", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_zoom_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_show_zoom_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_showing_zoom_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_snap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_snap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_snap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_snap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_connection_lines_curvature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curvature", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_connection_lines_curvature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_connection_lines_thickness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_connection_lines_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_connection_lines_antialiased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "bool" + } + ] + }, + { + "name": "is_connection_lines_antialiased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_minimap_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_minimap_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_minimap_opacity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "opacity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_minimap_opacity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_minimap_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_minimap_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_right_disconnects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_right_disconnects_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_zoom_hbox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "HBoxContainer" + } + }, + { + "name": "arrange_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + } + ], + "signals": [ + { + "name": "connection_request", + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_slot", + "type": "int" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_slot", + "type": "int" + } + ] + }, + { + "name": "disconnection_request", + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_slot", + "type": "int" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_slot", + "type": "int" + } + ] + }, + { + "name": "popup_request", + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "duplicate_nodes_request" + }, + { + "name": "copy_nodes_request" + }, + { + "name": "paste_nodes_request" + }, + { + "name": "node_selected", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "node_deselected", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "connection_to_empty", + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_slot", + "type": "int" + }, + { + "name": "release_position", + "type": "Vector2" + } + ] + }, + { + "name": "connection_from_empty", + "arguments": [ + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_slot", + "type": "int" + }, + { + "name": "release_position", + "type": "Vector2" + } + ] + }, + { + "name": "delete_nodes_request", + "arguments": [ + { + "name": "nodes", + "type": "Array" + } + ] + }, + { + "name": "begin_node_move" + }, + { + "name": "end_node_move" + }, + { + "name": "scroll_offset_changed", + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "connection_drag_started", + "arguments": [ + { + "name": "from", + "type": "String" + }, + { + "name": "slot", + "type": "String" + }, + { + "name": "is_output", + "type": "bool" + } + ] + }, + { + "name": "connection_drag_ended" + } + ], + "properties": [ + { + "type": "bool", + "name": "right_disconnects", + "setter": "set_right_disconnects", + "getter": "is_right_disconnects_enabled", + "index": -1 + }, + { + "type": "Vector2", + "name": "scroll_offset", + "setter": "set_scroll_ofs", + "getter": "get_scroll_ofs", + "index": -1 + }, + { + "type": "int", + "name": "snap_distance", + "setter": "set_snap", + "getter": "get_snap", + "index": -1 + }, + { + "type": "bool", + "name": "use_snap", + "setter": "set_use_snap", + "getter": "is_using_snap", + "index": -1 + }, + { + "type": "int", + "name": "panning_scheme", + "setter": "set_panning_scheme", + "getter": "get_panning_scheme", + "index": -1 + }, + { + "type": "float", + "name": "connection_lines_curvature", + "setter": "set_connection_lines_curvature", + "getter": "get_connection_lines_curvature", + "index": -1 + }, + { + "type": "float", + "name": "connection_lines_thickness", + "setter": "set_connection_lines_thickness", + "getter": "get_connection_lines_thickness", + "index": -1 + }, + { + "type": "bool", + "name": "connection_lines_antialiased", + "setter": "set_connection_lines_antialiased", + "getter": "is_connection_lines_antialiased", + "index": -1 + }, + { + "type": "float", + "name": "zoom", + "setter": "set_zoom", + "getter": "get_zoom", + "index": -1 + }, + { + "type": "float", + "name": "zoom_min", + "setter": "set_zoom_min", + "getter": "get_zoom_min", + "index": -1 + }, + { + "type": "float", + "name": "zoom_max", + "setter": "set_zoom_max", + "getter": "get_zoom_max", + "index": -1 + }, + { + "type": "float", + "name": "zoom_step", + "setter": "set_zoom_step", + "getter": "get_zoom_step", + "index": -1 + }, + { + "type": "bool", + "name": "show_zoom_label", + "setter": "set_show_zoom_label", + "getter": "is_showing_zoom_label", + "index": -1 + }, + { + "type": "bool", + "name": "minimap_enabled", + "setter": "set_minimap_enabled", + "getter": "is_minimap_enabled", + "index": -1 + }, + { + "type": "Vector2", + "name": "minimap_size", + "setter": "set_minimap_size", + "getter": "get_minimap_size", + "index": -1 + }, + { + "type": "float", + "name": "minimap_opacity", + "setter": "set_minimap_opacity", + "getter": "get_minimap_opacity", + "index": -1 + } + ] + }, + { + "name": "GraphNode", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "enums": [ + { + "name": "Overlay", + "values": [ + { + "name": "OVERLAY_DISABLED", + "value": 0 + }, + { + "name": "OVERLAY_BREAKPOINT", + "value": 1 + }, + { + "name": "OVERLAY_POSITION", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_slot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2222531442, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable_left", + "type": "bool" + }, + { + "name": "type_left", + "type": "int", + "meta": "int32" + }, + { + "name": "color_left", + "type": "Color" + }, + { + "name": "enable_right", + "type": "bool" + }, + { + "name": "type_right", + "type": "int", + "meta": "int32" + }, + { + "name": "color_right", + "type": "Color" + }, + { + "name": "custom_left", + "type": "Texture2D", + "default_value": "null" + }, + { + "name": "custom_right", + "type": "Texture2D", + "default_value": "null" + }, + { + "name": "enable", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "clear_slot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_all_slots", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_slot_enabled_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_slot_enabled_left", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable_left", + "type": "bool" + } + ] + }, + { + "name": "set_slot_type_left", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "type_left", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_slot_type_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_slot_color_left", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "color_left", + "type": "Color" + } + ] + }, + { + "name": "get_slot_color_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_slot_enabled_right", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_slot_enabled_right", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable_right", + "type": "bool" + } + ] + }, + { + "name": "set_slot_type_right", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "type_right", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_slot_type_right", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_slot_color_right", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "color_right", + "type": "Color" + } + ] + }, + { + "name": "get_slot_color_right", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_slot_draw_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_slot_draw_stylebox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "draw_stylebox", + "type": "bool" + } + ] + }, + { + "name": "set_position_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_position_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_comment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "comment", + "type": "bool" + } + ] + }, + { + "name": "is_comment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_resizable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resizable", + "type": "bool" + } + ] + }, + { + "name": "is_resizable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "selected", + "type": "bool" + } + ] + }, + { + "name": "is_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_connection_input_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_connection_input_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_input_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_input_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_input_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_output_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_connection_output_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_output_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_output_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_output_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_show_close_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "show", + "type": "bool" + } + ] + }, + { + "name": "is_close_button_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_overlay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "overlay", + "type": "enum::GraphNode.Overlay" + } + ] + }, + { + "name": "get_overlay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::GraphNode.Overlay" + } + } + ], + "signals": [ + { + "name": "position_offset_changed" + }, + { + "name": "slot_updated", + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "dragged", + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "raise_request" + }, + { + "name": "close_request" + }, + { + "name": "resize_request", + "arguments": [ + { + "name": "new_minsize", + "type": "Vector2" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "title", + "setter": "set_title", + "getter": "get_title", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "Vector2", + "name": "position_offset", + "setter": "set_position_offset", + "getter": "get_position_offset", + "index": -1 + }, + { + "type": "bool", + "name": "show_close", + "setter": "set_show_close_button", + "getter": "is_close_button_visible", + "index": -1 + }, + { + "type": "bool", + "name": "resizable", + "setter": "set_resizable", + "getter": "is_resizable", + "index": -1 + }, + { + "type": "bool", + "name": "selected", + "setter": "set_selected", + "getter": "is_selected", + "index": -1 + }, + { + "type": "bool", + "name": "comment", + "setter": "set_comment", + "getter": "is_comment", + "index": -1 + }, + { + "type": "int", + "name": "overlay", + "setter": "set_overlay", + "getter": "get_overlay", + "index": -1 + } + ] + }, + { + "name": "GridContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "methods": [ + { + "name": "set_columns", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "columns", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_columns", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "columns", + "setter": "set_columns", + "getter": "get_columns", + "index": -1 + } + ] + }, + { + "name": "GridMap", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "constants": [ + { + "name": "INVALID_CELL_ITEM", + "value": -1 + } + ], + "methods": [ + { + "name": "set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_physics_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "PhysicsMaterial" + } + ] + }, + { + "name": "get_physics_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PhysicsMaterial" + } + }, + { + "name": "set_bake_navigation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bake_navigation", + "type": "bool" + } + ] + }, + { + "name": "is_baking_navigation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_navigation_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_navigation_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_mesh_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh_library", + "type": "MeshLibrary" + } + ] + }, + { + "name": "get_mesh_library", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "MeshLibrary" + } + }, + { + "name": "set_cell_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3" + } + ] + }, + { + "name": "get_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_cell_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cell_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_octant_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_octant_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_cell_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "position", + "type": "Vector3i" + }, + { + "name": "item", + "type": "int", + "meta": "int32" + }, + { + "name": "orientation", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_cell_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector3i" + } + ] + }, + { + "name": "get_cell_item_orientation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector3i" + } + ] + }, + { + "name": "world_to_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3i" + }, + "arguments": [ + { + "name": "world_position", + "type": "Vector3" + } + ] + }, + { + "name": "map_to_world", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "map_position", + "type": "Vector3i" + } + ] + }, + { + "name": "resource_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "set_center_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_center_x", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_center_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_center_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_center_z", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_center_z", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_used_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_used_cells_by_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "item", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_meshes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_bake_meshes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_bake_mesh_instance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_baked_meshes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "make_baked_meshes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3650612583, + "arguments": [ + { + "name": "gen_lightmap_uv", + "type": "bool", + "default_value": "false" + }, + { + "name": "lightmap_uv_texel_size", + "type": "float", + "meta": "float", + "default_value": "0.1" + } + ] + } + ], + "signals": [ + { + "name": "cell_size_changed", + "arguments": [ + { + "name": "cell_size", + "type": "Vector3" + } + ] + } + ], + "properties": [ + { + "type": "MeshLibrary", + "name": "mesh_library", + "setter": "set_mesh_library", + "getter": "get_mesh_library", + "index": -1 + }, + { + "type": "PhysicsMaterial", + "name": "physics_material", + "setter": "set_physics_material", + "getter": "get_physics_material", + "index": -1 + }, + { + "type": "Vector3", + "name": "cell_size", + "setter": "set_cell_size", + "getter": "get_cell_size", + "index": -1 + }, + { + "type": "int", + "name": "cell_octant_size", + "setter": "set_octant_size", + "getter": "get_octant_size", + "index": -1 + }, + { + "type": "bool", + "name": "cell_center_x", + "setter": "set_center_x", + "getter": "get_center_x", + "index": -1 + }, + { + "type": "bool", + "name": "cell_center_y", + "setter": "set_center_y", + "getter": "get_center_y", + "index": -1 + }, + { + "type": "bool", + "name": "cell_center_z", + "setter": "set_center_z", + "getter": "get_center_z", + "index": -1 + }, + { + "type": "float", + "name": "cell_scale", + "setter": "set_cell_scale", + "getter": "get_cell_scale", + "index": -1 + }, + { + "type": "int", + "name": "collision_layer", + "setter": "set_collision_layer", + "getter": "get_collision_layer", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "bool", + "name": "bake_navigation", + "setter": "set_bake_navigation", + "getter": "is_baking_navigation", + "index": -1 + }, + { + "type": "int", + "name": "navigation_layers", + "setter": "set_navigation_layers", + "getter": "get_navigation_layers", + "index": -1 + } + ] + }, + { + "name": "GrooveJoint2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint2D", + "api_type": "core", + "methods": [ + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_initial_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_initial_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "length", + "setter": "set_length", + "getter": "get_length", + "index": -1 + }, + { + "type": "float", + "name": "initial_offset", + "setter": "set_initial_offset", + "getter": "get_initial_offset", + "index": -1 + } + ] + }, + { + "name": "HBoxContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "BoxContainer", + "api_type": "core" + }, + { + "name": "HFlowContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "FlowContainer", + "api_type": "core" + }, + { + "name": "HMACContext", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "hash_type", + "type": "enum::HashingContext.HashType" + }, + { + "name": "key", + "type": "PackedByteArray" + } + ] + }, + { + "name": "update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "finish", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedByteArray" + } + } + ] + }, + { + "name": "HScrollBar", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "ScrollBar", + "api_type": "core" + }, + { + "name": "HSeparator", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Separator", + "api_type": "core" + }, + { + "name": "HSlider", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Slider", + "api_type": "core" + }, + { + "name": "HSplitContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "SplitContainer", + "api_type": "core" + }, + { + "name": "HTTPClient", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "Method", + "values": [ + { + "name": "METHOD_GET", + "value": 0 + }, + { + "name": "METHOD_HEAD", + "value": 1 + }, + { + "name": "METHOD_POST", + "value": 2 + }, + { + "name": "METHOD_PUT", + "value": 3 + }, + { + "name": "METHOD_DELETE", + "value": 4 + }, + { + "name": "METHOD_OPTIONS", + "value": 5 + }, + { + "name": "METHOD_TRACE", + "value": 6 + }, + { + "name": "METHOD_CONNECT", + "value": 7 + }, + { + "name": "METHOD_PATCH", + "value": 8 + }, + { + "name": "METHOD_MAX", + "value": 9 + } + ] + }, + { + "name": "Status", + "values": [ + { + "name": "STATUS_DISCONNECTED", + "value": 0 + }, + { + "name": "STATUS_RESOLVING", + "value": 1 + }, + { + "name": "STATUS_CANT_RESOLVE", + "value": 2 + }, + { + "name": "STATUS_CONNECTING", + "value": 3 + }, + { + "name": "STATUS_CANT_CONNECT", + "value": 4 + }, + { + "name": "STATUS_CONNECTED", + "value": 5 + }, + { + "name": "STATUS_REQUESTING", + "value": 6 + }, + { + "name": "STATUS_BODY", + "value": 7 + }, + { + "name": "STATUS_CONNECTION_ERROR", + "value": 8 + }, + { + "name": "STATUS_SSL_HANDSHAKE_ERROR", + "value": 9 + } + ] + }, + { + "name": "ResponseCode", + "values": [ + { + "name": "RESPONSE_CONTINUE", + "value": 100 + }, + { + "name": "RESPONSE_SWITCHING_PROTOCOLS", + "value": 101 + }, + { + "name": "RESPONSE_PROCESSING", + "value": 102 + }, + { + "name": "RESPONSE_OK", + "value": 200 + }, + { + "name": "RESPONSE_CREATED", + "value": 201 + }, + { + "name": "RESPONSE_ACCEPTED", + "value": 202 + }, + { + "name": "RESPONSE_NON_AUTHORITATIVE_INFORMATION", + "value": 203 + }, + { + "name": "RESPONSE_NO_CONTENT", + "value": 204 + }, + { + "name": "RESPONSE_RESET_CONTENT", + "value": 205 + }, + { + "name": "RESPONSE_PARTIAL_CONTENT", + "value": 206 + }, + { + "name": "RESPONSE_MULTI_STATUS", + "value": 207 + }, + { + "name": "RESPONSE_ALREADY_REPORTED", + "value": 208 + }, + { + "name": "RESPONSE_IM_USED", + "value": 226 + }, + { + "name": "RESPONSE_MULTIPLE_CHOICES", + "value": 300 + }, + { + "name": "RESPONSE_MOVED_PERMANENTLY", + "value": 301 + }, + { + "name": "RESPONSE_FOUND", + "value": 302 + }, + { + "name": "RESPONSE_SEE_OTHER", + "value": 303 + }, + { + "name": "RESPONSE_NOT_MODIFIED", + "value": 304 + }, + { + "name": "RESPONSE_USE_PROXY", + "value": 305 + }, + { + "name": "RESPONSE_SWITCH_PROXY", + "value": 306 + }, + { + "name": "RESPONSE_TEMPORARY_REDIRECT", + "value": 307 + }, + { + "name": "RESPONSE_PERMANENT_REDIRECT", + "value": 308 + }, + { + "name": "RESPONSE_BAD_REQUEST", + "value": 400 + }, + { + "name": "RESPONSE_UNAUTHORIZED", + "value": 401 + }, + { + "name": "RESPONSE_PAYMENT_REQUIRED", + "value": 402 + }, + { + "name": "RESPONSE_FORBIDDEN", + "value": 403 + }, + { + "name": "RESPONSE_NOT_FOUND", + "value": 404 + }, + { + "name": "RESPONSE_METHOD_NOT_ALLOWED", + "value": 405 + }, + { + "name": "RESPONSE_NOT_ACCEPTABLE", + "value": 406 + }, + { + "name": "RESPONSE_PROXY_AUTHENTICATION_REQUIRED", + "value": 407 + }, + { + "name": "RESPONSE_REQUEST_TIMEOUT", + "value": 408 + }, + { + "name": "RESPONSE_CONFLICT", + "value": 409 + }, + { + "name": "RESPONSE_GONE", + "value": 410 + }, + { + "name": "RESPONSE_LENGTH_REQUIRED", + "value": 411 + }, + { + "name": "RESPONSE_PRECONDITION_FAILED", + "value": 412 + }, + { + "name": "RESPONSE_REQUEST_ENTITY_TOO_LARGE", + "value": 413 + }, + { + "name": "RESPONSE_REQUEST_URI_TOO_LONG", + "value": 414 + }, + { + "name": "RESPONSE_UNSUPPORTED_MEDIA_TYPE", + "value": 415 + }, + { + "name": "RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE", + "value": 416 + }, + { + "name": "RESPONSE_EXPECTATION_FAILED", + "value": 417 + }, + { + "name": "RESPONSE_IM_A_TEAPOT", + "value": 418 + }, + { + "name": "RESPONSE_MISDIRECTED_REQUEST", + "value": 421 + }, + { + "name": "RESPONSE_UNPROCESSABLE_ENTITY", + "value": 422 + }, + { + "name": "RESPONSE_LOCKED", + "value": 423 + }, + { + "name": "RESPONSE_FAILED_DEPENDENCY", + "value": 424 + }, + { + "name": "RESPONSE_UPGRADE_REQUIRED", + "value": 426 + }, + { + "name": "RESPONSE_PRECONDITION_REQUIRED", + "value": 428 + }, + { + "name": "RESPONSE_TOO_MANY_REQUESTS", + "value": 429 + }, + { + "name": "RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE", + "value": 431 + }, + { + "name": "RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS", + "value": 451 + }, + { + "name": "RESPONSE_INTERNAL_SERVER_ERROR", + "value": 500 + }, + { + "name": "RESPONSE_NOT_IMPLEMENTED", + "value": 501 + }, + { + "name": "RESPONSE_BAD_GATEWAY", + "value": 502 + }, + { + "name": "RESPONSE_SERVICE_UNAVAILABLE", + "value": 503 + }, + { + "name": "RESPONSE_GATEWAY_TIMEOUT", + "value": 504 + }, + { + "name": "RESPONSE_HTTP_VERSION_NOT_SUPPORTED", + "value": 505 + }, + { + "name": "RESPONSE_VARIANT_ALSO_NEGOTIATES", + "value": 506 + }, + { + "name": "RESPONSE_INSUFFICIENT_STORAGE", + "value": 507 + }, + { + "name": "RESPONSE_LOOP_DETECTED", + "value": 508 + }, + { + "name": "RESPONSE_NOT_EXTENDED", + "value": 510 + }, + { + "name": "RESPONSE_NETWORK_AUTH_REQUIRED", + "value": 511 + } + ] + } + ], + "methods": [ + { + "name": "connect_to_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1966527607, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "use_ssl", + "type": "bool", + "default_value": "false" + }, + { + "name": "verify_host", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_connection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "connection", + "type": "StreamPeer" + } + ] + }, + { + "name": "get_connection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StreamPeer" + } + }, + { + "name": "request_raw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "method", + "type": "enum::HTTPClient.Method" + }, + { + "name": "url", + "type": "String" + }, + { + "name": "headers", + "type": "PackedStringArray" + }, + { + "name": "body", + "type": "PackedByteArray" + } + ] + }, + { + "name": "request", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "method", + "type": "enum::HTTPClient.Method" + }, + { + "name": "url", + "type": "String" + }, + { + "name": "headers", + "type": "PackedStringArray" + }, + { + "name": "body", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "has_response", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_response_chunked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_response_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_response_headers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_response_headers_as_dictionary", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_response_body_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "read_response_body_chunk", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "set_read_chunk_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bytes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_read_chunk_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_blocking_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_blocking_mode_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HTTPClient.Status" + } + }, + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "set_http_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_https_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "query_string_from_dict", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "fields", + "type": "Dictionary" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "blocking_mode_enabled", + "setter": "set_blocking_mode", + "getter": "is_blocking_mode_enabled", + "index": -1 + }, + { + "type": "StreamPeer", + "name": "connection", + "setter": "set_connection", + "getter": "get_connection", + "index": -1 + }, + { + "type": "int", + "name": "read_chunk_size", + "setter": "set_read_chunk_size", + "getter": "get_read_chunk_size", + "index": -1 + } + ] + }, + { + "name": "HTTPRequest", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "enums": [ + { + "name": "Result", + "values": [ + { + "name": "RESULT_SUCCESS", + "value": 0 + }, + { + "name": "RESULT_CHUNKED_BODY_SIZE_MISMATCH", + "value": 1 + }, + { + "name": "RESULT_CANT_CONNECT", + "value": 2 + }, + { + "name": "RESULT_CANT_RESOLVE", + "value": 3 + }, + { + "name": "RESULT_CONNECTION_ERROR", + "value": 4 + }, + { + "name": "RESULT_SSL_HANDSHAKE_ERROR", + "value": 5 + }, + { + "name": "RESULT_NO_RESPONSE", + "value": 6 + }, + { + "name": "RESULT_BODY_SIZE_LIMIT_EXCEEDED", + "value": 7 + }, + { + "name": "RESULT_BODY_DECOMPRESS_FAILED", + "value": 8 + }, + { + "name": "RESULT_REQUEST_FAILED", + "value": 9 + }, + { + "name": "RESULT_DOWNLOAD_FILE_CANT_OPEN", + "value": 10 + }, + { + "name": "RESULT_DOWNLOAD_FILE_WRITE_ERROR", + "value": 11 + }, + { + "name": "RESULT_REDIRECT_LIMIT_REACHED", + "value": 12 + }, + { + "name": "RESULT_TIMEOUT", + "value": 13 + } + ] + } + ], + "methods": [ + { + "name": "request", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1679146786, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "url", + "type": "String" + }, + { + "name": "custom_headers", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + }, + { + "name": "ssl_validate_domain", + "type": "bool", + "default_value": "true" + }, + { + "name": "method", + "type": "enum::HTTPClient.Method", + "default_value": "0" + }, + { + "name": "request_data", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "request_raw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1679146786, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "url", + "type": "String" + }, + { + "name": "custom_headers", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + }, + { + "name": "ssl_validate_domain", + "type": "bool", + "default_value": "true" + }, + { + "name": "method", + "type": "enum::HTTPClient.Method", + "default_value": "0" + }, + { + "name": "request_data_raw", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + } + ] + }, + { + "name": "cancel_request", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_http_client_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HTTPClient.Status" + } + }, + { + "name": "set_use_threads", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_threads", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_accept_gzip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_accepting_gzip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_body_size_limit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bytes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_body_size_limit", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_redirects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_redirects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_download_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_download_file", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_downloaded_bytes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_body_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_timeout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "timeout", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_timeout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_download_chunk_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "chunk_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_download_chunk_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_http_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_https_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "request_completed", + "arguments": [ + { + "name": "result", + "type": "int" + }, + { + "name": "response_code", + "type": "int" + }, + { + "name": "headers", + "type": "PackedStringArray" + }, + { + "name": "body", + "type": "PackedByteArray" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "download_file", + "setter": "set_download_file", + "getter": "get_download_file", + "index": -1 + }, + { + "type": "int", + "name": "download_chunk_size", + "setter": "set_download_chunk_size", + "getter": "get_download_chunk_size", + "index": -1 + }, + { + "type": "bool", + "name": "use_threads", + "setter": "set_use_threads", + "getter": "is_using_threads", + "index": -1 + }, + { + "type": "bool", + "name": "accept_gzip", + "setter": "set_accept_gzip", + "getter": "is_accepting_gzip", + "index": -1 + }, + { + "type": "int", + "name": "body_size_limit", + "setter": "set_body_size_limit", + "getter": "get_body_size_limit", + "index": -1 + }, + { + "type": "int", + "name": "max_redirects", + "setter": "set_max_redirects", + "getter": "get_max_redirects", + "index": -1 + }, + { + "type": "float", + "name": "timeout", + "setter": "set_timeout", + "getter": "get_timeout", + "index": -1 + } + ] + }, + { + "name": "HashingContext", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "HashType", + "values": [ + { + "name": "HASH_MD5", + "value": 0 + }, + { + "name": "HASH_SHA1", + "value": 1 + }, + { + "name": "HASH_SHA256", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "type", + "type": "enum::HashingContext.HashType" + } + ] + }, + { + "name": "update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "chunk", + "type": "PackedByteArray" + } + ] + }, + { + "name": "finish", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedByteArray" + } + } + ] + }, + { + "name": "HeightMapShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_map_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_map_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_map_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_map_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_map_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "get_map_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedFloat32Array" + } + } + ], + "properties": [ + { + "type": "int", + "name": "map_width", + "setter": "set_map_width", + "getter": "get_map_width", + "index": -1 + }, + { + "type": "int", + "name": "map_depth", + "setter": "set_map_depth", + "getter": "get_map_depth", + "index": -1 + }, + { + "type": "PackedFloat32Array", + "name": "map_data", + "setter": "set_map_data", + "getter": "get_map_data", + "index": -1 + } + ] + }, + { + "name": "HingeJoint3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint3D", + "api_type": "core", + "enums": [ + { + "name": "Param", + "values": [ + { + "name": "PARAM_BIAS", + "value": 0 + }, + { + "name": "PARAM_LIMIT_UPPER", + "value": 1 + }, + { + "name": "PARAM_LIMIT_LOWER", + "value": 2 + }, + { + "name": "PARAM_LIMIT_BIAS", + "value": 3 + }, + { + "name": "PARAM_LIMIT_SOFTNESS", + "value": 4 + }, + { + "name": "PARAM_LIMIT_RELAXATION", + "value": 5 + }, + { + "name": "PARAM_MOTOR_TARGET_VELOCITY", + "value": 6 + }, + { + "name": "PARAM_MOTOR_MAX_IMPULSE", + "value": 7 + }, + { + "name": "PARAM_MAX", + "value": 8 + } + ] + }, + { + "name": "Flag", + "values": [ + { + "name": "FLAG_USE_LIMIT", + "value": 0 + }, + { + "name": "FLAG_ENABLE_MOTOR", + "value": 1 + }, + { + "name": "FLAG_MAX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::HingeJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::HingeJoint3D.Param" + } + ] + }, + { + "name": "set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::HingeJoint3D.Flag" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::HingeJoint3D.Flag" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "params/bias", + "setter": "set_param", + "getter": "get_param", + "index": 0 + }, + { + "type": "bool", + "name": "angular_limit/enable", + "setter": "set_flag", + "getter": "get_flag", + "index": 0 + }, + { + "type": "float", + "name": "angular_limit/upper", + "setter": "_set_upper_limit", + "getter": "_get_upper_limit", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit/lower", + "setter": "_set_lower_limit", + "getter": "_get_lower_limit", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit/bias", + "setter": "set_param", + "getter": "get_param", + "index": 3 + }, + { + "type": "float", + "name": "angular_limit/softness", + "setter": "set_param", + "getter": "get_param", + "index": 4 + }, + { + "type": "float", + "name": "angular_limit/relaxation", + "setter": "set_param", + "getter": "get_param", + "index": 5 + }, + { + "type": "bool", + "name": "motor/enable", + "setter": "set_flag", + "getter": "get_flag", + "index": 1 + }, + { + "type": "float", + "name": "motor/target_velocity", + "setter": "set_param", + "getter": "get_param", + "index": 6 + }, + { + "type": "float", + "name": "motor/max_impulse", + "setter": "set_param", + "getter": "get_param", + "index": 7 + } + ] + }, + { + "name": "IP", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "RESOLVER_MAX_QUERIES", + "value": 256 + }, + { + "name": "RESOLVER_INVALID_ID", + "value": -1 + } + ], + "enums": [ + { + "name": "ResolverStatus", + "values": [ + { + "name": "RESOLVER_STATUS_NONE", + "value": 0 + }, + { + "name": "RESOLVER_STATUS_WAITING", + "value": 1 + }, + { + "name": "RESOLVER_STATUS_DONE", + "value": 2 + }, + { + "name": "RESOLVER_STATUS_ERROR", + "value": 3 + } + ] + }, + { + "name": "Type", + "values": [ + { + "name": "TYPE_NONE", + "value": 0 + }, + { + "name": "TYPE_IPV4", + "value": 1 + }, + { + "name": "TYPE_IPV6", + "value": 2 + }, + { + "name": "TYPE_ANY", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "resolve_hostname", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "ip_type", + "type": "enum::IP.Type", + "default_value": "3" + } + ] + }, + { + "name": "resolve_hostname_addresses", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "ip_type", + "type": "enum::IP.Type", + "default_value": "3" + } + ] + }, + { + "name": "resolve_hostname_queue_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "ip_type", + "type": "enum::IP.Type", + "default_value": "3" + } + ] + }, + { + "name": "get_resolve_item_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::IP.ResolverStatus" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_resolve_item_address", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_resolve_item_addresses", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "erase_resolve_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_local_addresses", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_local_interfaces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "clear_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 139138028, + "arguments": [ + { + "name": "hostname", + "type": "String", + "default_value": "\"\"" + } + ] + } + ] + }, + { + "name": "IPUnix", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "IP", + "api_type": "core" + }, + { + "name": "Image", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "constants": [ + { + "name": "MAX_WIDTH", + "value": 16777216 + }, + { + "name": "MAX_HEIGHT", + "value": 16777216 + } + ], + "enums": [ + { + "name": "Format", + "values": [ + { + "name": "FORMAT_L8", + "value": 0 + }, + { + "name": "FORMAT_LA8", + "value": 1 + }, + { + "name": "FORMAT_R8", + "value": 2 + }, + { + "name": "FORMAT_RG8", + "value": 3 + }, + { + "name": "FORMAT_RGB8", + "value": 4 + }, + { + "name": "FORMAT_RGBA8", + "value": 5 + }, + { + "name": "FORMAT_RGBA4444", + "value": 6 + }, + { + "name": "FORMAT_RGB565", + "value": 7 + }, + { + "name": "FORMAT_RF", + "value": 8 + }, + { + "name": "FORMAT_RGF", + "value": 9 + }, + { + "name": "FORMAT_RGBF", + "value": 10 + }, + { + "name": "FORMAT_RGBAF", + "value": 11 + }, + { + "name": "FORMAT_RH", + "value": 12 + }, + { + "name": "FORMAT_RGH", + "value": 13 + }, + { + "name": "FORMAT_RGBH", + "value": 14 + }, + { + "name": "FORMAT_RGBAH", + "value": 15 + }, + { + "name": "FORMAT_RGBE9995", + "value": 16 + }, + { + "name": "FORMAT_DXT1", + "value": 17 + }, + { + "name": "FORMAT_DXT3", + "value": 18 + }, + { + "name": "FORMAT_DXT5", + "value": 19 + }, + { + "name": "FORMAT_RGTC_R", + "value": 20 + }, + { + "name": "FORMAT_RGTC_RG", + "value": 21 + }, + { + "name": "FORMAT_BPTC_RGBA", + "value": 22 + }, + { + "name": "FORMAT_BPTC_RGBF", + "value": 23 + }, + { + "name": "FORMAT_BPTC_RGBFU", + "value": 24 + }, + { + "name": "FORMAT_ETC", + "value": 25 + }, + { + "name": "FORMAT_ETC2_R11", + "value": 26 + }, + { + "name": "FORMAT_ETC2_R11S", + "value": 27 + }, + { + "name": "FORMAT_ETC2_RG11", + "value": 28 + }, + { + "name": "FORMAT_ETC2_RG11S", + "value": 29 + }, + { + "name": "FORMAT_ETC2_RGB8", + "value": 30 + }, + { + "name": "FORMAT_ETC2_RGBA8", + "value": 31 + }, + { + "name": "FORMAT_ETC2_RGB8A1", + "value": 32 + }, + { + "name": "FORMAT_ETC2_RA_AS_RG", + "value": 33 + }, + { + "name": "FORMAT_DXT5_RA_AS_RG", + "value": 34 + }, + { + "name": "FORMAT_MAX", + "value": 35 + } + ] + }, + { + "name": "Interpolation", + "values": [ + { + "name": "INTERPOLATE_NEAREST", + "value": 0 + }, + { + "name": "INTERPOLATE_BILINEAR", + "value": 1 + }, + { + "name": "INTERPOLATE_CUBIC", + "value": 2 + }, + { + "name": "INTERPOLATE_TRILINEAR", + "value": 3 + }, + { + "name": "INTERPOLATE_LANCZOS", + "value": 4 + } + ] + }, + { + "name": "AlphaMode", + "values": [ + { + "name": "ALPHA_NONE", + "value": 0 + }, + { + "name": "ALPHA_BIT", + "value": 1 + }, + { + "name": "ALPHA_BLEND", + "value": 2 + } + ] + }, + { + "name": "CompressMode", + "values": [ + { + "name": "COMPRESS_S3TC", + "value": 0 + }, + { + "name": "COMPRESS_ETC", + "value": 1 + }, + { + "name": "COMPRESS_ETC2", + "value": 2 + }, + { + "name": "COMPRESS_BPTC", + "value": 3 + } + ] + }, + { + "name": "UsedChannels", + "values": [ + { + "name": "USED_CHANNELS_L", + "value": 0 + }, + { + "name": "USED_CHANNELS_LA", + "value": 1 + }, + { + "name": "USED_CHANNELS_R", + "value": 2 + }, + { + "name": "USED_CHANNELS_RG", + "value": 3 + }, + { + "name": "USED_CHANNELS_RGB", + "value": 4 + }, + { + "name": "USED_CHANNELS_RGBA", + "value": 5 + } + ] + }, + { + "name": "CompressSource", + "values": [ + { + "name": "COMPRESS_SOURCE_GENERIC", + "value": 0 + }, + { + "name": "COMPRESS_SOURCE_SRGB", + "value": 1 + }, + { + "name": "COMPRESS_SOURCE_NORMAL", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "has_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "convert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "format", + "type": "enum::Image.Format" + } + ] + }, + { + "name": "get_mipmap_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "mipmap", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "resize_to_po2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3082182245, + "arguments": [ + { + "name": "square", + "type": "bool", + "default_value": "false" + }, + { + "name": "interpolation", + "type": "enum::Image.Interpolation", + "default_value": "1" + } + ] + }, + { + "name": "resize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "interpolation", + "type": "enum::Image.Interpolation", + "default_value": "1" + } + ] + }, + { + "name": "shrink_x2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "crop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "flip_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "flip_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "generate_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "renormalize", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "clear_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "use_mipmaps", + "type": "bool" + }, + { + "name": "format", + "type": "enum::Image.Format" + } + ] + }, + { + "name": "create_from_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "use_mipmaps", + "type": "bool" + }, + { + "name": "format", + "type": "enum::Image.Format" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "is_empty", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "save_png", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "save_png_to_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "save_exr", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "grayscale", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "detect_alpha", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Image.AlphaMode" + } + }, + { + "name": "is_invisible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "detect_used_channels", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "enum::Image.UsedChannels" + }, + "arguments": [ + { + "name": "source", + "type": "enum::Image.CompressSource", + "default_value": "0" + } + ] + }, + { + "name": "compress", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3892018806, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Image.CompressMode" + }, + { + "name": "source", + "type": "enum::Image.CompressSource", + "default_value": "0" + }, + { + "name": "lossy_quality", + "type": "float", + "meta": "float", + "default_value": "0.7" + } + ] + }, + { + "name": "compress_from_channels", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Image.CompressMode" + }, + { + "name": "channels", + "type": "enum::Image.UsedChannels" + }, + { + "name": "lossy_quality", + "type": "float", + "meta": "float", + "default_value": "0.7" + } + ] + }, + { + "name": "decompress", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "is_compressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "fix_alpha_edges", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "premultiply_alpha", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "srgb_to_linear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "normal_map_to_xy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "rgbe_to_srgb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Image" + } + }, + { + "name": "bump_map_to_normal_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3158860097, + "arguments": [ + { + "name": "bump_scale", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "compute_image_metrics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "compared_image", + "type": "Image" + }, + { + "name": "use_luma", + "type": "bool" + } + ] + }, + { + "name": "blit_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "src", + "type": "Image" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "dst", + "type": "Vector2" + } + ] + }, + { + "name": "blit_rect_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "src", + "type": "Image" + }, + { + "name": "mask", + "type": "Image" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "dst", + "type": "Vector2" + } + ] + }, + { + "name": "blend_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "src", + "type": "Image" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "dst", + "type": "Vector2" + } + ] + }, + { + "name": "blend_rect_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "src", + "type": "Image" + }, + { + "name": "mask", + "type": "Image" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "dst", + "type": "Vector2" + } + ] + }, + { + "name": "fill", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "fill_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_used_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "get_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "copy_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "src", + "type": "Image" + } + ] + }, + { + "name": "get_pixelv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2i" + } + ] + }, + { + "name": "get_pixel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "x", + "type": "int", + "meta": "int32" + }, + { + "name": "y", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_pixelv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "point", + "type": "Vector2i" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "set_pixel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "x", + "type": "int", + "meta": "int32" + }, + { + "name": "y", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "adjust_bcs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "brightness", + "type": "float", + "meta": "float" + }, + { + "name": "contrast", + "type": "float", + "meta": "float" + }, + { + "name": "saturation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "load_png_from_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + }, + { + "name": "load_jpg_from_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + }, + { + "name": "load_webp_from_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + }, + { + "name": "load_tga_from_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + }, + { + "name": "load_bmp_from_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "data", + "setter": "_set_data", + "getter": "_get_data", + "index": -1 + } + ] + }, + { + "name": "ImageTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "create_from_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "set_size_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + } + ] + }, + { + "name": "ImageTexture3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture3D", + "api_type": "core", + "methods": [ + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135553772, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "format", + "type": "enum::Image.Format" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "depth", + "type": "int", + "meta": "int32" + }, + { + "name": "use_mipmaps", + "type": "bool" + }, + { + "name": "data", + "type": "Array" + } + ] + }, + { + "name": "update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "Array" + } + ] + } + ] + }, + { + "name": "ImageTextureLayered", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "TextureLayered", + "api_type": "core", + "methods": [ + { + "name": "create_from_images", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "images", + "type": "Array" + } + ] + }, + { + "name": "update_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "image", + "type": "Image" + }, + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "ImmediateMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Mesh", + "api_type": "core", + "methods": [ + { + "name": "surface_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "primitive", + "type": "enum::Mesh.PrimitiveType" + }, + { + "name": "material", + "type": "Material", + "default_value": "null" + } + ] + }, + { + "name": "surface_set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "surface_set_normal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal", + "type": "Vector3" + } + ] + }, + { + "name": "surface_set_tangent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tangent", + "type": "Plane" + } + ] + }, + { + "name": "surface_set_uv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uv", + "type": "Vector2" + } + ] + }, + { + "name": "surface_set_uv2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uv2", + "type": "Vector2" + } + ] + }, + { + "name": "surface_add_vertex", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertex", + "type": "Vector3" + } + ] + }, + { + "name": "surface_add_vertex_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertex", + "type": "Vector2" + } + ] + }, + { + "name": "surface_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_surfaces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "ImporterMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "add_blend_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_blend_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_blend_shape_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "blend_shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_blend_shape_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Mesh.BlendShapeMode" + } + ] + }, + { + "name": "get_blend_shape_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Mesh.BlendShapeMode" + } + }, + { + "name": "add_surface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2484236017, + "arguments": [ + { + "name": "primitive", + "type": "enum::Mesh.PrimitiveType" + }, + { + "name": "arrays", + "type": "Array" + }, + { + "name": "blend_shapes", + "type": "Array", + "default_value": "[]" + }, + { + "name": "lods", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "material", + "type": "Material", + "default_value": "null" + }, + { + "name": "name", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "get_surface_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_surface_primitive_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Mesh.PrimitiveType" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_blend_shape_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "blend_shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_lod_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_lod_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "lod_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_lod_indices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "lod_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Material" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_surface_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_surface_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "surface_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 365790509, + "return_value": { + "type": "ArrayMesh" + }, + "arguments": [ + { + "name": "base_mesh", + "type": "ArrayMesh", + "default_value": "null" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_lightmap_size_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_lightmap_size_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + } + ] + }, + { + "name": "ImporterMeshInstance3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "ImporterMesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ImporterMesh" + } + }, + { + "name": "set_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skin", + "type": "Skin" + } + ] + }, + { + "name": "get_skin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skin" + } + }, + { + "name": "set_skeleton_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeleton_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_skeleton_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "ImporterMesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "Skin", + "name": "skin", + "setter": "set_skin", + "getter": "get_skin", + "index": -1 + }, + { + "type": "NodePath", + "name": "skeleton_path", + "setter": "set_skeleton_path", + "getter": "get_skeleton_path", + "index": -1 + } + ] + }, + { + "name": "Input", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "MouseMode", + "values": [ + { + "name": "MOUSE_MODE_VISIBLE", + "value": 0 + }, + { + "name": "MOUSE_MODE_HIDDEN", + "value": 1 + }, + { + "name": "MOUSE_MODE_CAPTURED", + "value": 2 + }, + { + "name": "MOUSE_MODE_CONFINED", + "value": 3 + }, + { + "name": "MOUSE_MODE_CONFINED_HIDDEN", + "value": 4 + } + ] + }, + { + "name": "CursorShape", + "values": [ + { + "name": "CURSOR_ARROW", + "value": 0 + }, + { + "name": "CURSOR_IBEAM", + "value": 1 + }, + { + "name": "CURSOR_POINTING_HAND", + "value": 2 + }, + { + "name": "CURSOR_CROSS", + "value": 3 + }, + { + "name": "CURSOR_WAIT", + "value": 4 + }, + { + "name": "CURSOR_BUSY", + "value": 5 + }, + { + "name": "CURSOR_DRAG", + "value": 6 + }, + { + "name": "CURSOR_CAN_DROP", + "value": 7 + }, + { + "name": "CURSOR_FORBIDDEN", + "value": 8 + }, + { + "name": "CURSOR_VSIZE", + "value": 9 + }, + { + "name": "CURSOR_HSIZE", + "value": 10 + }, + { + "name": "CURSOR_BDIAGSIZE", + "value": 11 + }, + { + "name": "CURSOR_FDIAGSIZE", + "value": 12 + }, + { + "name": "CURSOR_MOVE", + "value": 13 + }, + { + "name": "CURSOR_VSPLIT", + "value": 14 + }, + { + "name": "CURSOR_HSPLIT", + "value": 15 + }, + { + "name": "CURSOR_HELP", + "value": 16 + } + ] + } + ], + "methods": [ + { + "name": "is_anything_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_key_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "keycode", + "type": "enum::Key" + } + ] + }, + { + "name": "is_physical_key_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "keycode", + "type": "enum::Key" + } + ] + }, + { + "name": "is_mouse_button_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "button", + "type": "enum::MouseButton" + } + ] + }, + { + "name": "is_joy_button_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + }, + { + "name": "button", + "type": "enum::JoyButton" + } + ] + }, + { + "name": "is_action_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_action_just_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_action_just_released", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_action_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_action_raw_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "negative_action", + "type": "StringName" + }, + { + "name": "positive_action", + "type": "StringName" + } + ] + }, + { + "name": "get_vector", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 177157229, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "negative_x", + "type": "StringName" + }, + { + "name": "positive_x", + "type": "StringName" + }, + { + "name": "negative_y", + "type": "StringName" + }, + { + "name": "positive_y", + "type": "StringName" + }, + { + "name": "deadzone", + "type": "float", + "meta": "float", + "default_value": "-1.0" + } + ] + }, + { + "name": "add_joy_mapping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "mapping", + "type": "String" + }, + { + "name": "update_existing", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_joy_mapping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "guid", + "type": "String" + } + ] + }, + { + "name": "is_joy_known", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joy_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + }, + { + "name": "axis", + "type": "enum::JoyAxis" + } + ] + }, + { + "name": "get_joy_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joy_guid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connected_joypads", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_joy_vibration_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joy_vibration_duration", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "start_joy_vibration", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + }, + { + "name": "weak_magnitude", + "type": "float", + "meta": "float" + }, + { + "name": "strong_magnitude", + "type": "float", + "meta": "float" + }, + { + "name": "duration", + "type": "float", + "meta": "float", + "default_value": "0" + } + ] + }, + { + "name": "stop_joy_vibration", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "vibrate_handheld", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 909473821, + "arguments": [ + { + "name": "duration_ms", + "type": "int", + "meta": "int32", + "default_value": "500" + } + ] + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_accelerometer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_magnetometer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_gyroscope", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "set_accelerometer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "set_magnetometer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "set_gyroscope", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "get_last_mouse_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_mouse_button_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MouseButton" + } + }, + { + "name": "set_mouse_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Input.MouseMode" + } + ] + }, + { + "name": "get_mouse_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Input.MouseMode" + } + }, + { + "name": "warp_mouse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "action_press", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "strength", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "action_release", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "set_default_cursor_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "shape", + "type": "enum::Input.CursorShape", + "default_value": "0" + } + ] + }, + { + "name": "get_current_cursor_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Input.CursorShape" + } + }, + { + "name": "set_custom_mouse_cursor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2600550837, + "arguments": [ + { + "name": "image", + "type": "Resource" + }, + { + "name": "shape", + "type": "enum::Input.CursorShape", + "default_value": "0" + }, + { + "name": "hotspot", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "parse_input_event", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "set_use_accumulated_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_accumulated_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "flush_buffered_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "signals": [ + { + "name": "joy_connection_changed", + "arguments": [ + { + "name": "device", + "type": "int" + }, + { + "name": "connected", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "mouse_mode", + "setter": "set_mouse_mode", + "getter": "get_mouse_mode", + "index": -1 + }, + { + "type": "bool", + "name": "use_accumulated_input", + "setter": "set_use_accumulated_input", + "getter": "is_using_accumulated_input", + "index": -1 + } + ] + }, + { + "name": "InputEvent", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "device", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_device", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_action_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474135340, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "allow_echo", + "type": "bool", + "default_value": "false" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_action_released", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_action_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "is_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_echo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "as_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_match", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "is_action_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "accumulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "with_event", + "type": "InputEvent" + } + ] + }, + { + "name": "xformed_by", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "InputEvent" + }, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + }, + { + "name": "local_ofs", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "device", + "setter": "set_device", + "getter": "get_device", + "index": -1 + } + ] + }, + { + "name": "InputEventAction", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEvent", + "api_type": "core", + "methods": [ + { + "name": "set_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "get_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "set_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "action", + "setter": "set_action", + "getter": "get_action", + "index": -1 + }, + { + "type": "bool", + "name": "pressed", + "setter": "set_pressed", + "getter": "is_pressed", + "index": -1 + }, + { + "type": "float", + "name": "strength", + "setter": "set_strength", + "getter": "get_strength", + "index": -1 + } + ] + }, + { + "name": "InputEventFromWindow", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "InputEvent", + "api_type": "core", + "methods": [ + { + "name": "set_window_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_window_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + } + ], + "properties": [ + { + "type": "int", + "name": "window_id", + "setter": "set_window_id", + "getter": "get_window_id", + "index": -1 + } + ] + }, + { + "name": "InputEventGesture", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "InputEventWithModifiers", + "api_type": "core", + "methods": [ + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + } + ] + }, + { + "name": "InputEventJoypadButton", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEvent", + "api_type": "core", + "methods": [ + { + "name": "set_button_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "button_index", + "type": "enum::JoyButton" + } + ] + }, + { + "name": "get_button_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::JoyButton" + } + }, + { + "name": "set_pressure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressure", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pressure", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "button_index", + "setter": "set_button_index", + "getter": "get_button_index", + "index": -1 + }, + { + "type": "float", + "name": "pressure", + "setter": "set_pressure", + "getter": "get_pressure", + "index": -1 + }, + { + "type": "bool", + "name": "pressed", + "setter": "set_pressed", + "getter": "is_pressed", + "index": -1 + } + ] + }, + { + "name": "InputEventJoypadMotion", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEvent", + "api_type": "core", + "methods": [ + { + "name": "set_axis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis", + "type": "enum::JoyAxis" + } + ] + }, + { + "name": "get_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::JoyAxis" + } + }, + { + "name": "set_axis_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis_value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_axis_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "axis", + "setter": "set_axis", + "getter": "get_axis", + "index": -1 + }, + { + "type": "float", + "name": "axis_value", + "setter": "set_axis_value", + "getter": "get_axis_value", + "index": -1 + } + ] + }, + { + "name": "InputEventKey", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventWithModifiers", + "api_type": "core", + "methods": [ + { + "name": "set_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "set_keycode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keycode", + "type": "enum::Key" + } + ] + }, + { + "name": "get_keycode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Key" + } + }, + { + "name": "set_physical_keycode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physical_keycode", + "type": "enum::Key" + } + ] + }, + { + "name": "get_physical_keycode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Key" + } + }, + { + "name": "set_unicode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unicode", + "type": "int" + } + ] + }, + { + "name": "get_unicode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int" + } + }, + { + "name": "set_echo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "echo", + "type": "bool" + } + ] + }, + { + "name": "get_keycode_with_modifiers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Key" + } + }, + { + "name": "get_physical_keycode_with_modifiers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Key" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "pressed", + "setter": "set_pressed", + "getter": "is_pressed", + "index": -1 + }, + { + "type": "int", + "name": "keycode", + "setter": "set_keycode", + "getter": "get_keycode", + "index": -1 + }, + { + "type": "int", + "name": "physical_keycode", + "setter": "set_physical_keycode", + "getter": "get_physical_keycode", + "index": -1 + }, + { + "type": "int", + "name": "unicode", + "setter": "set_unicode", + "getter": "get_unicode", + "index": -1 + }, + { + "type": "bool", + "name": "echo", + "setter": "set_echo", + "getter": "is_echo", + "index": -1 + } + ] + }, + { + "name": "InputEventMIDI", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEvent", + "api_type": "core", + "methods": [ + { + "name": "set_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "channel", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_channel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_message", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "message", + "type": "enum::MIDIMessage" + } + ] + }, + { + "name": "get_message", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MIDIMessage" + } + }, + { + "name": "set_pitch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pitch", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_pitch", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_instrument", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "instrument", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_instrument", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_pressure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressure", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_pressure", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_controller_number", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "controller_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_controller_number", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_controller_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "controller_value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_controller_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "channel", + "setter": "set_channel", + "getter": "get_channel", + "index": -1 + }, + { + "type": "int", + "name": "message", + "setter": "set_message", + "getter": "get_message", + "index": -1 + }, + { + "type": "int", + "name": "pitch", + "setter": "set_pitch", + "getter": "get_pitch", + "index": -1 + }, + { + "type": "int", + "name": "velocity", + "setter": "set_velocity", + "getter": "get_velocity", + "index": -1 + }, + { + "type": "int", + "name": "instrument", + "setter": "set_instrument", + "getter": "get_instrument", + "index": -1 + }, + { + "type": "int", + "name": "pressure", + "setter": "set_pressure", + "getter": "get_pressure", + "index": -1 + }, + { + "type": "int", + "name": "controller_number", + "setter": "set_controller_number", + "getter": "get_controller_number", + "index": -1 + }, + { + "type": "int", + "name": "controller_value", + "setter": "set_controller_value", + "getter": "get_controller_value", + "index": -1 + } + ] + }, + { + "name": "InputEventMagnifyGesture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventGesture", + "api_type": "core", + "methods": [ + { + "name": "set_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "factor", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "factor", + "setter": "set_factor", + "getter": "get_factor", + "index": -1 + } + ] + }, + { + "name": "InputEventMouse", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "InputEventWithModifiers", + "api_type": "core", + "methods": [ + { + "name": "set_button_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "button_mask", + "type": "enum::MouseButton" + } + ] + }, + { + "name": "get_button_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MouseButton" + } + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_global_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "global_position", + "type": "Vector2" + } + ] + }, + { + "name": "get_global_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "int", + "name": "button_mask", + "setter": "set_button_mask", + "getter": "get_button_mask", + "index": -1 + }, + { + "type": "Vector2", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "Vector2", + "name": "global_position", + "setter": "set_global_position", + "getter": "get_global_position", + "index": -1 + } + ] + }, + { + "name": "InputEventMouseButton", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventMouse", + "api_type": "core", + "methods": [ + { + "name": "set_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "factor", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_button_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "button_index", + "type": "enum::MouseButton" + } + ] + }, + { + "name": "get_button_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MouseButton" + } + }, + { + "name": "set_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "set_double_click", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "double_click", + "type": "bool" + } + ] + }, + { + "name": "is_double_click", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "factor", + "setter": "set_factor", + "getter": "get_factor", + "index": -1 + }, + { + "type": "int", + "name": "button_index", + "setter": "set_button_index", + "getter": "get_button_index", + "index": -1 + }, + { + "type": "bool", + "name": "pressed", + "setter": "set_pressed", + "getter": "is_pressed", + "index": -1 + }, + { + "type": "bool", + "name": "double_click", + "setter": "set_double_click", + "getter": "is_double_click", + "index": -1 + } + ] + }, + { + "name": "InputEventMouseMotion", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventMouse", + "api_type": "core", + "methods": [ + { + "name": "set_tilt", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tilt", + "type": "Vector2" + } + ] + }, + { + "name": "get_tilt", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_pressure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressure", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pressure", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_relative", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "relative", + "type": "Vector2" + } + ] + }, + { + "name": "get_relative", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "tilt", + "setter": "set_tilt", + "getter": "get_tilt", + "index": -1 + }, + { + "type": "float", + "name": "pressure", + "setter": "set_pressure", + "getter": "get_pressure", + "index": -1 + }, + { + "type": "Vector2", + "name": "relative", + "setter": "set_relative", + "getter": "get_relative", + "index": -1 + }, + { + "type": "Vector2", + "name": "velocity", + "setter": "set_velocity", + "getter": "get_velocity", + "index": -1 + } + ] + }, + { + "name": "InputEventPanGesture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventGesture", + "api_type": "core", + "methods": [ + { + "name": "set_delta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "delta", + "type": "Vector2" + } + ] + }, + { + "name": "get_delta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "delta", + "setter": "set_delta", + "getter": "get_delta", + "index": -1 + } + ] + }, + { + "name": "InputEventScreenDrag", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventFromWindow", + "api_type": "core", + "methods": [ + { + "name": "set_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_relative", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "relative", + "type": "Vector2" + } + ] + }, + { + "name": "get_relative", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "int", + "name": "index", + "setter": "set_index", + "getter": "get_index", + "index": -1 + }, + { + "type": "Vector2", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "Vector2", + "name": "relative", + "setter": "set_relative", + "getter": "get_relative", + "index": -1 + }, + { + "type": "Vector2", + "name": "velocity", + "setter": "set_velocity", + "getter": "get_velocity", + "index": -1 + } + ] + }, + { + "name": "InputEventScreenTouch", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEventFromWindow", + "api_type": "core", + "methods": [ + { + "name": "set_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "index", + "setter": "set_index", + "getter": "get_index", + "index": -1 + }, + { + "type": "Vector2", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "bool", + "name": "pressed", + "setter": "set_pressed", + "getter": "is_pressed", + "index": -1 + } + ] + }, + { + "name": "InputEventShortcut", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "InputEvent", + "api_type": "core", + "methods": [ + { + "name": "set_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shortcut", + "type": "Shortcut" + } + ] + }, + { + "name": "get_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Shortcut" + } + } + ], + "properties": [ + { + "type": "Shortcut", + "name": "shortcut", + "setter": "set_shortcut", + "getter": "get_shortcut", + "index": -1 + } + ] + }, + { + "name": "InputEventWithModifiers", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "InputEventFromWindow", + "api_type": "core", + "methods": [ + { + "name": "set_store_command", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_storing_command", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_alt_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_alt_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shift_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_shift_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_ctrl_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_ctrl_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_meta_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_meta_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_command_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressed", + "type": "bool" + } + ] + }, + { + "name": "is_command_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "store_command", + "setter": "set_store_command", + "getter": "is_storing_command", + "index": -1 + }, + { + "type": "bool", + "name": "alt_pressed", + "setter": "set_alt_pressed", + "getter": "is_alt_pressed", + "index": -1 + }, + { + "type": "bool", + "name": "shift_pressed", + "setter": "set_shift_pressed", + "getter": "is_shift_pressed", + "index": -1 + }, + { + "type": "bool", + "name": "ctrl_pressed", + "setter": "set_ctrl_pressed", + "getter": "is_ctrl_pressed", + "index": -1 + }, + { + "type": "bool", + "name": "meta_pressed", + "setter": "set_meta_pressed", + "getter": "is_meta_pressed", + "index": -1 + }, + { + "type": "bool", + "name": "command_pressed", + "setter": "set_command_pressed", + "getter": "is_command_pressed", + "index": -1 + } + ] + }, + { + "name": "InputMap", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "has_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "get_actions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "deadzone", + "type": "float", + "meta": "float", + "default_value": "0.5" + } + ] + }, + { + "name": "erase_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "action_set_deadzone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "deadzone", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "action_get_deadzone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "action_add_event", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "action_has_event", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "action_erase_event", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "action", + "type": "StringName" + }, + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "action_erase_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "action_get_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "action", + "type": "StringName" + } + ] + }, + { + "name": "event_is_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "action", + "type": "StringName" + }, + { + "name": "exact_match", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "load_from_project_settings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "InstancePlaceholder", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "get_stored_values", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "with_order", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_instance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1434999914, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "replace", + "type": "bool", + "default_value": "false" + }, + { + "name": "custom_scene", + "type": "PackedScene", + "default_value": "null" + } + ] + }, + { + "name": "get_instance_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ] + }, + { + "name": "IntervalTweener", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Tweener", + "api_type": "core" + }, + { + "name": "ItemList", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "IconMode", + "values": [ + { + "name": "ICON_MODE_TOP", + "value": 0 + }, + { + "name": "ICON_MODE_LEFT", + "value": 1 + } + ] + }, + { + "name": "SelectMode", + "values": [ + { + "name": "SELECT_SINGLE", + "value": 0 + }, + { + "name": "SELECT_MULTI", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "add_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474135307, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "icon", + "type": "Texture2D", + "default_value": "null" + }, + { + "name": "selectable", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "add_icon_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "icon", + "type": "Texture2D" + }, + { + "name": "selectable", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_item_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_item_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_item_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_item_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Control.TextDirection" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_item_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_item_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_icon_transposed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "transposed", + "type": "bool" + } + ] + }, + { + "name": "is_item_icon_transposed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_icon_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_item_icon_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_icon_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_item_icon_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_selectable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "selectable", + "type": "bool" + } + ] + }, + { + "name": "is_item_selectable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_item_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_metadata", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "metadata", + "type": "Variant" + } + ] + }, + { + "name": "get_item_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_custom_bg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "custom_bg_color", + "type": "Color" + } + ] + }, + { + "name": "get_item_custom_bg_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_custom_fg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "custom_fg_color", + "type": "Color" + } + ] + }, + { + "name": "get_item_custom_fg_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_tooltip_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_item_tooltip_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tooltip", + "type": "String" + } + ] + }, + { + "name": "get_item_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "single", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "deselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "deselect_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_selected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_selected_items", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "move_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "to_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "remove_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "sort_items_by_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_fixed_column_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fixed_column_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_same_column_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_same_column_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_max_text_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lines", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_text_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_columns", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_columns", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_select_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::ItemList.SelectMode" + } + ] + }, + { + "name": "get_select_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ItemList.SelectMode" + } + }, + { + "name": "set_icon_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::ItemList.IconMode" + } + ] + }, + { + "name": "get_icon_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ItemList.IconMode" + } + }, + { + "name": "set_fixed_icon_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_fixed_icon_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_icon_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_icon_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_allow_rmb_select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "get_allow_rmb_select", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_allow_reselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "get_allow_reselect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_auto_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_anything_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_item_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "exact", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "ensure_current_is_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_v_scroll_bar", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "VScrollBar" + } + }, + { + "name": "set_text_overrun_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "overrun_behavior", + "type": "enum::TextParagraph.OverrunBehavior" + } + ] + }, + { + "name": "get_text_overrun_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextParagraph.OverrunBehavior" + } + } + ], + "signals": [ + { + "name": "item_selected", + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "empty_clicked", + "arguments": [ + { + "name": "at_position", + "type": "Vector2" + }, + { + "name": "mouse_button_index", + "type": "int" + } + ] + }, + { + "name": "item_clicked", + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "at_position", + "type": "Vector2" + }, + { + "name": "mouse_button_index", + "type": "int" + } + ] + }, + { + "name": "multi_selected", + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "selected", + "type": "bool" + } + ] + }, + { + "name": "item_activated", + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "select_mode", + "setter": "set_select_mode", + "getter": "get_select_mode", + "index": -1 + }, + { + "type": "bool", + "name": "allow_reselect", + "setter": "set_allow_reselect", + "getter": "get_allow_reselect", + "index": -1 + }, + { + "type": "bool", + "name": "allow_rmb_select", + "setter": "set_allow_rmb_select", + "getter": "get_allow_rmb_select", + "index": -1 + }, + { + "type": "int", + "name": "max_text_lines", + "setter": "set_max_text_lines", + "getter": "get_max_text_lines", + "index": -1 + }, + { + "type": "bool", + "name": "auto_height", + "setter": "set_auto_height", + "getter": "has_auto_height", + "index": -1 + }, + { + "type": "int", + "name": "text_overrun_behavior", + "setter": "set_text_overrun_behavior", + "getter": "get_text_overrun_behavior", + "index": -1 + }, + { + "type": "Items,item_", + "name": "item_count", + "setter": "set_item_count", + "getter": "get_item_count", + "index": -1 + }, + { + "type": "int", + "name": "max_columns", + "setter": "set_max_columns", + "getter": "get_max_columns", + "index": -1 + }, + { + "type": "bool", + "name": "same_column_width", + "setter": "set_same_column_width", + "getter": "is_same_column_width", + "index": -1 + }, + { + "type": "int", + "name": "fixed_column_width", + "setter": "set_fixed_column_width", + "getter": "get_fixed_column_width", + "index": -1 + }, + { + "type": "int", + "name": "icon_mode", + "setter": "set_icon_mode", + "getter": "get_icon_mode", + "index": -1 + }, + { + "type": "float", + "name": "icon_scale", + "setter": "set_icon_scale", + "getter": "get_icon_scale", + "index": -1 + }, + { + "type": "Vector2", + "name": "fixed_icon_size", + "setter": "set_fixed_icon_size", + "getter": "get_fixed_icon_size", + "index": -1 + } + ] + }, + { + "name": "JNISingleton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core" + }, + { + "name": "JSON", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "stringify", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2925806323, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "data", + "type": "Variant" + }, + { + "name": "indent", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "sort_keys", + "type": "bool", + "default_value": "true" + }, + { + "name": "full_precision", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "parse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "json_string", + "type": "String" + } + ] + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + }, + { + "name": "get_error_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_error_message", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ] + }, + { + "name": "JSONRPC", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "ErrorCode", + "values": [ + { + "name": "PARSE_ERROR", + "value": -32700 + }, + { + "name": "INVALID_REQUEST", + "value": -32600 + }, + { + "name": "METHOD_NOT_FOUND", + "value": -32601 + }, + { + "name": "INVALID_PARAMS", + "value": -32602 + }, + { + "name": "INTERNAL_ERROR", + "value": -32603 + } + ] + } + ], + "methods": [ + { + "name": "set_scope", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "scope", + "type": "String" + }, + { + "name": "target", + "type": "Object" + } + ] + }, + { + "name": "process_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "action", + "type": "Variant" + }, + { + "name": "recurse", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "process_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "action", + "type": "String" + } + ] + }, + { + "name": "make_request", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "method", + "type": "String" + }, + { + "name": "params", + "type": "Variant" + }, + { + "name": "id", + "type": "Variant" + } + ] + }, + { + "name": "make_response", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "result", + "type": "Variant" + }, + { + "name": "id", + "type": "Variant" + } + ] + }, + { + "name": "make_notification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "method", + "type": "String" + }, + { + "name": "params", + "type": "Variant" + } + ] + }, + { + "name": "make_response_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "code", + "type": "int", + "meta": "int32" + }, + { + "name": "message", + "type": "String" + }, + { + "name": "id", + "type": "Variant", + "default_value": "null" + } + ] + } + ] + }, + { + "name": "JavaClass", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core" + }, + { + "name": "JavaClassWrapper", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "wrap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "JavaClass" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + } + ] + }, + { + "name": "JavaScript", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "eval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "code", + "type": "String" + }, + { + "name": "use_global_execution_context", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "JavaScriptObject" + }, + "arguments": [ + { + "name": "interface", + "type": "String" + } + ] + }, + { + "name": "create_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "JavaScriptObject" + }, + "arguments": [ + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "create_object", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 135374088, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "object", + "type": "String" + } + ] + }, + { + "name": "download_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + }, + { + "name": "name", + "type": "String" + }, + { + "name": "mime", + "type": "String", + "default_value": "\"application/octet-stream\"" + } + ] + }, + { + "name": "pwa_needs_update", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "pwa_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + } + ], + "signals": [ + { + "name": "pwa_update_available" + } + ] + }, + { + "name": "JavaScriptObject", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core" + }, + { + "name": "Joint2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_node_a", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_a", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_node_b", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_b", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_exclude_nodes_from_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_nodes_from_collision", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "node_a", + "setter": "set_node_a", + "getter": "get_node_a", + "index": -1 + }, + { + "type": "NodePath", + "name": "node_b", + "setter": "set_node_b", + "getter": "get_node_b", + "index": -1 + }, + { + "type": "float", + "name": "bias", + "setter": "set_bias", + "getter": "get_bias", + "index": -1 + }, + { + "type": "bool", + "name": "disable_collision", + "setter": "set_exclude_nodes_from_collision", + "getter": "get_exclude_nodes_from_collision", + "index": -1 + } + ] + }, + { + "name": "Joint3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_node_a", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_a", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_node_b", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_b", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_solver_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_solver_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_exclude_nodes_from_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_nodes_from_collision", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "nodes/node_a", + "setter": "set_node_a", + "getter": "get_node_a", + "index": -1 + }, + { + "type": "NodePath", + "name": "nodes/node_b", + "setter": "set_node_b", + "getter": "get_node_b", + "index": -1 + }, + { + "type": "int", + "name": "solver/priority", + "setter": "set_solver_priority", + "getter": "get_solver_priority", + "index": -1 + }, + { + "type": "bool", + "name": "collision/exclude_nodes", + "setter": "set_exclude_nodes_from_collision", + "getter": "get_exclude_nodes_from_collision", + "index": -1 + } + ] + }, + { + "name": "KinematicCollision2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_travel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_remainder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3009477143, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "up_direction", + "type": "Vector2", + "default_value": "Vector2(0, -1)" + } + ] + }, + { + "name": "get_local_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_collider_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_collider_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_collider_shape_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_collider_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ] + }, + { + "name": "KinematicCollision3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_travel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_remainder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_collision_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_angle", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1406474342, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "up_direction", + "type": "Vector3", + "default_value": "Vector3(0, 1, 0)" + } + ] + }, + { + "name": "get_local_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_shape_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + } + ] + }, + { + "name": "Label", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "AutowrapMode", + "values": [ + { + "name": "AUTOWRAP_OFF", + "value": 0 + }, + { + "name": "AUTOWRAP_ARBITRARY", + "value": 1 + }, + { + "name": "AUTOWRAP_WORD", + "value": 2 + }, + { + "name": "AUTOWRAP_WORD_SMART", + "value": 3 + } + ] + }, + { + "name": "OverrunBehavior", + "values": [ + { + "name": "OVERRUN_NO_TRIMMING", + "value": 0 + }, + { + "name": "OVERRUN_TRIM_CHAR", + "value": 1 + }, + { + "name": "OVERRUN_TRIM_WORD", + "value": 2 + }, + { + "name": "OVERRUN_TRIM_ELLIPSIS", + "value": 3 + }, + { + "name": "OVERRUN_TRIM_WORD_ELLIPSIS", + "value": 4 + } + ] + }, + { + "name": "VisibleCharactersBehavior", + "values": [ + { + "name": "VC_CHARS_BEFORE_SHAPING", + "value": 0 + }, + { + "name": "VC_CHARS_AFTER_SHAPING", + "value": 1 + }, + { + "name": "VC_GLYPHS_AUTO", + "value": 2 + }, + { + "name": "VC_GLYPHS_LTR", + "value": 3 + }, + { + "name": "VC_GLYPHS_RTL", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_horizontal_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_horizontal_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "set_vertical_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::VerticalAlignment" + } + ] + }, + { + "name": "get_vertical_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VerticalAlignment" + } + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_autowrap_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "autowrap_mode", + "type": "enum::Label.AutowrapMode" + } + ] + }, + { + "name": "get_autowrap_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Label.AutowrapMode" + } + }, + { + "name": "set_clip_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_clipping_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_text_overrun_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "overrun_behavior", + "type": "enum::Label.OverrunBehavior" + } + ] + }, + { + "name": "get_text_overrun_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Label.OverrunBehavior" + } + }, + { + "name": "set_uppercase", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_uppercase", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_line_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204435, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_total_character_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_visible_characters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_visible_characters", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_characters_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Label.VisibleCharactersBehavior" + } + }, + { + "name": "set_visible_characters_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "behavior", + "type": "enum::Label.VisibleCharactersBehavior" + } + ] + }, + { + "name": "set_percent_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "percent_visible", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_percent_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_lines_skipped", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lines_skipped", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_lines_skipped", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_lines_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lines_visible", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_lines_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "int", + "name": "horizontal_alignment", + "setter": "set_horizontal_alignment", + "getter": "get_horizontal_alignment", + "index": -1 + }, + { + "type": "int", + "name": "vertical_alignment", + "setter": "set_vertical_alignment", + "getter": "get_vertical_alignment", + "index": -1 + }, + { + "type": "int", + "name": "autowrap_mode", + "setter": "set_autowrap_mode", + "getter": "get_autowrap_mode", + "index": -1 + }, + { + "type": "bool", + "name": "clip_text", + "setter": "set_clip_text", + "getter": "is_clipping_text", + "index": -1 + }, + { + "type": "int", + "name": "text_overrun_behavior", + "setter": "set_text_overrun_behavior", + "getter": "get_text_overrun_behavior", + "index": -1 + }, + { + "type": "bool", + "name": "uppercase", + "setter": "set_uppercase", + "getter": "is_uppercase", + "index": -1 + }, + { + "type": "int", + "name": "lines_skipped", + "setter": "set_lines_skipped", + "getter": "get_lines_skipped", + "index": -1 + }, + { + "type": "int", + "name": "max_lines_visible", + "setter": "set_max_lines_visible", + "getter": "get_max_lines_visible", + "index": -1 + }, + { + "type": "int", + "name": "visible_characters", + "setter": "set_visible_characters", + "getter": "get_visible_characters", + "index": -1 + }, + { + "type": "int", + "name": "visible_characters_behavior", + "setter": "set_visible_characters_behavior", + "getter": "get_visible_characters_behavior", + "index": -1 + }, + { + "type": "float", + "name": "percent_visible", + "setter": "set_percent_visible", + "getter": "get_percent_visible", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + } + ] + }, + { + "name": "Label3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GeometryInstance3D", + "api_type": "core", + "enums": [ + { + "name": "AutowrapMode", + "values": [ + { + "name": "AUTOWRAP_OFF", + "value": 0 + }, + { + "name": "AUTOWRAP_ARBITRARY", + "value": 1 + }, + { + "name": "AUTOWRAP_WORD", + "value": 2 + }, + { + "name": "AUTOWRAP_WORD_SMART", + "value": 3 + } + ] + }, + { + "name": "DrawFlags", + "values": [ + { + "name": "FLAG_SHADED", + "value": 0 + }, + { + "name": "FLAG_DOUBLE_SIDED", + "value": 1 + }, + { + "name": "FLAG_DISABLE_DEPTH_TEST", + "value": 2 + }, + { + "name": "FLAG_FIXED_SIZE", + "value": 3 + }, + { + "name": "FLAG_MAX", + "value": 4 + } + ] + }, + { + "name": "AlphaCutMode", + "values": [ + { + "name": "ALPHA_CUT_DISABLED", + "value": 0 + }, + { + "name": "ALPHA_CUT_DISCARD", + "value": 1 + }, + { + "name": "ALPHA_CUT_OPAQUE_PREPASS", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_horizontal_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_horizontal_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "set_vertical_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::VerticalAlignment" + } + ] + }, + { + "name": "get_vertical_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VerticalAlignment" + } + }, + { + "name": "set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_outline_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_outline_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::TextServer.Direction" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Direction" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_uppercase", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_uppercase", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_render_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_render_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_outline_render_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_outline_render_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Font" + } + }, + { + "name": "set_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_outline_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "outline_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_outline_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_line_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line_spacing", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_line_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_autowrap_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "autowrap_mode", + "type": "enum::Label3D.AutowrapMode" + } + ] + }, + { + "name": "get_autowrap_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Label3D.AutowrapMode" + } + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pixel_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixel_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pixel_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_draw_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::Label3D.DrawFlags" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_draw_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::Label3D.DrawFlags" + } + ] + }, + { + "name": "set_billboard_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.BillboardMode" + } + ] + }, + { + "name": "get_billboard_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.BillboardMode" + } + }, + { + "name": "set_alpha_cut_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Label3D.AlphaCutMode" + } + ] + }, + { + "name": "get_alpha_cut_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Label3D.AlphaCutMode" + } + }, + { + "name": "set_alpha_scissor_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "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": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.TextureFilter" + } + ] + }, + { + "name": "get_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureFilter" + } + }, + { + "name": "generate_triangle_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TriangleMesh" + } + } + ], + "properties": [ + { + "type": "float", + "name": "pixel_size", + "setter": "set_pixel_size", + "getter": "get_pixel_size", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "int", + "name": "billboard", + "setter": "set_billboard_mode", + "getter": "get_billboard_mode", + "index": -1 + }, + { + "type": "bool", + "name": "shaded", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 0 + }, + { + "type": "bool", + "name": "double_sided", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 1 + }, + { + "type": "bool", + "name": "no_depth_test", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 2 + }, + { + "type": "bool", + "name": "fixed_size", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 3 + }, + { + "type": "int", + "name": "alpha_cut", + "setter": "set_alpha_cut_mode", + "getter": "get_alpha_cut_mode", + "index": -1 + }, + { + "type": "float", + "name": "alpha_scissor_threshold", + "setter": "set_alpha_scissor_threshold", + "getter": "get_alpha_scissor_threshold", + "index": -1 + }, + { + "type": "int", + "name": "texture_filter", + "setter": "set_texture_filter", + "getter": "get_texture_filter", + "index": -1 + }, + { + "type": "int", + "name": "render_priority", + "setter": "set_render_priority", + "getter": "get_render_priority", + "index": -1 + }, + { + "type": "int", + "name": "outline_render_priority", + "setter": "set_outline_render_priority", + "getter": "get_outline_render_priority", + "index": -1 + }, + { + "type": "Color", + "name": "modulate", + "setter": "set_modulate", + "getter": "get_modulate", + "index": -1 + }, + { + "type": "Color", + "name": "outline_modulate", + "setter": "set_outline_modulate", + "getter": "get_outline_modulate", + "index": -1 + }, + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "Font", + "name": "font", + "setter": "set_font", + "getter": "get_font", + "index": -1 + }, + { + "type": "int", + "name": "font_size", + "setter": "set_font_size", + "getter": "get_font_size", + "index": -1 + }, + { + "type": "int", + "name": "outline_size", + "setter": "set_outline_size", + "getter": "get_outline_size", + "index": -1 + }, + { + "type": "int", + "name": "horizontal_alignment", + "setter": "set_horizontal_alignment", + "getter": "get_horizontal_alignment", + "index": -1 + }, + { + "type": "int", + "name": "vertical_alignment", + "setter": "set_vertical_alignment", + "getter": "get_vertical_alignment", + "index": -1 + }, + { + "type": "bool", + "name": "uppercase", + "setter": "set_uppercase", + "getter": "is_uppercase", + "index": -1 + }, + { + "type": "float", + "name": "line_spacing", + "setter": "set_line_spacing", + "getter": "get_line_spacing", + "index": -1 + }, + { + "type": "int", + "name": "autowrap_mode", + "setter": "set_autowrap_mode", + "getter": "get_autowrap_mode", + "index": -1 + }, + { + "type": "float", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + } + ] + }, + { + "name": "Light2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "ShadowFilter", + "values": [ + { + "name": "SHADOW_FILTER_NONE", + "value": 0 + }, + { + "name": "SHADOW_FILTER_PCF5", + "value": 1 + }, + { + "name": "SHADOW_FILTER_PCF13", + "value": 2 + } + ] + }, + { + "name": "BlendMode", + "values": [ + { + "name": "BLEND_MODE_ADD", + "value": 0 + }, + { + "name": "BLEND_MODE_SUB", + "value": 1 + }, + { + "name": "BLEND_MODE_MIX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_editor_only", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "editor_only", + "type": "bool" + } + ] + }, + { + "name": "is_editor_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_z_range_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "z", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_z_range_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_z_range_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "z", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_z_range_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_layer_range_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_layer_range_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_layer_range_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_layer_range_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_item_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "item_cull_mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_item_shadow_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "item_shadow_cull_mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_shadow_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_shadow_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_shadow_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shadow_smooth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "smooth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_shadow_smooth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_shadow_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "enum::Light2D.ShadowFilter" + } + ] + }, + { + "name": "get_shadow_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Light2D.ShadowFilter" + } + }, + { + "name": "set_shadow_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shadow_color", + "type": "Color" + } + ] + }, + { + "name": "get_shadow_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_blend_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Light2D.BlendMode" + } + ] + }, + { + "name": "get_blend_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Light2D.BlendMode" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "editor_only", + "setter": "set_editor_only", + "getter": "is_editor_only", + "index": -1 + }, + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "float", + "name": "energy", + "setter": "set_energy", + "getter": "get_energy", + "index": -1 + }, + { + "type": "int", + "name": "blend_mode", + "setter": "set_blend_mode", + "getter": "get_blend_mode", + "index": -1 + }, + { + "type": "int", + "name": "range_z_min", + "setter": "set_z_range_min", + "getter": "get_z_range_min", + "index": -1 + }, + { + "type": "int", + "name": "range_z_max", + "setter": "set_z_range_max", + "getter": "get_z_range_max", + "index": -1 + }, + { + "type": "int", + "name": "range_layer_min", + "setter": "set_layer_range_min", + "getter": "get_layer_range_min", + "index": -1 + }, + { + "type": "int", + "name": "range_layer_max", + "setter": "set_layer_range_max", + "getter": "get_layer_range_max", + "index": -1 + }, + { + "type": "int", + "name": "range_item_cull_mask", + "setter": "set_item_cull_mask", + "getter": "get_item_cull_mask", + "index": -1 + }, + { + "type": "bool", + "name": "shadow_enabled", + "setter": "set_shadow_enabled", + "getter": "is_shadow_enabled", + "index": -1 + }, + { + "type": "Color", + "name": "shadow_color", + "setter": "set_shadow_color", + "getter": "get_shadow_color", + "index": -1 + }, + { + "type": "int", + "name": "shadow_filter", + "setter": "set_shadow_filter", + "getter": "get_shadow_filter", + "index": -1 + }, + { + "type": "float", + "name": "shadow_filter_smooth", + "setter": "set_shadow_smooth", + "getter": "get_shadow_smooth", + "index": -1 + }, + { + "type": "int", + "name": "shadow_item_cull_mask", + "setter": "set_item_shadow_cull_mask", + "getter": "get_item_shadow_cull_mask", + "index": -1 + } + ] + }, + { + "name": "Light3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "VisualInstance3D", + "api_type": "core", + "enums": [ + { + "name": "Param", + "values": [ + { + "name": "PARAM_ENERGY", + "value": 0 + }, + { + "name": "PARAM_INDIRECT_ENERGY", + "value": 1 + }, + { + "name": "PARAM_SPECULAR", + "value": 2 + }, + { + "name": "PARAM_RANGE", + "value": 3 + }, + { + "name": "PARAM_SIZE", + "value": 4 + }, + { + "name": "PARAM_ATTENUATION", + "value": 5 + }, + { + "name": "PARAM_SPOT_ANGLE", + "value": 6 + }, + { + "name": "PARAM_SPOT_ATTENUATION", + "value": 7 + }, + { + "name": "PARAM_SHADOW_MAX_DISTANCE", + "value": 8 + }, + { + "name": "PARAM_SHADOW_SPLIT_1_OFFSET", + "value": 9 + }, + { + "name": "PARAM_SHADOW_SPLIT_2_OFFSET", + "value": 10 + }, + { + "name": "PARAM_SHADOW_SPLIT_3_OFFSET", + "value": 11 + }, + { + "name": "PARAM_SHADOW_FADE_START", + "value": 12 + }, + { + "name": "PARAM_SHADOW_NORMAL_BIAS", + "value": 13 + }, + { + "name": "PARAM_SHADOW_BIAS", + "value": 14 + }, + { + "name": "PARAM_SHADOW_PANCAKE_SIZE", + "value": 15 + }, + { + "name": "PARAM_SHADOW_BLUR", + "value": 16 + }, + { + "name": "PARAM_SHADOW_VOLUMETRIC_FOG_FADE", + "value": 17 + }, + { + "name": "PARAM_TRANSMITTANCE_BIAS", + "value": 18 + }, + { + "name": "PARAM_MAX", + "value": 19 + } + ] + }, + { + "name": "BakeMode", + "values": [ + { + "name": "BAKE_DISABLED", + "value": 0 + }, + { + "name": "BAKE_STATIC", + "value": 1 + }, + { + "name": "BAKE_DYNAMIC", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_editor_only", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "editor_only", + "type": "bool" + } + ] + }, + { + "name": "is_editor_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::Light3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::Light3D.Param" + } + ] + }, + { + "name": "set_shadow", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "has_shadow", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_negative", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_negative", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cull_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_enable_distance_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_distance_fade_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_distance_fade_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_distance_fade_shadow", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_shadow", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_distance_fade_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance_fade_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_shadow_reverse_cull_face", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_shadow_reverse_cull_face", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_bake_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bake_mode", + "type": "enum::Light3D.BakeMode" + } + ] + }, + { + "name": "get_bake_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Light3D.BakeMode" + } + }, + { + "name": "set_projector", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "projector", + "type": "Texture2D" + } + ] + }, + { + "name": "get_projector", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "light_color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "float", + "name": "light_energy", + "setter": "set_param", + "getter": "get_param", + "index": 0 + }, + { + "type": "float", + "name": "light_indirect_energy", + "setter": "set_param", + "getter": "get_param", + "index": 1 + }, + { + "type": "Texture2D", + "name": "light_projector", + "setter": "set_projector", + "getter": "get_projector", + "index": -1 + }, + { + "type": "float", + "name": "light_size", + "setter": "set_param", + "getter": "get_param", + "index": 4 + }, + { + "type": "float", + "name": "light_angular_distance", + "setter": "set_param", + "getter": "get_param", + "index": 4 + }, + { + "type": "bool", + "name": "light_negative", + "setter": "set_negative", + "getter": "is_negative", + "index": -1 + }, + { + "type": "float", + "name": "light_specular", + "setter": "set_param", + "getter": "get_param", + "index": 2 + }, + { + "type": "int", + "name": "light_bake_mode", + "setter": "set_bake_mode", + "getter": "get_bake_mode", + "index": -1 + }, + { + "type": "int", + "name": "light_cull_mask", + "setter": "set_cull_mask", + "getter": "get_cull_mask", + "index": -1 + }, + { + "type": "bool", + "name": "shadow_enabled", + "setter": "set_shadow", + "getter": "has_shadow", + "index": -1 + }, + { + "type": "float", + "name": "shadow_bias", + "setter": "set_param", + "getter": "get_param", + "index": 14 + }, + { + "type": "float", + "name": "shadow_normal_bias", + "setter": "set_param", + "getter": "get_param", + "index": 13 + }, + { + "type": "bool", + "name": "shadow_reverse_cull_face", + "setter": "set_shadow_reverse_cull_face", + "getter": "get_shadow_reverse_cull_face", + "index": -1 + }, + { + "type": "float", + "name": "shadow_transmittance_bias", + "setter": "set_param", + "getter": "get_param", + "index": 18 + }, + { + "type": "float", + "name": "shadow_fog_fade", + "setter": "set_param", + "getter": "get_param", + "index": 17 + }, + { + "type": "float", + "name": "shadow_blur", + "setter": "set_param", + "getter": "get_param", + "index": 16 + }, + { + "type": "bool", + "name": "distance_fade_enabled", + "setter": "set_enable_distance_fade", + "getter": "is_distance_fade_enabled", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_begin", + "setter": "set_distance_fade_begin", + "getter": "get_distance_fade_begin", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_shadow", + "setter": "set_distance_fade_shadow", + "getter": "get_distance_fade_shadow", + "index": -1 + }, + { + "type": "float", + "name": "distance_fade_length", + "setter": "set_distance_fade_length", + "getter": "get_distance_fade_length", + "index": -1 + }, + { + "type": "bool", + "name": "editor_only", + "setter": "set_editor_only", + "getter": "is_editor_only", + "index": -1 + } + ] + }, + { + "name": "LightOccluder2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_occluder_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "OccluderPolygon2D" + } + ] + }, + { + "name": "get_occluder_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "OccluderPolygon2D" + } + }, + { + "name": "set_occluder_light_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_occluder_light_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_as_sdf_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_set_as_sdf_collision", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "OccluderPolygon2D", + "name": "occluder", + "setter": "set_occluder_polygon", + "getter": "get_occluder_polygon", + "index": -1 + }, + { + "type": "bool", + "name": "sdf_collision", + "setter": "set_as_sdf_collision", + "getter": "is_set_as_sdf_collision", + "index": -1 + }, + { + "type": "int", + "name": "occluder_light_mask", + "setter": "set_occluder_light_mask", + "getter": "get_occluder_light_mask", + "index": -1 + } + ] + }, + { + "name": "LightmapGI", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "enums": [ + { + "name": "BakeQuality", + "values": [ + { + "name": "BAKE_QUALITY_LOW", + "value": 0 + }, + { + "name": "BAKE_QUALITY_MEDIUM", + "value": 1 + }, + { + "name": "BAKE_QUALITY_HIGH", + "value": 2 + }, + { + "name": "BAKE_QUALITY_ULTRA", + "value": 3 + } + ] + }, + { + "name": "GenerateProbes", + "values": [ + { + "name": "GENERATE_PROBES_DISABLED", + "value": 0 + }, + { + "name": "GENERATE_PROBES_SUBDIV_4", + "value": 1 + }, + { + "name": "GENERATE_PROBES_SUBDIV_8", + "value": 2 + }, + { + "name": "GENERATE_PROBES_SUBDIV_16", + "value": 3 + }, + { + "name": "GENERATE_PROBES_SUBDIV_32", + "value": 4 + } + ] + }, + { + "name": "BakeError", + "values": [ + { + "name": "BAKE_ERROR_OK", + "value": 0 + }, + { + "name": "BAKE_ERROR_NO_LIGHTMAPPER", + "value": 1 + }, + { + "name": "BAKE_ERROR_NO_SAVE_PATH", + "value": 2 + }, + { + "name": "BAKE_ERROR_NO_MESHES", + "value": 3 + }, + { + "name": "BAKE_ERROR_MESHES_INVALID", + "value": 4 + }, + { + "name": "BAKE_ERROR_CANT_CREATE_IMAGE", + "value": 5 + }, + { + "name": "BAKE_ERROR_USER_ABORTED", + "value": 6 + } + ] + }, + { + "name": "EnvironmentMode", + "values": [ + { + "name": "ENVIRONMENT_MODE_DISABLED", + "value": 0 + }, + { + "name": "ENVIRONMENT_MODE_SCENE", + "value": 1 + }, + { + "name": "ENVIRONMENT_MODE_CUSTOM_SKY", + "value": 2 + }, + { + "name": "ENVIRONMENT_MODE_CUSTOM_COLOR", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_light_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "LightmapGIData" + } + ] + }, + { + "name": "get_light_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "LightmapGIData" + } + }, + { + "name": "set_bake_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bake_quality", + "type": "enum::LightmapGI.BakeQuality" + } + ] + }, + { + "name": "get_bake_quality", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::LightmapGI.BakeQuality" + } + }, + { + "name": "set_bounces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bounces", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bounces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_generate_probes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subdivision", + "type": "enum::LightmapGI.GenerateProbes" + } + ] + }, + { + "name": "get_generate_probes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::LightmapGI.GenerateProbes" + } + }, + { + "name": "set_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_environment_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::LightmapGI.EnvironmentMode" + } + ] + }, + { + "name": "get_environment_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::LightmapGI.EnvironmentMode" + } + }, + { + "name": "set_environment_custom_sky", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sky", + "type": "Sky" + } + ] + }, + { + "name": "get_environment_custom_sky", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Sky" + } + }, + { + "name": "set_environment_custom_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_environment_custom_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_environment_custom_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_environment_custom_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_texture_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_texture_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_texture_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_denoiser", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_denoiser", + "type": "bool" + } + ] + }, + { + "name": "is_using_denoiser", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_interior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_interior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_directional", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "directional", + "type": "bool" + } + ] + }, + { + "name": "is_directional", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "quality", + "setter": "set_bake_quality", + "getter": "get_bake_quality", + "index": -1 + }, + { + "type": "int", + "name": "bounces", + "setter": "set_bounces", + "getter": "get_bounces", + "index": -1 + }, + { + "type": "bool", + "name": "directional", + "setter": "set_directional", + "getter": "is_directional", + "index": -1 + }, + { + "type": "bool", + "name": "interior", + "setter": "set_interior", + "getter": "is_interior", + "index": -1 + }, + { + "type": "bool", + "name": "use_denoiser", + "setter": "set_use_denoiser", + "getter": "is_using_denoiser", + "index": -1 + }, + { + "type": "float", + "name": "bias", + "setter": "set_bias", + "getter": "get_bias", + "index": -1 + }, + { + "type": "int", + "name": "max_texture_size", + "setter": "set_max_texture_size", + "getter": "get_max_texture_size", + "index": -1 + }, + { + "type": "int", + "name": "environment_mode", + "setter": "set_environment_mode", + "getter": "get_environment_mode", + "index": -1 + }, + { + "type": "Sky", + "name": "environment_custom_sky", + "setter": "set_environment_custom_sky", + "getter": "get_environment_custom_sky", + "index": -1 + }, + { + "type": "Color", + "name": "environment_custom_color", + "setter": "set_environment_custom_color", + "getter": "get_environment_custom_color", + "index": -1 + }, + { + "type": "float", + "name": "environment_custom_energy", + "setter": "set_environment_custom_energy", + "getter": "get_environment_custom_energy", + "index": -1 + }, + { + "type": "int", + "name": "generate_probes_subdiv", + "setter": "set_generate_probes", + "getter": "get_generate_probes", + "index": -1 + }, + { + "type": "LightmapGIData", + "name": "light_data", + "setter": "set_light_data", + "getter": "get_light_data", + "index": -1 + } + ] + }, + { + "name": "LightmapGIData", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_light_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "light_texture", + "type": "TextureLayered" + } + ] + }, + { + "name": "get_light_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TextureLayered" + } + }, + { + "name": "set_uses_spherical_harmonics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uses_spherical_harmonics", + "type": "bool" + } + ] + }, + { + "name": "is_using_spherical_harmonics", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "add_user", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "uv_scale", + "type": "Rect2" + }, + { + "name": "slice_index", + "type": "int", + "meta": "int32" + }, + { + "name": "sub_instance", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_user_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_user_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "user_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_users", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "TextureLayered", + "name": "light_texture", + "setter": "set_light_texture", + "getter": "get_light_texture", + "index": -1 + }, + { + "type": "bool", + "name": "uses_spherical_harmonics", + "setter": "set_uses_spherical_harmonics", + "getter": "is_using_spherical_harmonics", + "index": -1 + }, + { + "type": "Array", + "name": "user_data", + "setter": "_set_user_data", + "getter": "_get_user_data", + "index": -1 + }, + { + "type": "Dictionary", + "name": "probe_data", + "setter": "_set_probe_data", + "getter": "_get_probe_data", + "index": -1 + } + ] + }, + { + "name": "LightmapProbe", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core" + }, + { + "name": "Lightmapper", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core" + }, + { + "name": "LightmapperRD", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Lightmapper", + "api_type": "core" + }, + { + "name": "Line2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "LineJointMode", + "values": [ + { + "name": "LINE_JOINT_SHARP", + "value": 0 + }, + { + "name": "LINE_JOINT_BEVEL", + "value": 1 + }, + { + "name": "LINE_JOINT_ROUND", + "value": 2 + } + ] + }, + { + "name": "LineCapMode", + "values": [ + { + "name": "LINE_CAP_NONE", + "value": 0 + }, + { + "name": "LINE_CAP_BOX", + "value": 1 + }, + { + "name": "LINE_CAP_ROUND", + "value": 2 + } + ] + }, + { + "name": "LineTextureMode", + "values": [ + { + "name": "LINE_TEXTURE_NONE", + "value": 0 + }, + { + "name": "LINE_TEXTURE_TILE", + "value": 1 + }, + { + "name": "LINE_TEXTURE_STRETCH", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_point_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "i", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_point_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "i", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "i", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_default_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_default_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_gradient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Gradient" + } + ] + }, + { + "name": "get_gradient", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_texture_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Line2D.LineTextureMode" + } + ] + }, + { + "name": "get_texture_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Line2D.LineTextureMode" + } + }, + { + "name": "set_joint_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Line2D.LineJointMode" + } + ] + }, + { + "name": "get_joint_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Line2D.LineJointMode" + } + }, + { + "name": "set_begin_cap_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Line2D.LineCapMode" + } + ] + }, + { + "name": "get_begin_cap_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Line2D.LineCapMode" + } + }, + { + "name": "set_end_cap_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Line2D.LineCapMode" + } + ] + }, + { + "name": "get_end_cap_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Line2D.LineCapMode" + } + }, + { + "name": "set_sharp_limit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "limit", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sharp_limit", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_round_precision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "precision", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_round_precision", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_antialiased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "antialiased", + "type": "bool" + } + ] + }, + { + "name": "get_antialiased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "PackedVector2Array", + "name": "points", + "setter": "set_points", + "getter": "get_points", + "index": -1 + }, + { + "type": "float", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "Curve", + "name": "width_curve", + "setter": "set_curve", + "getter": "get_curve", + "index": -1 + }, + { + "type": "Color", + "name": "default_color", + "setter": "set_default_color", + "getter": "get_default_color", + "index": -1 + }, + { + "type": "Gradient", + "name": "gradient", + "setter": "set_gradient", + "getter": "get_gradient", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "int", + "name": "texture_mode", + "setter": "set_texture_mode", + "getter": "get_texture_mode", + "index": -1 + }, + { + "type": "int", + "name": "joint_mode", + "setter": "set_joint_mode", + "getter": "get_joint_mode", + "index": -1 + }, + { + "type": "int", + "name": "begin_cap_mode", + "setter": "set_begin_cap_mode", + "getter": "get_begin_cap_mode", + "index": -1 + }, + { + "type": "int", + "name": "end_cap_mode", + "setter": "set_end_cap_mode", + "getter": "get_end_cap_mode", + "index": -1 + }, + { + "type": "float", + "name": "sharp_limit", + "setter": "set_sharp_limit", + "getter": "get_sharp_limit", + "index": -1 + }, + { + "type": "int", + "name": "round_precision", + "setter": "set_round_precision", + "getter": "get_round_precision", + "index": -1 + }, + { + "type": "bool", + "name": "antialiased", + "setter": "set_antialiased", + "getter": "get_antialiased", + "index": -1 + } + ] + }, + { + "name": "LineEdit", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "MenuItems", + "values": [ + { + "name": "MENU_CUT", + "value": 0 + }, + { + "name": "MENU_COPY", + "value": 1 + }, + { + "name": "MENU_PASTE", + "value": 2 + }, + { + "name": "MENU_CLEAR", + "value": 3 + }, + { + "name": "MENU_SELECT_ALL", + "value": 4 + }, + { + "name": "MENU_UNDO", + "value": 5 + }, + { + "name": "MENU_REDO", + "value": 6 + }, + { + "name": "MENU_DIR_INHERITED", + "value": 7 + }, + { + "name": "MENU_DIR_AUTO", + "value": 8 + }, + { + "name": "MENU_DIR_LTR", + "value": 9 + }, + { + "name": "MENU_DIR_RTL", + "value": 10 + }, + { + "name": "MENU_DISPLAY_UCC", + "value": 11 + }, + { + "name": "MENU_INSERT_LRM", + "value": 12 + }, + { + "name": "MENU_INSERT_RLM", + "value": 13 + }, + { + "name": "MENU_INSERT_LRE", + "value": 14 + }, + { + "name": "MENU_INSERT_RLE", + "value": 15 + }, + { + "name": "MENU_INSERT_LRO", + "value": 16 + }, + { + "name": "MENU_INSERT_RLO", + "value": 17 + }, + { + "name": "MENU_INSERT_PDF", + "value": 18 + }, + { + "name": "MENU_INSERT_ALM", + "value": 19 + }, + { + "name": "MENU_INSERT_LRI", + "value": 20 + }, + { + "name": "MENU_INSERT_RLI", + "value": 21 + }, + { + "name": "MENU_INSERT_FSI", + "value": 22 + }, + { + "name": "MENU_INSERT_PDI", + "value": 23 + }, + { + "name": "MENU_INSERT_ZWJ", + "value": 24 + }, + { + "name": "MENU_INSERT_ZWNJ", + "value": 25 + }, + { + "name": "MENU_INSERT_WJ", + "value": 26 + }, + { + "name": "MENU_INSERT_SHY", + "value": 27 + }, + { + "name": "MENU_MAX", + "value": 28 + } + ] + } + ], + "methods": [ + { + "name": "set_horizontal_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_horizontal_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2601066974, + "arguments": [ + { + "name": "from", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "to", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "select_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "deselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "has_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_selection_from_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_to_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_draw_control_chars", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_control_chars", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_placeholder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_placeholder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_caret_column", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_caret_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_scroll_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_expand_to_text_length_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_expand_to_text_length_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_caret_blink_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_caret_blink_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_caret_mid_grapheme_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_caret_mid_grapheme_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_caret_force_displayed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_caret_force_displayed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_caret_blink_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "blink_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_caret_blink_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "chars", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "insert_text_at_caret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "delete_char_at_caret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "delete_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from_column", + "type": "int", + "meta": "int32" + }, + { + "name": "to_column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_editable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_secret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_secret", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_secret_character", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "character", + "type": "String" + } + ] + }, + { + "name": "get_secret_character", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "menu_option", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "option", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_menu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PopupMenu" + } + }, + { + "name": "is_menu_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_context_menu_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_context_menu_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_virtual_keyboard_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_virtual_keyboard_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_clear_button_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_clear_button_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shortcut_keys_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_shortcut_keys_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_middle_mouse_paste_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_middle_mouse_paste_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_selecting_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_selecting_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_deselect_on_focus_loss_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_deselect_on_focus_loss_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_right_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_right_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_flat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_flat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "text_changed", + "arguments": [ + { + "name": "new_text", + "type": "String" + } + ] + }, + { + "name": "text_change_rejected", + "arguments": [ + { + "name": "rejected_substring", + "type": "String" + } + ] + }, + { + "name": "text_submitted", + "arguments": [ + { + "name": "new_text", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "String", + "name": "placeholder_text", + "setter": "set_placeholder", + "getter": "get_placeholder", + "index": -1 + }, + { + "type": "int", + "name": "alignment", + "setter": "set_horizontal_alignment", + "getter": "get_horizontal_alignment", + "index": -1 + }, + { + "type": "int", + "name": "max_length", + "setter": "set_max_length", + "getter": "get_max_length", + "index": -1 + }, + { + "type": "bool", + "name": "editable", + "setter": "set_editable", + "getter": "is_editable", + "index": -1 + }, + { + "type": "bool", + "name": "secret", + "setter": "set_secret", + "getter": "is_secret", + "index": -1 + }, + { + "type": "String", + "name": "secret_character", + "setter": "set_secret_character", + "getter": "get_secret_character", + "index": -1 + }, + { + "type": "bool", + "name": "expand_to_text_length", + "setter": "set_expand_to_text_length_enabled", + "getter": "is_expand_to_text_length_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "context_menu_enabled", + "setter": "set_context_menu_enabled", + "getter": "is_context_menu_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "virtual_keyboard_enabled", + "setter": "set_virtual_keyboard_enabled", + "getter": "is_virtual_keyboard_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "clear_button_enabled", + "setter": "set_clear_button_enabled", + "getter": "is_clear_button_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "shortcut_keys_enabled", + "setter": "set_shortcut_keys_enabled", + "getter": "is_shortcut_keys_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "middle_mouse_paste_enabled", + "setter": "set_middle_mouse_paste_enabled", + "getter": "is_middle_mouse_paste_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "selecting_enabled", + "setter": "set_selecting_enabled", + "getter": "is_selecting_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "deselect_on_focus_loss_enabled", + "setter": "set_deselect_on_focus_loss_enabled", + "getter": "is_deselect_on_focus_loss_enabled", + "index": -1 + }, + { + "type": "Texture", + "name": "right_icon", + "setter": "set_right_icon", + "getter": "get_right_icon", + "index": -1 + }, + { + "type": "bool", + "name": "flat", + "setter": "set_flat", + "getter": "is_flat", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "bool", + "name": "draw_control_chars", + "setter": "set_draw_control_chars", + "getter": "get_draw_control_chars", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + }, + { + "type": "bool", + "name": "caret_blink", + "setter": "set_caret_blink_enabled", + "getter": "is_caret_blink_enabled", + "index": -1 + }, + { + "type": "float", + "name": "caret_blink_speed", + "setter": "set_caret_blink_speed", + "getter": "get_caret_blink_speed", + "index": -1 + }, + { + "type": "int", + "name": "caret_column", + "setter": "set_caret_column", + "getter": "get_caret_column", + "index": -1 + }, + { + "type": "bool", + "name": "caret_force_displayed", + "setter": "set_caret_force_displayed", + "getter": "is_caret_force_displayed", + "index": -1 + }, + { + "type": "bool", + "name": "caret_mid_grapheme", + "setter": "set_caret_mid_grapheme_enabled", + "getter": "is_caret_mid_grapheme_enabled", + "index": -1 + } + ] + }, + { + "name": "LinkButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "BaseButton", + "api_type": "core", + "enums": [ + { + "name": "UnderlineMode", + "values": [ + { + "name": "UNDERLINE_MODE_ALWAYS", + "value": 0 + }, + { + "name": "UNDERLINE_MODE_ON_HOVER", + "value": 1 + }, + { + "name": "UNDERLINE_MODE_NEVER", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_underline_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "underline_mode", + "type": "enum::LinkButton.UnderlineMode" + } + ] + }, + { + "name": "get_underline_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::LinkButton.UnderlineMode" + } + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "int", + "name": "underline", + "setter": "set_underline_mode", + "getter": "get_underline_mode", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + } + ] + }, + { + "name": "MainLoop", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_OS_MEMORY_WARNING", + "value": 2009 + }, + { + "name": "NOTIFICATION_TRANSLATION_CHANGED", + "value": 2010 + }, + { + "name": "NOTIFICATION_WM_ABOUT", + "value": 2011 + }, + { + "name": "NOTIFICATION_CRASH", + "value": 2012 + }, + { + "name": "NOTIFICATION_OS_IME_UPDATE", + "value": 2013 + }, + { + "name": "NOTIFICATION_APPLICATION_RESUMED", + "value": 2014 + }, + { + "name": "NOTIFICATION_APPLICATION_PAUSED", + "value": 2015 + }, + { + "name": "NOTIFICATION_APPLICATION_FOCUS_IN", + "value": 2016 + }, + { + "name": "NOTIFICATION_APPLICATION_FOCUS_OUT", + "value": 2017 + }, + { + "name": "NOTIFICATION_TEXT_SERVER_CHANGED", + "value": 2018 + } + ], + "methods": [ + { + "name": "_initialize", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_physics_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "_finalize", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + } + ], + "signals": [ + { + "name": "on_request_permissions_result", + "arguments": [ + { + "name": "permission", + "type": "String" + }, + { + "name": "granted", + "type": "bool" + } + ] + } + ] + }, + { + "name": "MarginContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core" + }, + { + "name": "Marshalls", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "variant_to_base64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "variant", + "type": "Variant" + }, + { + "name": "full_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "base64_to_variant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "base64_str", + "type": "String" + }, + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "raw_to_base64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "array", + "type": "PackedByteArray" + } + ] + }, + { + "name": "base64_to_raw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "base64_str", + "type": "String" + } + ] + }, + { + "name": "utf8_to_base64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "utf8_str", + "type": "String" + } + ] + }, + { + "name": "base64_to_utf8", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "base64_str", + "type": "String" + } + ] + } + ] + }, + { + "name": "Material", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "constants": [ + { + "name": "RENDER_PRIORITY_MAX", + "value": 127 + }, + { + "name": "RENDER_PRIORITY_MIN", + "value": -128 + } + ], + "methods": [ + { + "name": "_get_shader_rid", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_get_shader_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Shader.Mode" + } + }, + { + "name": "_can_do_next_pass", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_can_use_render_priority", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_next_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "next_pass", + "type": "Material" + } + ] + }, + { + "name": "get_next_pass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "set_render_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_render_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "inspect_native_shader_code", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "int", + "name": "render_priority", + "setter": "set_render_priority", + "getter": "get_render_priority", + "index": -1 + }, + { + "type": "Material", + "name": "next_pass", + "setter": "set_next_pass", + "getter": "get_next_pass", + "index": -1 + } + ] + }, + { + "name": "MenuButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Button", + "api_type": "core", + "methods": [ + { + "name": "get_popup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PopupMenu" + } + }, + { + "name": "set_switch_on_hover", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_switch_on_hover", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_disable_shortcuts", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "set_item_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "signals": [ + { + "name": "about_to_popup" + } + ], + "properties": [ + { + "type": "bool", + "name": "switch_on_hover", + "setter": "set_switch_on_hover", + "getter": "is_switch_on_hover", + "index": -1 + }, + { + "type": "Items,popup/item_", + "name": "item_count", + "setter": "set_item_count", + "getter": "get_item_count", + "index": -1 + } + ] + }, + { + "name": "Mesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "PrimitiveType", + "values": [ + { + "name": "PRIMITIVE_POINTS", + "value": 0 + }, + { + "name": "PRIMITIVE_LINES", + "value": 1 + }, + { + "name": "PRIMITIVE_LINE_STRIP", + "value": 2 + }, + { + "name": "PRIMITIVE_TRIANGLES", + "value": 3 + }, + { + "name": "PRIMITIVE_TRIANGLE_STRIP", + "value": 4 + } + ] + }, + { + "name": "ArrayType", + "values": [ + { + "name": "ARRAY_VERTEX", + "value": 0 + }, + { + "name": "ARRAY_NORMAL", + "value": 1 + }, + { + "name": "ARRAY_TANGENT", + "value": 2 + }, + { + "name": "ARRAY_COLOR", + "value": 3 + }, + { + "name": "ARRAY_TEX_UV", + "value": 4 + }, + { + "name": "ARRAY_TEX_UV2", + "value": 5 + }, + { + "name": "ARRAY_CUSTOM0", + "value": 6 + }, + { + "name": "ARRAY_CUSTOM1", + "value": 7 + }, + { + "name": "ARRAY_CUSTOM2", + "value": 8 + }, + { + "name": "ARRAY_CUSTOM3", + "value": 9 + }, + { + "name": "ARRAY_BONES", + "value": 10 + }, + { + "name": "ARRAY_WEIGHTS", + "value": 11 + }, + { + "name": "ARRAY_INDEX", + "value": 12 + }, + { + "name": "ARRAY_MAX", + "value": 13 + } + ] + }, + { + "name": "ArrayCustomFormat", + "values": [ + { + "name": "ARRAY_CUSTOM_RGBA8_UNORM", + "value": 0 + }, + { + "name": "ARRAY_CUSTOM_RGBA8_SNORM", + "value": 1 + }, + { + "name": "ARRAY_CUSTOM_RG_HALF", + "value": 2 + }, + { + "name": "ARRAY_CUSTOM_RGBA_HALF", + "value": 3 + }, + { + "name": "ARRAY_CUSTOM_R_FLOAT", + "value": 4 + }, + { + "name": "ARRAY_CUSTOM_RG_FLOAT", + "value": 5 + }, + { + "name": "ARRAY_CUSTOM_RGB_FLOAT", + "value": 6 + }, + { + "name": "ARRAY_CUSTOM_RGBA_FLOAT", + "value": 7 + }, + { + "name": "ARRAY_CUSTOM_MAX", + "value": 8 + } + ] + }, + { + "name": "ArrayFormat", + "values": [ + { + "name": "ARRAY_FORMAT_VERTEX", + "value": 1 + }, + { + "name": "ARRAY_FORMAT_NORMAL", + "value": 2 + }, + { + "name": "ARRAY_FORMAT_TANGENT", + "value": 4 + }, + { + "name": "ARRAY_FORMAT_COLOR", + "value": 8 + }, + { + "name": "ARRAY_FORMAT_TEX_UV", + "value": 16 + }, + { + "name": "ARRAY_FORMAT_TEX_UV2", + "value": 32 + }, + { + "name": "ARRAY_FORMAT_CUSTOM0", + "value": 64 + }, + { + "name": "ARRAY_FORMAT_CUSTOM1", + "value": 128 + }, + { + "name": "ARRAY_FORMAT_CUSTOM2", + "value": 256 + }, + { + "name": "ARRAY_FORMAT_CUSTOM3", + "value": 512 + }, + { + "name": "ARRAY_FORMAT_BONES", + "value": 1024 + }, + { + "name": "ARRAY_FORMAT_WEIGHTS", + "value": 2048 + }, + { + "name": "ARRAY_FORMAT_INDEX", + "value": 4096 + }, + { + "name": "ARRAY_FORMAT_BLEND_SHAPE_MASK", + "value": 7 + }, + { + "name": "ARRAY_FORMAT_CUSTOM_BASE", + "value": 13 + }, + { + "name": "ARRAY_FORMAT_CUSTOM_BITS", + "value": 3 + }, + { + "name": "ARRAY_FORMAT_CUSTOM0_SHIFT", + "value": 13 + }, + { + "name": "ARRAY_FORMAT_CUSTOM1_SHIFT", + "value": 16 + }, + { + "name": "ARRAY_FORMAT_CUSTOM2_SHIFT", + "value": 19 + }, + { + "name": "ARRAY_FORMAT_CUSTOM3_SHIFT", + "value": 22 + }, + { + "name": "ARRAY_FORMAT_CUSTOM_MASK", + "value": 7 + }, + { + "name": "ARRAY_COMPRESS_FLAGS_BASE", + "value": 25 + }, + { + "name": "ARRAY_FLAG_USE_2D_VERTICES", + "value": 33554432 + }, + { + "name": "ARRAY_FLAG_USE_DYNAMIC_UPDATE", + "value": 67108864 + }, + { + "name": "ARRAY_FLAG_USE_8_BONE_WEIGHTS", + "value": 134217728 + } + ] + }, + { + "name": "BlendShapeMode", + "values": [ + { + "name": "BLEND_SHAPE_MODE_NORMALIZED", + "value": 0 + }, + { + "name": "BLEND_SHAPE_MODE_RELATIVE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "_get_surface_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_surface_get_array_len", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_get_array_index_len", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_get_arrays", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_get_blend_shape_arrays", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_get_lods", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_get_format", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_get_primitive_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_surface_set_material", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "_surface_get_material", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Material" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_get_blend_shape_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_blend_shape_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "_set_blend_shape_name", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "index", + "type": "int" + }, + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "_get_aabb", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "AABB" + } + }, + { + "name": "set_lightmap_size_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_lightmap_size_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "get_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "get_surface_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "surface_get_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "surface_get_blend_shape_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "surface_set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "surface_get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Material" + }, + "arguments": [ + { + "name": "surf_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "create_trimesh_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shape3D" + } + }, + { + "name": "create_convex_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1435035884, + "return_value": { + "type": "Shape3D" + }, + "arguments": [ + { + "name": "clean", + "type": "bool", + "default_value": "true" + }, + { + "name": "simplify", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Mesh" + }, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "generate_triangle_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TriangleMesh" + } + } + ], + "properties": [ + { + "type": "Vector2i", + "name": "lightmap_size_hint", + "setter": "set_lightmap_size_hint", + "getter": "get_lightmap_size_hint", + "index": -1 + } + ] + }, + { + "name": "MeshDataTool", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create_from_surface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "mesh", + "type": "ArrayMesh" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "commit_to_surface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "mesh", + "type": "ArrayMesh" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_vertex_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_edge_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_face_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_vertex", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "vertex", + "type": "Vector3" + } + ] + }, + { + "name": "get_vertex", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_normal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "normal", + "type": "Vector3" + } + ] + }, + { + "name": "get_vertex_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_tangent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tangent", + "type": "Plane" + } + ] + }, + { + "name": "get_vertex_tangent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Plane" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_uv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "uv", + "type": "Vector2" + } + ] + }, + { + "name": "get_vertex_uv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_uv2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "uv2", + "type": "Vector2" + } + ] + }, + { + "name": "get_vertex_uv2", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_vertex_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bones", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_vertex_bones", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_weights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "weights", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "get_vertex_weights", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedFloat32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_vertex_meta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "get_vertex_meta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_vertex_edges", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_vertex_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_edge_vertex", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "vertex", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_edge_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_edge_meta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "get_edge_meta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_face_vertex", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "vertex", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_face_edge", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "edge", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_face_meta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "get_face_meta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_face_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + } + ] + }, + { + "name": "MeshInstance2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_normal_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal_map", + "type": "Texture2D" + } + ] + }, + { + "name": "get_normal_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "signals": [ + { + "name": "texture_changed" + } + ], + "properties": [ + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "normal_map", + "setter": "set_normal_map", + "getter": "get_normal_map", + "index": -1 + } + ] + }, + { + "name": "MeshInstance3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GeometryInstance3D", + "api_type": "core", + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "set_skeleton_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeleton_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_skeleton_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skin", + "type": "Skin" + } + ] + }, + { + "name": "get_skin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skin" + } + }, + { + "name": "get_surface_override_material_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_surface_override_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_surface_override_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Material" + }, + "arguments": [ + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_active_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Material" + }, + "arguments": [ + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "create_trimesh_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create_convex_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 143567882, + "arguments": [ + { + "name": "clean", + "type": "bool", + "default_value": "true" + }, + { + "name": "simplify", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_multiple_convex_collisions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_blend_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "find_blend_shape_by_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_blend_shape_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "blend_shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_blend_shape_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "blend_shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "create_debug_tangents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "Skin", + "name": "skin", + "setter": "set_skin", + "getter": "get_skin", + "index": -1 + }, + { + "type": "NodePath", + "name": "skeleton", + "setter": "set_skeleton_path", + "getter": "get_skeleton_path", + "index": -1 + } + ] + }, + { + "name": "MeshLibrary", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "create_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_item_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "set_item_mesh_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "mesh_transform", + "type": "Transform3D" + } + ] + }, + { + "name": "set_item_navmesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "navmesh", + "type": "NavigationMesh" + } + ] + }, + { + "name": "set_item_navmesh_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "navmesh", + "type": "Transform3D" + } + ] + }, + { + "name": "set_item_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "shapes", + "type": "Array" + } + ] + }, + { + "name": "set_item_preview", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_item_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Mesh" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_mesh_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_navmesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NavigationMesh" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_navmesh_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_shapes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_preview", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "find_item_by_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_item_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "get_last_unused_item_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "MeshTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "set_image_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_image_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_base_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_base_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "properties": [ + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "Texture2D", + "name": "base_texture", + "setter": "set_base_texture", + "getter": "get_base_texture", + "index": -1 + }, + { + "type": "Vector2", + "name": "image_size", + "setter": "set_image_size", + "getter": "get_image_size", + "index": -1 + } + ] + }, + { + "name": "MethodTweener", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Tweener", + "api_type": "core", + "methods": [ + { + "name": "set_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "MethodTweener" + }, + "arguments": [ + { + "name": "delay", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_trans", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "MethodTweener" + }, + "arguments": [ + { + "name": "trans", + "type": "enum::Tween.TransitionType" + } + ] + }, + { + "name": "set_ease", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "MethodTweener" + }, + "arguments": [ + { + "name": "ease", + "type": "enum::Tween.EaseType" + } + ] + } + ] + }, + { + "name": "MissingNode", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "set_original_class", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_original_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_recording_properties", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_recording_properties", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "original_class", + "setter": "set_original_class", + "getter": "get_original_class", + "index": -1 + }, + { + "type": "bool", + "name": "recording_properties", + "setter": "set_recording_properties", + "getter": "is_recording_properties", + "index": -1 + } + ] + }, + { + "name": "MissingResource", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_original_class", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_original_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_recording_properties", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_recording_properties", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "original_class", + "setter": "set_original_class", + "getter": "get_original_class", + "index": -1 + }, + { + "type": "bool", + "name": "recording_properties", + "setter": "set_recording_properties", + "getter": "is_recording_properties", + "index": -1 + } + ] + }, + { + "name": "MobileVRInterface", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "XRInterface", + "api_type": "core", + "methods": [ + { + "name": "set_eye_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "eye_height", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_eye_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_iod", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "iod", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_iod", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_display_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "display_width", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_display_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_display_to_lens", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "display_to_lens", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_display_to_lens", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_oversample", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "oversample", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_oversample", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_k1", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "k", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_k1", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_k2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "k", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_k2", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + } + ], + "properties": [ + { + "type": "float", + "name": "eye_height", + "setter": "set_eye_height", + "getter": "get_eye_height", + "index": -1 + }, + { + "type": "float", + "name": "iod", + "setter": "set_iod", + "getter": "get_iod", + "index": -1 + }, + { + "type": "float", + "name": "display_width", + "setter": "set_display_width", + "getter": "get_display_width", + "index": -1 + }, + { + "type": "float", + "name": "display_to_lens", + "setter": "set_display_to_lens", + "getter": "get_display_to_lens", + "index": -1 + }, + { + "type": "float", + "name": "oversample", + "setter": "set_oversample", + "getter": "get_oversample", + "index": -1 + }, + { + "type": "float", + "name": "k1", + "setter": "set_k1", + "getter": "get_k1", + "index": -1 + }, + { + "type": "float", + "name": "k2", + "setter": "set_k2", + "getter": "get_k2", + "index": -1 + } + ] + }, + { + "name": "MultiMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "TransformFormat", + "values": [ + { + "name": "TRANSFORM_2D", + "value": 0 + }, + { + "name": "TRANSFORM_3D", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "set_use_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_custom_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_custom_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_transform_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "format", + "type": "enum::MultiMesh.TransformFormat" + } + ] + }, + { + "name": "get_transform_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MultiMesh.TransformFormat" + } + }, + { + "name": "set_instance_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_instance_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_visible_instance_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_visible_instance_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_instance_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "set_instance_transform_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_instance_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_instance_transform_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_instance_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_instance_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_instance_custom_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + }, + { + "name": "custom_data", + "type": "Color" + } + ] + }, + { + "name": "get_instance_custom_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "instance", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "get_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedFloat32Array" + } + }, + { + "name": "set_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "buffer", + "type": "PackedFloat32Array" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "transform_format", + "setter": "set_transform_format", + "getter": "get_transform_format", + "index": -1 + }, + { + "type": "bool", + "name": "use_colors", + "setter": "set_use_colors", + "getter": "is_using_colors", + "index": -1 + }, + { + "type": "bool", + "name": "use_custom_data", + "setter": "set_use_custom_data", + "getter": "is_using_custom_data", + "index": -1 + }, + { + "type": "int", + "name": "instance_count", + "setter": "set_instance_count", + "getter": "get_instance_count", + "index": -1 + }, + { + "type": "int", + "name": "visible_instance_count", + "setter": "set_visible_instance_count", + "getter": "get_visible_instance_count", + "index": -1 + }, + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "PackedFloat32Array", + "name": "buffer", + "setter": "set_buffer", + "getter": "get_buffer", + "index": -1 + }, + { + "type": "PackedVector3Array", + "name": "transform_array", + "setter": "_set_transform_array", + "getter": "_get_transform_array", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "transform_2d_array", + "setter": "_set_transform_2d_array", + "getter": "_get_transform_2d_array", + "index": -1 + }, + { + "type": "PackedColorArray", + "name": "color_array", + "setter": "_set_color_array", + "getter": "_get_color_array", + "index": -1 + }, + { + "type": "PackedColorArray", + "name": "custom_data_array", + "setter": "_set_custom_data_array", + "getter": "_get_custom_data_array", + "index": -1 + } + ] + }, + { + "name": "MultiMeshInstance2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_multimesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "multimesh", + "type": "MultiMesh" + } + ] + }, + { + "name": "get_multimesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "MultiMesh" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_normal_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal_map", + "type": "Texture2D" + } + ] + }, + { + "name": "get_normal_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "signals": [ + { + "name": "texture_changed" + } + ], + "properties": [ + { + "type": "MultiMesh", + "name": "multimesh", + "setter": "set_multimesh", + "getter": "get_multimesh", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "normal_map", + "setter": "set_normal_map", + "getter": "get_normal_map", + "index": -1 + } + ] + }, + { + "name": "MultiMeshInstance3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "GeometryInstance3D", + "api_type": "core", + "methods": [ + { + "name": "set_multimesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "multimesh", + "type": "MultiMesh" + } + ] + }, + { + "name": "get_multimesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "MultiMesh" + } + } + ], + "properties": [ + { + "type": "MultiMesh", + "name": "multimesh", + "setter": "set_multimesh", + "getter": "get_multimesh", + "index": -1 + } + ] + }, + { + "name": "MultiplayerAPI", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_root_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_root_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "send_bytes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2499035564, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "bytes", + "type": "PackedByteArray" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "mode", + "type": "enum::TransferMode", + "default_value": "2" + }, + { + "name": "channel", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "has_multiplayer_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_multiplayer_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "MultiplayerPeer" + } + }, + { + "name": "set_multiplayer_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "peer", + "type": "MultiplayerPeer" + } + ] + }, + { + "name": "get_unique_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_server", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_remote_sender_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_peers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_refuse_new_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "refuse", + "type": "bool" + } + ] + }, + { + "name": "is_refusing_new_connections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_allow_object_decoding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_object_decoding_allowed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "peer_connected", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "peer_disconnected", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "peer_packet", + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "packet", + "type": "PackedByteArray" + } + ] + }, + { + "name": "connected_to_server" + }, + { + "name": "connection_failed" + }, + { + "name": "server_disconnected" + } + ], + "properties": [ + { + "type": "bool", + "name": "allow_object_decoding", + "setter": "set_allow_object_decoding", + "getter": "is_object_decoding_allowed", + "index": -1 + }, + { + "type": "bool", + "name": "refuse_new_connections", + "setter": "set_refuse_new_connections", + "getter": "is_refusing_new_connections", + "index": -1 + }, + { + "type": "MultiplayerPeer", + "name": "multiplayer_peer", + "setter": "set_multiplayer_peer", + "getter": "get_multiplayer_peer", + "index": -1 + }, + { + "type": "NodePath", + "name": "root_path", + "setter": "set_root_path", + "getter": "get_root_path", + "index": -1 + } + ] + }, + { + "name": "MultiplayerPeer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "PacketPeer", + "api_type": "core", + "constants": [ + { + "name": "TARGET_PEER_BROADCAST", + "value": 0 + }, + { + "name": "TARGET_PEER_SERVER", + "value": 1 + } + ], + "enums": [ + { + "name": "ConnectionStatus", + "values": [ + { + "name": "CONNECTION_DISCONNECTED", + "value": 0 + }, + { + "name": "CONNECTION_CONNECTING", + "value": 1 + }, + { + "name": "CONNECTION_CONNECTED", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_transfer_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "channel", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_transfer_channel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_transfer_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::TransferMode" + } + ] + }, + { + "name": "get_transfer_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TransferMode" + } + }, + { + "name": "set_target_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_packet_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_connection_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::MultiplayerPeer.ConnectionStatus" + } + }, + { + "name": "get_unique_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "generate_unique_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_refuse_new_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_refusing_new_connections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "peer_connected", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "peer_disconnected", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "server_disconnected" + }, + { + "name": "connection_succeeded" + }, + { + "name": "connection_failed" + } + ], + "properties": [ + { + "type": "bool", + "name": "refuse_new_connections", + "setter": "set_refuse_new_connections", + "getter": "is_refusing_new_connections", + "index": -1 + }, + { + "type": "int", + "name": "transfer_mode", + "setter": "set_transfer_mode", + "getter": "get_transfer_mode", + "index": -1 + }, + { + "type": "int", + "name": "transfer_channel", + "setter": "set_transfer_channel", + "getter": "get_transfer_channel", + "index": -1 + } + ] + }, + { + "name": "MultiplayerPeerExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "MultiplayerPeer", + "api_type": "core", + "methods": [ + { + "name": "_get_packet", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "r_buffer", + "type": "const uint8_t **" + }, + { + "name": "r_buffer_size", + "type": "int32_t*" + } + ] + }, + { + "name": "_put_packet", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_buffer", + "type": "const uint8_t*" + }, + { + "name": "p_buffer_size", + "type": "int" + } + ] + }, + { + "name": "_get_available_packet_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_max_packet_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_set_transfer_channel", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "p_channel", + "type": "int" + } + ] + }, + { + "name": "_get_transfer_channel", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_set_transfer_mode", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "p_mode", + "type": "int" + } + ] + }, + { + "name": "_get_transfer_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_set_target_peer", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "p_peer", + "type": "int" + } + ] + }, + { + "name": "_get_packet_peer", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_is_server", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_poll", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_unique_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_set_refuse_new_connections", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "p_enable", + "type": "bool" + } + ] + }, + { + "name": "_is_refusing_new_connections", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_connection_status", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + } + ] + }, + { + "name": "MultiplayerSpawner", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "_spawn_custom", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "add_spawnable_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_spawnable_scene_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_spawnable_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_spawnable_scenes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "spawn", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "data", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "get_spawn_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_spawn_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_spawn_limit", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_spawn_limit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "limit", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "set_auto_spawning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_auto_spawning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "despawned", + "arguments": [ + { + "name": "scene_id", + "type": "int" + }, + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "spawned", + "arguments": [ + { + "name": "scene_id", + "type": "int" + }, + { + "name": "node", + "type": "Node" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "spawn_path", + "setter": "set_spawn_path", + "getter": "get_spawn_path", + "index": -1 + }, + { + "type": "int", + "name": "spawn_limit", + "setter": "set_spawn_limit", + "getter": "get_spawn_limit", + "index": -1 + }, + { + "type": "bool", + "name": "auto_spawn", + "setter": "set_auto_spawning", + "getter": "is_auto_spawning", + "index": -1 + } + ] + }, + { + "name": "MultiplayerSynchronizer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "set_root_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_root_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_replication_interval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "milliseconds", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_replication_interval", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_replication_config", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "config", + "type": "SceneReplicationConfig" + } + ] + }, + { + "name": "get_replication_config", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "SceneReplicationConfig" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "root_path", + "setter": "set_root_path", + "getter": "get_root_path", + "index": -1 + }, + { + "type": "float", + "name": "replication_interval", + "setter": "set_replication_interval", + "getter": "get_replication_interval", + "index": -1 + }, + { + "type": "SceneReplicationConfig", + "name": "replication_config", + "setter": "set_replication_config", + "getter": "get_replication_config", + "index": -1 + } + ] + }, + { + "name": "Mutex", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "lock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "try_lock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "unlock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "NativeExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "InitializationLevel", + "values": [ + { + "name": "INITIALIZATION_LEVEL_CORE", + "value": 0 + }, + { + "name": "INITIALIZATION_LEVEL_SERVERS", + "value": 1 + }, + { + "name": "INITIALIZATION_LEVEL_SCENE", + "value": 2 + }, + { + "name": "INITIALIZATION_LEVEL_EDITOR", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "open_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "entry_symbol", + "type": "String" + } + ] + }, + { + "name": "close_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_library_open", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_minimum_library_initialization_level", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::NativeExtension.InitializationLevel" + } + }, + { + "name": "initialize_library", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "level", + "type": "enum::NativeExtension.InitializationLevel" + } + ] + } + ] + }, + { + "name": "NativeExtensionManager", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "LoadStatus", + "values": [ + { + "name": "LOAD_STATUS_OK", + "value": 0 + }, + { + "name": "LOAD_STATUS_FAILED", + "value": 1 + }, + { + "name": "LOAD_STATUS_ALREADY_LOADED", + "value": 2 + }, + { + "name": "LOAD_STATUS_NOT_LOADED", + "value": 3 + }, + { + "name": "LOAD_STATUS_NEEDS_RESTART", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "load_extension", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::NativeExtensionManager.LoadStatus" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "reload_extension", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::NativeExtensionManager.LoadStatus" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "unload_extension", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::NativeExtensionManager.LoadStatus" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "is_extension_loaded", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_loaded_extensions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_extension", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "NativeExtension" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ] + }, + { + "name": "NavigationAgent2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_avoidance_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_avoidance_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_target_desired_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "desired_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_target_desired_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_neighbor_dist", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "neighbor_dist", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_neighbor_dist", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_neighbors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_neighbors", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_neighbors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_time_horizon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time_horizon", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_time_horizon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_path_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_navigable_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "navigable_layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_navigable_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_target_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "location", + "type": "Vector2" + } + ] + }, + { + "name": "get_target_location", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_next_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "distance_to_target", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_nav_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "get_nav_path_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_target_reached", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_target_reachable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_navigation_finished", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_final_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2" + } + } + ], + "signals": [ + { + "name": "path_changed" + }, + { + "name": "target_reached" + }, + { + "name": "navigation_finished" + }, + { + "name": "velocity_computed", + "arguments": [ + { + "name": "safe_velocity", + "type": "Vector3" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "target_desired_distance", + "setter": "set_target_desired_distance", + "getter": "get_target_desired_distance", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "neighbor_dist", + "setter": "set_neighbor_dist", + "getter": "get_neighbor_dist", + "index": -1 + }, + { + "type": "int", + "name": "max_neighbors", + "setter": "set_max_neighbors", + "getter": "get_max_neighbors", + "index": -1 + }, + { + "type": "float", + "name": "time_horizon", + "setter": "set_time_horizon", + "getter": "get_time_horizon", + "index": -1 + }, + { + "type": "float", + "name": "max_speed", + "setter": "set_max_speed", + "getter": "get_max_speed", + "index": -1 + }, + { + "type": "float", + "name": "path_max_distance", + "setter": "set_path_max_distance", + "getter": "get_path_max_distance", + "index": -1 + }, + { + "type": "bool", + "name": "avoidance_enabled", + "setter": "set_avoidance_enabled", + "getter": "get_avoidance_enabled", + "index": -1 + }, + { + "type": "int", + "name": "navigable_layers", + "setter": "set_navigable_layers", + "getter": "get_navigable_layers", + "index": -1 + } + ] + }, + { + "name": "NavigationAgent3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_avoidance_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_avoidance_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_target_desired_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "desired_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_target_desired_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_agent_height_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "agent_height_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_agent_height_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ignore_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ignore", + "type": "bool" + } + ] + }, + { + "name": "get_ignore_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_neighbor_dist", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "neighbor_dist", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_neighbor_dist", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_neighbors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_neighbors", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_neighbors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_time_horizon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time_horizon", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_time_horizon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_path_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_navigable_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "navigable_layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_navigable_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_target_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "location", + "type": "Vector3" + } + ] + }, + { + "name": "get_target_location", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_next_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "distance_to_target", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_nav_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "get_nav_path_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_target_reached", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_target_reachable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_navigation_finished", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_final_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector3" + } + } + ], + "signals": [ + { + "name": "path_changed" + }, + { + "name": "target_reached" + }, + { + "name": "navigation_finished" + }, + { + "name": "velocity_computed", + "arguments": [ + { + "name": "safe_velocity", + "type": "Vector3" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "target_desired_distance", + "setter": "set_target_desired_distance", + "getter": "get_target_desired_distance", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "agent_height_offset", + "setter": "set_agent_height_offset", + "getter": "get_agent_height_offset", + "index": -1 + }, + { + "type": "float", + "name": "neighbor_dist", + "setter": "set_neighbor_dist", + "getter": "get_neighbor_dist", + "index": -1 + }, + { + "type": "int", + "name": "max_neighbors", + "setter": "set_max_neighbors", + "getter": "get_max_neighbors", + "index": -1 + }, + { + "type": "float", + "name": "time_horizon", + "setter": "set_time_horizon", + "getter": "get_time_horizon", + "index": -1 + }, + { + "type": "float", + "name": "max_speed", + "setter": "set_max_speed", + "getter": "get_max_speed", + "index": -1 + }, + { + "type": "float", + "name": "path_max_distance", + "setter": "set_path_max_distance", + "getter": "get_path_max_distance", + "index": -1 + }, + { + "type": "bool", + "name": "ignore_y", + "setter": "set_ignore_y", + "getter": "get_ignore_y", + "index": -1 + }, + { + "type": "bool", + "name": "avoidance_enabled", + "setter": "set_avoidance_enabled", + "getter": "get_avoidance_enabled", + "index": -1 + }, + { + "type": "int", + "name": "navigable_layers", + "setter": "set_navigable_layers", + "getter": "get_navigable_layers", + "index": -1 + } + ] + }, + { + "name": "NavigationMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "SamplePartitionType", + "values": [ + { + "name": "SAMPLE_PARTITION_WATERSHED", + "value": 0 + }, + { + "name": "SAMPLE_PARTITION_MONOTONE", + "value": 1 + }, + { + "name": "SAMPLE_PARTITION_LAYERS", + "value": 2 + }, + { + "name": "SAMPLE_PARTITION_MAX", + "value": 3 + } + ] + }, + { + "name": "ParsedGeometryType", + "values": [ + { + "name": "PARSED_GEOMETRY_MESH_INSTANCES", + "value": 0 + }, + { + "name": "PARSED_GEOMETRY_STATIC_COLLIDERS", + "value": 1 + }, + { + "name": "PARSED_GEOMETRY_BOTH", + "value": 2 + }, + { + "name": "PARSED_GEOMETRY_MAX", + "value": 3 + } + ] + }, + { + "name": "SourceGeometryMode", + "values": [ + { + "name": "SOURCE_GEOMETRY_NAVMESH_CHILDREN", + "value": 0 + }, + { + "name": "SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN", + "value": 1 + }, + { + "name": "SOURCE_GEOMETRY_GROUPS_EXPLICIT", + "value": 2 + }, + { + "name": "SOURCE_GEOMETRY_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_sample_partition_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sample_partition_type", + "type": "enum::NavigationMesh.SamplePartitionType" + } + ] + }, + { + "name": "get_sample_partition_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::NavigationMesh.SamplePartitionType" + } + }, + { + "name": "set_parsed_geometry_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "geometry_type", + "type": "enum::NavigationMesh.ParsedGeometryType" + } + ] + }, + { + "name": "get_parsed_geometry_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::NavigationMesh.ParsedGeometryType" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_source_geometry_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "enum::NavigationMesh.SourceGeometryMode" + } + ] + }, + { + "name": "get_source_geometry_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::NavigationMesh.SourceGeometryMode" + } + }, + { + "name": "set_source_group_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "StringName" + } + ] + }, + { + "name": "get_source_group_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_cell_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cell_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_cell_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cell_height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cell_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_agent_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "agent_height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_agent_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_agent_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "agent_radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_agent_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_agent_max_climb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "agent_max_climb", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_agent_max_climb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_agent_max_slope", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "agent_max_slope", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_agent_max_slope", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_region_min_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "region_min_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_region_min_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_region_merge_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "region_merge_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_region_merge_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_edge_max_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "edge_max_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_edge_max_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_edge_max_error", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "edge_max_error", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_edge_max_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_verts_per_poly", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "verts_per_poly", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_verts_per_poly", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_detail_sample_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail_sample_dist", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_detail_sample_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_detail_sample_max_error", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail_sample_max_error", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_detail_sample_max_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_filter_low_hanging_obstacles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter_low_hanging_obstacles", + "type": "bool" + } + ] + }, + { + "name": "get_filter_low_hanging_obstacles", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_filter_ledge_spans", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter_ledge_spans", + "type": "bool" + } + ] + }, + { + "name": "get_filter_ledge_spans", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_filter_walkable_low_height_spans", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter_walkable_low_height_spans", + "type": "bool" + } + ] + }, + { + "name": "get_filter_walkable_low_height_spans", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_vertices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertices", + "type": "PackedVector3Array" + } + ] + }, + { + "name": "get_vertices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "add_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_polygon_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create_from_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + } + ], + "properties": [ + { + "type": "PackedVector3Array", + "name": "vertices", + "setter": "set_vertices", + "getter": "get_vertices", + "index": -1 + }, + { + "type": "Array", + "name": "polygons", + "setter": "_set_polygons", + "getter": "_get_polygons", + "index": -1 + }, + { + "type": "int", + "name": "sample_partition_type", + "setter": "set_sample_partition_type", + "getter": "get_sample_partition_type", + "index": -1 + }, + { + "type": "int", + "name": "geometry_parsed_geometry_type", + "setter": "set_parsed_geometry_type", + "getter": "get_parsed_geometry_type", + "index": -1 + }, + { + "type": "int", + "name": "geometry_collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "int", + "name": "geometry_source_geometry_mode", + "setter": "set_source_geometry_mode", + "getter": "get_source_geometry_mode", + "index": -1 + }, + { + "type": "String", + "name": "geometry_source_group_name", + "setter": "set_source_group_name", + "getter": "get_source_group_name", + "index": -1 + }, + { + "type": "float", + "name": "cell_size", + "setter": "set_cell_size", + "getter": "get_cell_size", + "index": -1 + }, + { + "type": "float", + "name": "cell_height", + "setter": "set_cell_height", + "getter": "get_cell_height", + "index": -1 + }, + { + "type": "float", + "name": "agent_height", + "setter": "set_agent_height", + "getter": "get_agent_height", + "index": -1 + }, + { + "type": "float", + "name": "agent_radius", + "setter": "set_agent_radius", + "getter": "get_agent_radius", + "index": -1 + }, + { + "type": "float", + "name": "agent_max_climb", + "setter": "set_agent_max_climb", + "getter": "get_agent_max_climb", + "index": -1 + }, + { + "type": "float", + "name": "agent_max_slope", + "setter": "set_agent_max_slope", + "getter": "get_agent_max_slope", + "index": -1 + }, + { + "type": "float", + "name": "region_min_size", + "setter": "set_region_min_size", + "getter": "get_region_min_size", + "index": -1 + }, + { + "type": "float", + "name": "region_merge_size", + "setter": "set_region_merge_size", + "getter": "get_region_merge_size", + "index": -1 + }, + { + "type": "float", + "name": "edge_max_length", + "setter": "set_edge_max_length", + "getter": "get_edge_max_length", + "index": -1 + }, + { + "type": "float", + "name": "edge_max_error", + "setter": "set_edge_max_error", + "getter": "get_edge_max_error", + "index": -1 + }, + { + "type": "float", + "name": "polygon_verts_per_poly", + "setter": "set_verts_per_poly", + "getter": "get_verts_per_poly", + "index": -1 + }, + { + "type": "float", + "name": "detail_sample_distance", + "setter": "set_detail_sample_distance", + "getter": "get_detail_sample_distance", + "index": -1 + }, + { + "type": "float", + "name": "detail_sample_max_error", + "setter": "set_detail_sample_max_error", + "getter": "get_detail_sample_max_error", + "index": -1 + }, + { + "type": "bool", + "name": "filter_low_hanging_obstacles", + "setter": "set_filter_low_hanging_obstacles", + "getter": "get_filter_low_hanging_obstacles", + "index": -1 + }, + { + "type": "bool", + "name": "filter_ledge_spans", + "setter": "set_filter_ledge_spans", + "getter": "get_filter_ledge_spans", + "index": -1 + }, + { + "type": "bool", + "name": "filter_walkable_low_height_spans", + "setter": "set_filter_walkable_low_height_spans", + "getter": "get_filter_walkable_low_height_spans", + "index": -1 + } + ] + }, + { + "name": "NavigationMeshGenerator", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "bake", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "nav_mesh", + "type": "NavigationMesh" + }, + { + "name": "root_node", + "type": "Node" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "nav_mesh", + "type": "NavigationMesh" + } + ] + } + ] + }, + { + "name": "NavigationObstacle2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_estimate_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "estimate_radius", + "type": "bool" + } + ] + }, + { + "name": "is_radius_estimated", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "estimate_radius", + "setter": "set_estimate_radius", + "getter": "is_radius_estimated", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "NavigationObstacle3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_estimate_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "estimate_radius", + "type": "bool" + } + ] + }, + { + "name": "is_radius_estimated", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "estimate_radius", + "setter": "set_estimate_radius", + "getter": "is_radius_estimated", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "NavigationPolygon", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_vertices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertices", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_vertices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "add_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_polygon_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "NavigationMesh" + } + }, + { + "name": "add_outline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "outline", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "add_outline_at_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "outline", + "type": "PackedVector2Array" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_outline_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_outline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "outline", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_outline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_outlines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "make_polygons_from_outlines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "PackedVector2Array", + "name": "vertices", + "setter": "set_vertices", + "getter": "get_vertices", + "index": -1 + }, + { + "type": "Array", + "name": "polygons", + "setter": "_set_polygons", + "getter": "_get_polygons", + "index": -1 + }, + { + "type": "Array", + "name": "outlines", + "setter": "_set_outlines", + "getter": "_get_outlines", + "index": -1 + } + ] + }, + { + "name": "NavigationRegion2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_navigation_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "navpoly", + "type": "NavigationPolygon" + } + ] + }, + { + "name": "get_navigation_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NavigationPolygon" + } + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_region_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_enter_cost", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enter_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_enter_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_travel_cost", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "travel_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_travel_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "NavigationPolygon", + "name": "navpoly", + "setter": "set_navigation_polygon", + "getter": "get_navigation_polygon", + "index": -1 + }, + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "int", + "name": "layers", + "setter": "set_layers", + "getter": "get_layers", + "index": -1 + }, + { + "type": "float", + "name": "enter_cost", + "setter": "set_enter_cost", + "getter": "get_enter_cost", + "index": -1 + }, + { + "type": "float", + "name": "travel_cost", + "setter": "set_travel_cost", + "getter": "get_travel_cost", + "index": -1 + } + ] + }, + { + "name": "NavigationRegion3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_navigation_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "navmesh", + "type": "NavigationMesh" + } + ] + }, + { + "name": "get_navigation_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NavigationMesh" + } + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_region_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_enter_cost", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enter_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_enter_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_travel_cost", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "travel_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_travel_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "bake_navigation_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133279208, + "arguments": [ + { + "name": "on_thread", + "type": "bool", + "default_value": "true" + } + ] + } + ], + "signals": [ + { + "name": "navigation_mesh_changed" + }, + { + "name": "bake_finished" + } + ], + "properties": [ + { + "type": "NavigationMesh", + "name": "navmesh", + "setter": "set_navigation_mesh", + "getter": "get_navigation_mesh", + "index": -1 + }, + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "int", + "name": "layers", + "setter": "set_layers", + "getter": "get_layers", + "index": -1 + }, + { + "type": "float", + "name": "enter_cost", + "setter": "set_enter_cost", + "getter": "get_enter_cost", + "index": -1 + }, + { + "type": "float", + "name": "travel_cost", + "setter": "set_travel_cost", + "getter": "get_travel_cost", + "index": -1 + } + ] + }, + { + "name": "NavigationServer2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "map_create", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "map_set_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "map_is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "nap", + "type": "RID" + } + ] + }, + { + "name": "map_set_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "cell_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "map_get_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_set_edge_connection_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "map_get_edge_connection_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 177157229, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "origin", + "type": "Vector2" + }, + { + "name": "destination", + "type": "Vector2" + }, + { + "name": "optimize", + "type": "bool" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32", + "default_value": "1" + } + ] + }, + { + "name": "map_get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "to_point", + "type": "Vector2" + } + ] + }, + { + "name": "map_get_closest_point_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "to_point", + "type": "Vector2" + } + ] + }, + { + "name": "map_get_regions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_get_agents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "region_create", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "region_set_enter_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "enter_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "region_get_enter_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_travel_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "travel_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "region_get_travel_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "region_get_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "region_get_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "region_set_navpoly", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "nav_poly", + "type": "NavigationPolygon" + } + ] + }, + { + "name": "region_get_connections_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_get_connection_pathway_start", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "connection", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "region_get_connection_pathway_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "connection", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "agent_create", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "agent_set_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "agent_get_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "agent", + "type": "RID" + } + ] + }, + { + "name": "agent_set_neighbor_dist", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "dist", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_max_neighbors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "agent_set_time_horizon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "time", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_max_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "max_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "agent_set_target_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "target_velocity", + "type": "Vector2" + } + ] + }, + { + "name": "agent_set_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "agent_is_map_changed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "agent", + "type": "RID" + } + ] + }, + { + "name": "agent_set_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835915, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "receiver", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + }, + { + "name": "userdata", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "free_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188199, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + } + ], + "signals": [ + { + "name": "map_changed", + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + } + ] + }, + { + "name": "NavigationServer3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "map_create", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "map_set_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "map_is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "nap", + "type": "RID" + } + ] + }, + { + "name": "map_set_up", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "up", + "type": "Vector3" + } + ] + }, + { + "name": "map_get_up", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_set_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "cell_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "map_get_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_set_edge_connection_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "map_get_edge_connection_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 177157229, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "origin", + "type": "Vector3" + }, + { + "name": "destination", + "type": "Vector3" + }, + { + "name": "optimize", + "type": "bool" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32", + "default_value": "1" + } + ] + }, + { + "name": "map_get_closest_point_to_segment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971308, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "start", + "type": "Vector3" + }, + { + "name": "end", + "type": "Vector3" + }, + { + "name": "use_collision", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "map_get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "to_point", + "type": "Vector3" + } + ] + }, + { + "name": "map_get_closest_point_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "to_point", + "type": "Vector3" + } + ] + }, + { + "name": "map_get_closest_point_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + }, + { + "name": "to_point", + "type": "Vector3" + } + ] + }, + { + "name": "map_get_regions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "map_get_agents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "region_create", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "region_set_enter_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "enter_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "region_get_enter_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_travel_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "travel_cost", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "region_get_travel_cost", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "region_get_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "region_get_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_set_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "region_set_navmesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "nav_mesh", + "type": "NavigationMesh" + } + ] + }, + { + "name": "region_bake_navmesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "mesh", + "type": "NavigationMesh" + }, + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "region_get_connections_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + } + ] + }, + { + "name": "region_get_connection_pathway_start", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "connection", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "region_get_connection_pathway_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "connection", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "agent_create", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "agent_set_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "map", + "type": "RID" + } + ] + }, + { + "name": "agent_get_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "agent", + "type": "RID" + } + ] + }, + { + "name": "agent_set_neighbor_dist", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "dist", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_max_neighbors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "agent_set_time_horizon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "time", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_max_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "max_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "agent_set_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "agent_set_target_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "target_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "agent_set_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "agent_is_map_changed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "agent", + "type": "RID" + } + ] + }, + { + "name": "agent_set_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835915, + "arguments": [ + { + "name": "agent", + "type": "RID" + }, + { + "name": "receiver", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + }, + { + "name": "userdata", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "free_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188199, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "set_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188199, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "process", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "delta_time", + "type": "float", + "meta": "float" + } + ] + } + ], + "signals": [ + { + "name": "map_changed", + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + } + ] + }, + { + "name": "NinePatchRect", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "AxisStretchMode", + "values": [ + { + "name": "AXIS_STRETCH_MODE_STRETCH", + "value": 0 + }, + { + "name": "AXIS_STRETCH_MODE_TILE", + "value": 1 + }, + { + "name": "AXIS_STRETCH_MODE_TILE_FIT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_patch_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_patch_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_region_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_region_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_draw_center", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "draw_center", + "type": "bool" + } + ] + }, + { + "name": "is_draw_center_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_h_axis_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::NinePatchRect.AxisStretchMode" + } + ] + }, + { + "name": "get_h_axis_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::NinePatchRect.AxisStretchMode" + } + }, + { + "name": "set_v_axis_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::NinePatchRect.AxisStretchMode" + } + ] + }, + { + "name": "get_v_axis_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::NinePatchRect.AxisStretchMode" + } + } + ], + "signals": [ + { + "name": "texture_changed" + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "bool", + "name": "draw_center", + "setter": "set_draw_center", + "getter": "is_draw_center_enabled", + "index": -1 + }, + { + "type": "Rect2", + "name": "region_rect", + "setter": "set_region_rect", + "getter": "get_region_rect", + "index": -1 + }, + { + "type": "int", + "name": "patch_margin_left", + "setter": "set_patch_margin", + "getter": "get_patch_margin", + "index": 0 + }, + { + "type": "int", + "name": "patch_margin_top", + "setter": "set_patch_margin", + "getter": "get_patch_margin", + "index": 1 + }, + { + "type": "int", + "name": "patch_margin_right", + "setter": "set_patch_margin", + "getter": "get_patch_margin", + "index": 2 + }, + { + "type": "int", + "name": "patch_margin_bottom", + "setter": "set_patch_margin", + "getter": "get_patch_margin", + "index": 3 + }, + { + "type": "int", + "name": "axis_stretch_horizontal", + "setter": "set_h_axis_stretch_mode", + "getter": "get_h_axis_stretch_mode", + "index": -1 + }, + { + "type": "int", + "name": "axis_stretch_vertical", + "setter": "set_v_axis_stretch_mode", + "getter": "get_v_axis_stretch_mode", + "index": -1 + } + ] + }, + { + "name": "Node", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_ENTER_TREE", + "value": 10 + }, + { + "name": "NOTIFICATION_EXIT_TREE", + "value": 11 + }, + { + "name": "NOTIFICATION_MOVED_IN_PARENT", + "value": 12 + }, + { + "name": "NOTIFICATION_READY", + "value": 13 + }, + { + "name": "NOTIFICATION_PAUSED", + "value": 14 + }, + { + "name": "NOTIFICATION_UNPAUSED", + "value": 15 + }, + { + "name": "NOTIFICATION_PHYSICS_PROCESS", + "value": 16 + }, + { + "name": "NOTIFICATION_PROCESS", + "value": 17 + }, + { + "name": "NOTIFICATION_PARENTED", + "value": 18 + }, + { + "name": "NOTIFICATION_UNPARENTED", + "value": 19 + }, + { + "name": "NOTIFICATION_INSTANCED", + "value": 20 + }, + { + "name": "NOTIFICATION_DRAG_BEGIN", + "value": 21 + }, + { + "name": "NOTIFICATION_DRAG_END", + "value": 22 + }, + { + "name": "NOTIFICATION_PATH_RENAMED", + "value": 23 + }, + { + "name": "NOTIFICATION_INTERNAL_PROCESS", + "value": 25 + }, + { + "name": "NOTIFICATION_INTERNAL_PHYSICS_PROCESS", + "value": 26 + }, + { + "name": "NOTIFICATION_POST_ENTER_TREE", + "value": 27 + }, + { + "name": "NOTIFICATION_DISABLED", + "value": 28 + }, + { + "name": "NOTIFICATION_ENABLED", + "value": 29 + }, + { + "name": "NOTIFICATION_EDITOR_PRE_SAVE", + "value": 9001 + }, + { + "name": "NOTIFICATION_EDITOR_POST_SAVE", + "value": 9002 + }, + { + "name": "NOTIFICATION_WM_MOUSE_ENTER", + "value": 1002 + }, + { + "name": "NOTIFICATION_WM_MOUSE_EXIT", + "value": 1003 + }, + { + "name": "NOTIFICATION_WM_WINDOW_FOCUS_IN", + "value": 1004 + }, + { + "name": "NOTIFICATION_WM_WINDOW_FOCUS_OUT", + "value": 1005 + }, + { + "name": "NOTIFICATION_WM_CLOSE_REQUEST", + "value": 1006 + }, + { + "name": "NOTIFICATION_WM_GO_BACK_REQUEST", + "value": 1007 + }, + { + "name": "NOTIFICATION_WM_SIZE_CHANGED", + "value": 1008 + }, + { + "name": "NOTIFICATION_WM_DPI_CHANGE", + "value": 1009 + }, + { + "name": "NOTIFICATION_VP_MOUSE_ENTER", + "value": 1010 + }, + { + "name": "NOTIFICATION_VP_MOUSE_EXIT", + "value": 1011 + }, + { + "name": "NOTIFICATION_OS_MEMORY_WARNING", + "value": 2009 + }, + { + "name": "NOTIFICATION_TRANSLATION_CHANGED", + "value": 2010 + }, + { + "name": "NOTIFICATION_WM_ABOUT", + "value": 2011 + }, + { + "name": "NOTIFICATION_CRASH", + "value": 2012 + }, + { + "name": "NOTIFICATION_OS_IME_UPDATE", + "value": 2013 + }, + { + "name": "NOTIFICATION_APPLICATION_RESUMED", + "value": 2014 + }, + { + "name": "NOTIFICATION_APPLICATION_PAUSED", + "value": 2015 + }, + { + "name": "NOTIFICATION_APPLICATION_FOCUS_IN", + "value": 2016 + }, + { + "name": "NOTIFICATION_APPLICATION_FOCUS_OUT", + "value": 2017 + }, + { + "name": "NOTIFICATION_TEXT_SERVER_CHANGED", + "value": 2018 + } + ], + "enums": [ + { + "name": "ProcessMode", + "values": [ + { + "name": "PROCESS_MODE_INHERIT", + "value": 0 + }, + { + "name": "PROCESS_MODE_PAUSABLE", + "value": 1 + }, + { + "name": "PROCESS_MODE_WHEN_PAUSED", + "value": 2 + }, + { + "name": "PROCESS_MODE_ALWAYS", + "value": 3 + }, + { + "name": "PROCESS_MODE_DISABLED", + "value": 4 + } + ] + }, + { + "name": "DuplicateFlags", + "values": [ + { + "name": "DUPLICATE_SIGNALS", + "value": 1 + }, + { + "name": "DUPLICATE_GROUPS", + "value": 2 + }, + { + "name": "DUPLICATE_SCRIPTS", + "value": 4 + }, + { + "name": "DUPLICATE_USE_INSTANCING", + "value": 8 + } + ] + }, + { + "name": "InternalMode", + "values": [ + { + "name": "INTERNAL_MODE_DISABLED", + "value": 0 + }, + { + "name": "INTERNAL_MODE_FRONT", + "value": 1 + }, + { + "name": "INTERNAL_MODE_BACK", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "_physics_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "_enter_tree", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_exit_tree", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_ready", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_configuration_warnings", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "_shortcut_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "_unhandled_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "_unhandled_key_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "add_sibling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "sibling", + "type": "Node" + }, + { + "name": "legible_unique_name", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "add_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 182667338, + "arguments": [ + { + "name": "node", + "type": "Node" + }, + { + "name": "legible_unique_name", + "type": "bool", + "default_value": "false" + }, + { + "name": "internal", + "type": "enum::Node.InternalMode", + "default_value": "0" + } + ] + }, + { + "name": "remove_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_child_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "include_internal", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_children", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "include_internal", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_child", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "include_internal", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "has_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_or_null", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "find_child", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474136429, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "pattern", + "type": "String" + }, + { + "name": "recursive", + "type": "bool", + "default_value": "true" + }, + { + "name": "owned", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "find_children", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2925806356, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "pattern", + "type": "String" + }, + { + "name": "type", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "recursive", + "type": "bool", + "default_value": "true" + }, + { + "name": "owned", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "find_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "pattern", + "type": "String" + } + ] + }, + { + "name": "has_node_and_resource", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_and_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "is_inside_tree", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_ancestor_of", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "is_greater_than", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "get_path_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "add_to_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "group", + "type": "StringName" + }, + { + "name": "persistent", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_from_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "group", + "type": "StringName" + } + ] + }, + { + "name": "is_in_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "group", + "type": "StringName" + } + ] + }, + { + "name": "move_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "child_node", + "type": "Node" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_groups", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "raise", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "owner", + "type": "Node" + } + ] + }, + { + "name": "get_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "remove_and_skip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "include_internal", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "print_tree", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "print_tree_pretty", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_scene_file_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene_file_path", + "type": "String" + } + ] + }, + { + "name": "get_scene_file_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "propagate_notification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "what", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "propagate_call", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 376071560, + "arguments": [ + { + "name": "method", + "type": "StringName" + }, + { + "name": "args", + "type": "Array", + "default_value": "[]" + }, + { + "name": "parent_first", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_physics_process", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_physics_process_delta_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "is_physics_processing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_process_delta_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_process", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_process_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_process_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_processing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_processing_input", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_shortcut_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_processing_shortcut_input", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_unhandled_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_processing_unhandled_input", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_unhandled_key_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_processing_unhandled_key_input", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Node.ProcessMode" + } + ] + }, + { + "name": "get_process_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Node.ProcessMode" + } + }, + { + "name": "can_process", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "print_orphan_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_display_folded", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fold", + "type": "bool" + } + ] + }, + { + "name": "is_displayed_folded", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_process_internal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_processing_internal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_physics_process_internal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_physics_processing_internal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_tree", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SceneTree" + } + }, + { + "name": "create_tween", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Tween" + } + }, + { + "name": "duplicate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1282261465, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "int32", + "default_value": "15" + } + ] + }, + { + "name": "replace_by", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "node", + "type": "Node" + }, + { + "name": "keep_groups", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_scene_instance_load_placeholder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "load_placeholder", + "type": "bool" + } + ] + }, + { + "name": "get_scene_instance_load_placeholder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_editable_instance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "node", + "type": "Node" + }, + { + "name": "is_editable", + "type": "bool" + } + ] + }, + { + "name": "is_editable_instance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "get_viewport", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Viewport" + } + }, + { + "name": "queue_free", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "request_ready", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_multiplayer_authority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "recursive", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_multiplayer_authority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_multiplayer_authority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_multiplayer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "MultiplayerAPI" + } + }, + { + "name": "rpc_config", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4023896206, + "return_value": { + "type": "int", + "meta": "uint16" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + }, + { + "name": "rpc_mode", + "type": "enum::RPCMode" + }, + { + "name": "call_local", + "type": "bool", + "default_value": "false" + }, + { + "name": "transfer_mode", + "type": "enum::TransferMode", + "default_value": "2" + }, + { + "name": "channel", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_editor_description", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "editor_description", + "type": "String" + } + ] + }, + { + "name": "get_editor_description", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_unique_name_in_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_unique_name_in_owner", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "rpc", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134188167, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "rpc_id", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134224104, + "arguments": [ + { + "name": "peer_id", + "type": "int" + }, + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "update_configuration_warnings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "signals": [ + { + "name": "ready" + }, + { + "name": "renamed" + }, + { + "name": "tree_entered" + }, + { + "name": "tree_exiting" + }, + { + "name": "tree_exited" + }, + { + "name": "child_entered_tree", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "child_exited_tree", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + } + ], + "properties": [ + { + "type": "StringName", + "name": "name", + "setter": "set_name", + "getter": "get_name", + "index": -1 + }, + { + "type": "bool", + "name": "unique_name_in_owner", + "setter": "set_unique_name_in_owner", + "getter": "is_unique_name_in_owner", + "index": -1 + }, + { + "type": "String", + "name": "scene_file_path", + "setter": "set_scene_file_path", + "getter": "get_scene_file_path", + "index": -1 + }, + { + "type": "Node", + "name": "owner", + "setter": "set_owner", + "getter": "get_owner", + "index": -1 + }, + { + "type": "MultiplayerAPI", + "name": "multiplayer", + "setter": "", + "getter": "get_multiplayer", + "index": -1 + }, + { + "type": "int", + "name": "process_mode", + "setter": "set_process_mode", + "getter": "get_process_mode", + "index": -1 + }, + { + "type": "int", + "name": "process_priority", + "setter": "set_process_priority", + "getter": "get_process_priority", + "index": -1 + }, + { + "type": "String", + "name": "editor_description", + "setter": "set_editor_description", + "getter": "get_editor_description", + "index": -1 + } + ] + }, + { + "name": "Node2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CanvasItem", + "api_type": "core", + "methods": [ + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "set_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_skew", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_skew", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "rotate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "move_local_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "scaled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "move_local_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "scaled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "translate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "global_translate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "apply_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "Vector2" + } + ] + }, + { + "name": "set_global_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_global_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_global_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_global_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_global_skew", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radians", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_global_skew", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_global_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "get_global_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + } + ] + }, + { + "name": "set_global_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + } + ] + }, + { + "name": "look_at", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "get_angle_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "to_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "global_point", + "type": "Vector2" + } + ] + }, + { + "name": "to_global", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "local_point", + "type": "Vector2" + } + ] + }, + { + "name": "set_z_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "z_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_z_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_z_as_relative", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_z_relative", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_y_sort_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_y_sort_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_relative_transform_to_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "parent", + "type": "Node" + } + ] + } + ], + "properties": [ + { + "type": "Vector2", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "float", + "name": "rotation", + "setter": "set_rotation", + "getter": "get_rotation", + "index": -1 + }, + { + "type": "Vector2", + "name": "scale", + "setter": "set_scale", + "getter": "get_scale", + "index": -1 + }, + { + "type": "float", + "name": "skew", + "setter": "set_skew", + "getter": "get_skew", + "index": -1 + }, + { + "type": "Transform2D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "Vector2", + "name": "global_position", + "setter": "set_global_position", + "getter": "get_global_position", + "index": -1 + }, + { + "type": "float", + "name": "global_rotation", + "setter": "set_global_rotation", + "getter": "get_global_rotation", + "index": -1 + }, + { + "type": "Vector2", + "name": "global_scale", + "setter": "set_global_scale", + "getter": "get_global_scale", + "index": -1 + }, + { + "type": "float", + "name": "global_skew", + "setter": "set_global_skew", + "getter": "get_global_skew", + "index": -1 + }, + { + "type": "Transform2D", + "name": "global_transform", + "setter": "set_global_transform", + "getter": "get_global_transform", + "index": -1 + }, + { + "type": "int", + "name": "z_index", + "setter": "set_z_index", + "getter": "get_z_index", + "index": -1 + }, + { + "type": "bool", + "name": "z_as_relative", + "setter": "set_z_as_relative", + "getter": "is_z_relative", + "index": -1 + }, + { + "type": "bool", + "name": "y_sort_enabled", + "setter": "set_y_sort_enabled", + "getter": "is_y_sort_enabled", + "index": -1 + } + ] + }, + { + "name": "Node3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_TRANSFORM_CHANGED", + "value": 2000 + }, + { + "name": "NOTIFICATION_ENTER_WORLD", + "value": 41 + }, + { + "name": "NOTIFICATION_EXIT_WORLD", + "value": 42 + }, + { + "name": "NOTIFICATION_VISIBILITY_CHANGED", + "value": 43 + } + ], + "enums": [ + { + "name": "RotationEditMode", + "values": [ + { + "name": "ROTATION_EDIT_MODE_EULER", + "value": 0 + }, + { + "name": "ROTATION_EDIT_MODE_QUATERNION", + "value": 1 + }, + { + "name": "ROTATION_EDIT_MODE_BASIS", + "value": 2 + } + ] + }, + { + "name": "RotationOrder", + "values": [ + { + "name": "ROTATION_ORDER_XYZ", + "value": 0 + }, + { + "name": "ROTATION_ORDER_XZY", + "value": 1 + }, + { + "name": "ROTATION_ORDER_YXZ", + "value": 2 + }, + { + "name": "ROTATION_ORDER_YZX", + "value": 3 + }, + { + "name": "ROTATION_ORDER_ZXY", + "value": 4 + }, + { + "name": "ROTATION_ORDER_ZYX", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "local", + "type": "Transform3D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "euler", + "type": "Vector3" + } + ] + }, + { + "name": "get_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_rotation_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "order", + "type": "enum::Node3D.RotationOrder" + } + ] + }, + { + "name": "get_rotation_order", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Node3D.RotationOrder" + } + }, + { + "name": "set_rotation_edit_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "edit_mode", + "type": "enum::Node3D.RotationEditMode" + } + ] + }, + { + "name": "get_rotation_edit_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Node3D.RotationEditMode" + } + }, + { + "name": "set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_quaternion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quaternion", + "type": "Quaternion" + } + ] + }, + { + "name": "get_quaternion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Quaternion" + } + }, + { + "name": "set_basis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "basis", + "type": "Basis" + } + ] + }, + { + "name": "get_basis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Basis" + } + }, + { + "name": "set_global_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "global", + "type": "Transform3D" + } + ] + }, + { + "name": "get_global_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "get_parent_node_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node3D" + } + }, + { + "name": "set_ignore_transform_notification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_as_top_level", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_set_as_top_level", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_disable_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_scale_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_world_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "World3D" + } + }, + { + "name": "force_update_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_visibility_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_visibility_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "update_gizmos", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_gizmo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gizmo", + "type": "Node3DGizmo" + } + ] + }, + { + "name": "get_gizmos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "clear_gizmos", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_subgizmo_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "gizmo", + "type": "Node3DGizmo" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "clear_subgizmo_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "is_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_visible_in_tree", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "show", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "hide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_notify_local_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_local_transform_notification_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_notify_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_transform_notification_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "rotate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "global_rotate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "global_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "global_translate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "rotate_object_local", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "scale_object_local", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "translate_object_local", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "rotate_x", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "rotate_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "rotate_z", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "translate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "orthonormalize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_identity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "look_at", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "target", + "type": "Vector3" + }, + { + "name": "up", + "type": "Vector3", + "default_value": "Vector3(0, 1, 0)" + } + ] + }, + { + "name": "look_at_from_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "position", + "type": "Vector3" + }, + { + "name": "target", + "type": "Vector3" + }, + { + "name": "up", + "type": "Vector3", + "default_value": "Vector3(0, 1, 0)" + } + ] + }, + { + "name": "to_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "global_point", + "type": "Vector3" + } + ] + }, + { + "name": "to_global", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "local_point", + "type": "Vector3" + } + ] + }, + { + "name": "property_can_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "property_get_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + } + ], + "signals": [ + { + "name": "visibility_changed" + } + ], + "properties": [ + { + "type": "Transform3D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "Transform3D", + "name": "global_transform", + "setter": "set_global_transform", + "getter": "get_global_transform", + "index": -1 + }, + { + "type": "Vector3", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "Vector3", + "name": "rotation", + "setter": "set_rotation", + "getter": "get_rotation", + "index": -1 + }, + { + "type": "Quaternion", + "name": "quaternion", + "setter": "set_quaternion", + "getter": "get_quaternion", + "index": -1 + }, + { + "type": "Basis", + "name": "basis", + "setter": "set_basis", + "getter": "get_basis", + "index": -1 + }, + { + "type": "Vector3", + "name": "scale", + "setter": "set_scale", + "getter": "get_scale", + "index": -1 + }, + { + "type": "int", + "name": "rotation_edit_mode", + "setter": "set_rotation_edit_mode", + "getter": "get_rotation_edit_mode", + "index": -1 + }, + { + "type": "int", + "name": "rotation_order", + "setter": "set_rotation_order", + "getter": "get_rotation_order", + "index": -1 + }, + { + "type": "bool", + "name": "top_level", + "setter": "set_as_top_level", + "getter": "is_set_as_top_level", + "index": -1 + }, + { + "type": "bool", + "name": "visible", + "setter": "set_visible", + "getter": "is_visible", + "index": -1 + }, + { + "type": "NodePath", + "name": "visibility_parent", + "setter": "set_visibility_parent", + "getter": "get_visibility_parent", + "index": -1 + } + ] + }, + { + "name": "Node3DGizmo", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core" + }, + { + "name": "Noise", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_noise_1d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "x", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_noise_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "x", + "type": "float", + "meta": "float" + }, + { + "name": "y", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_noise_2dv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "v", + "type": "Vector2" + } + ] + }, + { + "name": "get_noise_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "x", + "type": "float", + "meta": "float" + }, + { + "name": "y", + "type": "float", + "meta": "float" + }, + { + "name": "z", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_noise_3dv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "v", + "type": "Vector3" + } + ] + }, + { + "name": "get_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270733, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "invert", + "type": "bool", + "default_value": "false" + }, + { + "name": "in_3d_space", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_seamless_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4023896239, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "invert", + "type": "bool", + "default_value": "false" + }, + { + "name": "in_3d_space", + "type": "bool", + "default_value": "false" + }, + { + "name": "skirt", + "type": "float", + "meta": "float", + "default_value": "0.1" + } + ] + } + ] + }, + { + "name": "NoiseTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_invert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "get_invert", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_in_3d_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_in_3d_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_generate_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "is_generating_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_seamless", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seamless", + "type": "bool" + } + ] + }, + { + "name": "get_seamless", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_seamless_blend_skirt", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seamless_blend_skirt", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_seamless_blend_skirt", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_as_normal_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "as_normal_map", + "type": "bool" + } + ] + }, + { + "name": "is_normal_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_bump_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bump_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bump_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_color_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gradient", + "type": "Gradient" + } + ] + }, + { + "name": "get_color_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Gradient" + } + }, + { + "name": "set_noise", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "noise", + "type": "Noise" + } + ] + }, + { + "name": "get_noise", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Noise" + } + } + ], + "properties": [ + { + "type": "int", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "bool", + "name": "invert", + "setter": "set_invert", + "getter": "get_invert", + "index": -1 + }, + { + "type": "bool", + "name": "in_3d_space", + "setter": "set_in_3d_space", + "getter": "is_in_3d_space", + "index": -1 + }, + { + "type": "bool", + "name": "generate_mipmaps", + "setter": "set_generate_mipmaps", + "getter": "is_generating_mipmaps", + "index": -1 + }, + { + "type": "bool", + "name": "seamless", + "setter": "set_seamless", + "getter": "get_seamless", + "index": -1 + }, + { + "type": "float", + "name": "seamless_blend_skirt", + "setter": "set_seamless_blend_skirt", + "getter": "get_seamless_blend_skirt", + "index": -1 + }, + { + "type": "bool", + "name": "as_normal_map", + "setter": "set_as_normal_map", + "getter": "is_normal_map", + "index": -1 + }, + { + "type": "float", + "name": "bump_strength", + "setter": "set_bump_strength", + "getter": "get_bump_strength", + "index": -1 + }, + { + "type": "Gradient", + "name": "color_ramp", + "setter": "set_color_ramp", + "getter": "get_color_ramp", + "index": -1 + }, + { + "type": "Noise", + "name": "noise", + "setter": "set_noise", + "getter": "get_noise", + "index": -1 + } + ] + }, + { + "name": "OGGPacketSequence", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_packet_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "packet_data", + "type": "Array" + } + ] + }, + { + "name": "get_packet_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_packet_granule_positions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "granule_positions", + "type": "Array" + } + ] + }, + { + "name": "get_packet_granule_positions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_sampling_rate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sampling_rate", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sampling_rate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Array", + "name": "packet_data", + "setter": "set_packet_data", + "getter": "get_packet_data", + "index": -1 + }, + { + "type": "Array", + "name": "granule_positions", + "setter": "set_packet_granule_positions", + "getter": "get_packet_granule_positions", + "index": -1 + }, + { + "type": "float", + "name": "sampling_rate", + "setter": "set_sampling_rate", + "getter": "get_sampling_rate", + "index": -1 + } + ] + }, + { + "name": "OGGPacketSequencePlayback", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core" + }, + { + "name": "ORMMaterial3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "BaseMaterial3D", + "api_type": "core" + }, + { + "name": "OS", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "VideoDriver", + "values": [ + { + "name": "VIDEO_DRIVER_VULKAN", + "value": 0 + }, + { + "name": "VIDEO_DRIVER_OPENGL_3", + "value": 1 + } + ] + }, + { + "name": "Weekday", + "values": [ + { + "name": "DAY_SUNDAY", + "value": 0 + }, + { + "name": "DAY_MONDAY", + "value": 1 + }, + { + "name": "DAY_TUESDAY", + "value": 2 + }, + { + "name": "DAY_WEDNESDAY", + "value": 3 + }, + { + "name": "DAY_THURSDAY", + "value": 4 + }, + { + "name": "DAY_FRIDAY", + "value": 5 + }, + { + "name": "DAY_SATURDAY", + "value": 6 + } + ] + }, + { + "name": "Month", + "values": [ + { + "name": "MONTH_JANUARY", + "value": 1 + }, + { + "name": "MONTH_FEBRUARY", + "value": 2 + }, + { + "name": "MONTH_MARCH", + "value": 3 + }, + { + "name": "MONTH_APRIL", + "value": 4 + }, + { + "name": "MONTH_MAY", + "value": 5 + }, + { + "name": "MONTH_JUNE", + "value": 6 + }, + { + "name": "MONTH_JULY", + "value": 7 + }, + { + "name": "MONTH_AUGUST", + "value": 8 + }, + { + "name": "MONTH_SEPTEMBER", + "value": 9 + }, + { + "name": "MONTH_OCTOBER", + "value": 10 + }, + { + "name": "MONTH_NOVEMBER", + "value": 11 + }, + { + "name": "MONTH_DECEMBER", + "value": 12 + } + ] + }, + { + "name": "SystemDir", + "values": [ + { + "name": "SYSTEM_DIR_DESKTOP", + "value": 0 + }, + { + "name": "SYSTEM_DIR_DCIM", + "value": 1 + }, + { + "name": "SYSTEM_DIR_DOCUMENTS", + "value": 2 + }, + { + "name": "SYSTEM_DIR_DOWNLOADS", + "value": 3 + }, + { + "name": "SYSTEM_DIR_MOVIES", + "value": 4 + }, + { + "name": "SYSTEM_DIR_MUSIC", + "value": 5 + }, + { + "name": "SYSTEM_DIR_PICTURES", + "value": 6 + }, + { + "name": "SYSTEM_DIR_RINGTONES", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "get_connected_midi_inputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "open_midi_inputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "close_midi_inputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "alert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "title", + "type": "String", + "default_value": "\"Alert!\"" + } + ] + }, + { + "name": "crash", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "message", + "type": "String" + } + ] + }, + { + "name": "set_low_processor_usage_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_in_low_processor_usage_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_low_processor_usage_mode_sleep_usec", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "usec", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_low_processor_usage_mode_sleep_usec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_processor_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_processor_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_executable_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "execute", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4217300428, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "arguments", + "type": "PackedStringArray" + }, + { + "name": "output", + "type": "Array", + "default_value": "[]" + }, + { + "name": "read_stderr", + "type": "bool", + "default_value": "false" + }, + { + "name": "open_console", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_process", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "arguments", + "type": "PackedStringArray" + }, + { + "name": "open_console", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_instance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "arguments", + "type": "PackedStringArray" + } + ] + }, + { + "name": "kill", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "pid", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "shell_open", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "uri", + "type": "String" + } + ] + }, + { + "name": "is_process_running", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "pid", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_process_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "variable", + "type": "String" + } + ] + }, + { + "name": "set_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "variable", + "type": "String" + }, + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "has_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "variable", + "type": "String" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_cmdline_args", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "delay_usec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188199, + "arguments": [ + { + "name": "usec", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "delay_msec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188199, + "arguments": [ + { + "name": "msec", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_locale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_locale_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_model_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_userfs_persistent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_stdout_verbose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "can_use_threads", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_debug_build", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "dump_memory_to_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "dump_resources_to_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "print_resources_in_use", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133278119, + "arguments": [ + { + "name": "short", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "print_all_resources", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 139138028, + "arguments": [ + { + "name": "tofile", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_static_memory_usage", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_static_memory_peak_usage", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "move_to_trash", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_user_data_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_system_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "dir", + "type": "enum::OS.SystemDir" + }, + { + "name": "shared_storage", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_config_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_data_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_cache_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_unique_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "print_all_textures_by_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "print_resources_by_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "types", + "type": "PackedStringArray" + } + ] + }, + { + "name": "get_keycode_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "code", + "type": "enum::Key" + } + ] + }, + { + "name": "is_keycode_unicode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "code", + "type": "int" + } + ] + }, + { + "name": "find_keycode_from_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Key" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, + { + "name": "set_use_file_access_save_and_swap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_thread_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_thread_caller_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_main_thread_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "has_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "tag_name", + "type": "String" + } + ] + }, + { + "name": "request_permission", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "request_permissions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_granted_permissions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "low_processor_usage_mode", + "setter": "set_low_processor_usage_mode", + "getter": "is_in_low_processor_usage_mode", + "index": -1 + }, + { + "type": "int", + "name": "low_processor_usage_mode_sleep_usec", + "setter": "set_low_processor_usage_mode_sleep_usec", + "getter": "get_low_processor_usage_mode_sleep_usec", + "index": -1 + } + ] + }, + { + "name": "Object", + "is_refcounted": false, + "is_instantiable": true, + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_POSTINITIALIZE", + "value": 0 + }, + { + "name": "NOTIFICATION_PREDELETE", + "value": 1 + } + ], + "enums": [ + { + "name": "ConnectFlags", + "values": [ + { + "name": "CONNECT_DEFERRED", + "value": 1 + }, + { + "name": "CONNECT_PERSIST", + "value": 2 + }, + { + "name": "CONNECT_ONESHOT", + "value": 4 + }, + { + "name": "CONNECT_REFERENCE_COUNTED", + "value": 8 + } + ] + } + ], + "methods": [ + { + "name": "get_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_class", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "class", + "type": "String" + } + ] + }, + { + "name": "set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "property", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "property", + "type": "String" + } + ] + }, + { + "name": "set_indexed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "property", + "type": "NodePath" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_indexed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "property", + "type": "NodePath" + } + ] + }, + { + "name": "get_property_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_method_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "notification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "what", + "type": "int", + "meta": "int32" + }, + { + "name": "reversed", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "to_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "get_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "set_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "script", + "type": "Variant" + } + ] + }, + { + "name": "get_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + }, + { + "name": "set_meta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "remove_meta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_meta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "default", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "has_meta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_meta_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "add_user_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "signal", + "type": "String" + }, + { + "name": "arguments", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "has_user_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "emit_signal", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 135374088, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "call", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 135374088, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "call_deferred", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 135374088, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "set_deferred", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "callv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + }, + { + "name": "arg_array", + "type": "Array" + } + ] + }, + { + "name": "has_method", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "has_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "get_signal_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_signal_connection_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "signal", + "type": "String" + } + ] + }, + { + "name": "get_incoming_connections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "connect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "signal", + "type": "StringName" + }, + { + "name": "callable", + "type": "Callable" + }, + { + "name": "binds", + "type": "Array", + "default_value": "[]" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "disconnect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "signal", + "type": "StringName" + }, + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "is_connected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "signal", + "type": "StringName" + }, + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "set_block_signals", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_blocking_signals", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "notify_property_list_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_message_translation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "can_translate_messages", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "tr", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "message", + "type": "StringName" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "tr_n", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971308, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "message", + "type": "StringName" + }, + { + "name": "plural_message", + "type": "StringName" + }, + { + "name": "n", + "type": "int", + "meta": "int32" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "is_queued_for_deletion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "script_changed" + }, + { + "name": "property_list_changed" + } + ] + }, + { + "name": "Occluder3D", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_vertices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "get_indices", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + } + ] + }, + { + "name": "OccluderInstance3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_bake_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_bake_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_bake_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_bake_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bake_simplification_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "simplification_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bake_simplification_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_occluder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "occluder", + "type": "Occluder3D" + } + ] + }, + { + "name": "get_occluder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Occluder3D" + } + } + ], + "properties": [ + { + "type": "Occluder3D", + "name": "occluder", + "setter": "set_occluder", + "getter": "get_occluder", + "index": -1 + }, + { + "type": "int", + "name": "bake_mask", + "setter": "set_bake_mask", + "getter": "get_bake_mask", + "index": -1 + }, + { + "type": "float", + "name": "bake_simplification_distance", + "setter": "set_bake_simplification_distance", + "getter": "get_bake_simplification_distance", + "index": -1 + } + ] + }, + { + "name": "OccluderPolygon2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "CullMode", + "values": [ + { + "name": "CULL_DISABLED", + "value": 0 + }, + { + "name": "CULL_CLOCKWISE", + "value": 1 + }, + { + "name": "CULL_COUNTER_CLOCKWISE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_closed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "closed", + "type": "bool" + } + ] + }, + { + "name": "is_closed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_cull_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cull_mode", + "type": "enum::OccluderPolygon2D.CullMode" + } + ] + }, + { + "name": "get_cull_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::OccluderPolygon2D.CullMode" + } + }, + { + "name": "set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "closed", + "setter": "set_closed", + "getter": "is_closed", + "index": -1 + }, + { + "type": "int", + "name": "cull_mode", + "setter": "set_cull_mode", + "getter": "get_cull_mode", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "polygon", + "setter": "set_polygon", + "getter": "get_polygon", + "index": -1 + } + ] + }, + { + "name": "OmniLight3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Light3D", + "api_type": "core", + "enums": [ + { + "name": "ShadowMode", + "values": [ + { + "name": "SHADOW_DUAL_PARABOLOID", + "value": 0 + }, + { + "name": "SHADOW_CUBE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_shadow_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::OmniLight3D.ShadowMode" + } + ] + }, + { + "name": "get_shadow_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::OmniLight3D.ShadowMode" + } + } + ], + "properties": [ + { + "type": "float", + "name": "omni_range", + "setter": "set_param", + "getter": "get_param", + "index": 3 + }, + { + "type": "float", + "name": "omni_attenuation", + "setter": "set_param", + "getter": "get_param", + "index": 5 + }, + { + "type": "int", + "name": "omni_shadow_mode", + "setter": "set_shadow_mode", + "getter": "get_shadow_mode", + "index": -1 + } + ] + }, + { + "name": "OpenXRAction", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "ActionType", + "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": 134188166, + "arguments": [ + { + "name": "localized_name", + "type": "String" + } + ] + }, + { + "name": "get_localized_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_action_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "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": 135338183, + "return_value": { + "type": "enum::OpenXRAction.ActionType" + } + }, + { + "name": "set_toplevel_paths", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "toplevel_paths", + "type": "PackedStringArray" + } + ] + }, + { + "name": "get_toplevel_paths", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + } + ], + "properties": [ + { + "type": "String", + "name": "localized_name", + "setter": "set_localized_name", + "getter": "get_localized_name", + "index": -1 + }, + { + "type": "int", + "name": "action_type", + "setter": "set_action_type", + "getter": "get_action_type", + "index": -1 + }, + { + "type": "Array", + "name": "toplevel_paths", + "setter": "set_toplevel_paths", + "getter": "get_toplevel_paths", + "index": -1 + } + ] + }, + { + "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": 134188166, + "arguments": [ + { + "name": "action_sets", + "type": "Array" + } + ] + }, + { + "name": "get_action_sets", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_action_set_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "find_action_set", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "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": 135374120, + "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": 134188166, + "arguments": [ + { + "name": "action_set", + "type": "OpenXRActionSet" + } + ] + }, + { + "name": "remove_action_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action_set", + "type": "OpenXRActionSet" + } + ] + }, + { + "name": "set_interaction_profiles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interaction_profiles", + "type": "Array" + } + ] + }, + { + "name": "get_interaction_profiles", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_interaction_profile_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "find_interaction_profile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "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": 135374120, + "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": 134188166, + "arguments": [ + { + "name": "interaction_profile", + "type": "OpenXRInteractionProfile" + } + ] + }, + { + "name": "remove_interaction_profile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interaction_profile", + "type": "OpenXRInteractionProfile" + } + ] + }, + { + "name": "create_default_action_sets", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "OpenXRActionSet", + "name": "action_sets", + "setter": "set_action_sets", + "getter": "get_action_sets", + "index": -1 + }, + { + "type": "OpenXRInteractionProfile", + "name": "interaction_profiles", + "setter": "set_interaction_profiles", + "getter": "get_interaction_profiles", + "index": -1 + } + ] + }, + { + "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": 134188166, + "arguments": [ + { + "name": "localized_name", + "type": "String" + } + ] + }, + { + "name": "get_localized_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_action_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_actions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "actions", + "type": "Array" + } + ] + }, + { + "name": "get_actions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "OpenXRAction" + } + ] + }, + { + "name": "remove_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "OpenXRAction" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "localized_name", + "setter": "set_localized_name", + "getter": "get_localized_name", + "index": -1 + }, + { + "type": "int", + "name": "priority", + "setter": "set_priority", + "getter": "get_priority", + "index": -1 + }, + { + "type": "OpenXRAction", + "name": "actions", + "setter": "set_actions", + "getter": "get_actions", + "index": -1 + } + ] + }, + { + "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": 134188166, + "arguments": [ + { + "name": "action", + "type": "OpenXRAction" + } + ] + }, + { + "name": "get_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "OpenXRAction" + } + }, + { + "name": "get_path_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_paths", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "paths", + "type": "PackedStringArray" + } + ] + }, + { + "name": "get_paths", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "has_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "arg0", + "type": "String" + } + ] + }, + { + "name": "add_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "remove_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "OpenXRAction", + "name": "action", + "setter": "set_action", + "getter": "get_action", + "index": -1 + }, + { + "type": "Array", + "name": "paths", + "setter": "set_paths", + "getter": "get_paths", + "index": -1 + } + ] + }, + { + "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": 134188166, + "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": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_binding_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_binding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "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": 134188166, + "arguments": [ + { + "name": "bindings", + "type": "Array" + } + ] + }, + { + "name": "get_bindings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "String", + "name": "interaction_profile_path", + "setter": "set_interaction_profile_path", + "getter": "get_interaction_profile_path", + "index": -1 + }, + { + "type": "OpenXRIPBinding", + "name": "bindings", + "setter": "set_bindings", + "getter": "get_bindings", + "index": -1 + } + ] + }, + { + "name": "OpenXRInterface", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "XRInterface", + "api_type": "core", + "signals": [ + { + "name": "session_begun" + }, + { + "name": "session_stopping" + }, + { + "name": "session_focussed" + }, + { + "name": "session_visible" + }, + { + "name": "pose_recentered" + } + ] + }, + { + "name": "OptimizedTranslation", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Translation", + "api_type": "core", + "methods": [ + { + "name": "generate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "from", + "type": "Translation" + } + ] + } + ] + }, + { + "name": "OptionButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Button", + "api_type": "core", + "methods": [ + { + "name": "add_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "add_icon_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_item_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "set_item_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_item_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "set_item_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_metadata", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "metadata", + "type": "Variant" + } + ] + }, + { + "name": "set_item_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tooltip", + "type": "String" + } + ] + }, + { + "name": "get_item_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_separator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_separator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 139138028, + "arguments": [ + { + "name": "text", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_selected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selected_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selected_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + }, + { + "name": "remove_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_popup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PopupMenu" + } + }, + { + "name": "set_item_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "has_selectable_items", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_selectable_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "from_last", + "type": "bool", + "default_value": "false" + } + ] + } + ], + "signals": [ + { + "name": "item_selected", + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "item_focused", + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "Items,popup/item_", + "name": "item_count", + "setter": "set_item_count", + "getter": "get_item_count", + "index": -1 + }, + { + "type": "int", + "name": "selected", + "setter": "_select_int", + "getter": "get_selected", + "index": -1 + } + ] + }, + { + "name": "PCKPacker", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "pck_start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3466557870, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "pck_name", + "type": "String" + }, + { + "name": "alignment", + "type": "int", + "meta": "int32", + "default_value": "32" + }, + { + "name": "key", + "type": "String", + "default_value": "\"0000000000000000000000000000000000000000000000000000000000000000\"" + }, + { + "name": "encrypt_directory", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "pck_path", + "type": "String" + }, + { + "name": "source_path", + "type": "String" + }, + { + "name": "encrypt", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "flush", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "verbose", + "type": "bool", + "default_value": "false" + } + ] + } + ] + }, + { + "name": "PackedDataContainer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "pack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "PackedDataContainerRef", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "PackedScene", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "GenEditState", + "values": [ + { + "name": "GEN_EDIT_STATE_DISABLED", + "value": 0 + }, + { + "name": "GEN_EDIT_STATE_INSTANCE", + "value": 1 + }, + { + "name": "GEN_EDIT_STATE_MAIN", + "value": 2 + }, + { + "name": "GEN_EDIT_STATE_MAIN_INHERITED", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "pack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "Node" + } + ] + }, + { + "name": "instantiate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "edit_state", + "type": "enum::PackedScene.GenEditState", + "default_value": "0" + } + ] + }, + { + "name": "can_instantiate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SceneState" + } + } + ] + }, + { + "name": "PacketPeer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_var", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "put_var", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "var", + "type": "Variant" + }, + { + "name": "full_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_packet", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "put_packet", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_packet_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "get_available_packet_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_encode_buffer_max_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_encode_buffer_max_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_size", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "encode_buffer_max_size", + "setter": "set_encode_buffer_max_size", + "getter": "get_encode_buffer_max_size", + "index": -1 + } + ] + }, + { + "name": "PacketPeerDTLS", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PacketPeer", + "api_type": "core", + "enums": [ + { + "name": "Status", + "values": [ + { + "name": "STATUS_DISCONNECTED", + "value": 0 + }, + { + "name": "STATUS_HANDSHAKING", + "value": 1 + }, + { + "name": "STATUS_CONNECTED", + "value": 2 + }, + { + "name": "STATUS_ERROR", + "value": 3 + }, + { + "name": "STATUS_ERROR_HOSTNAME_MISMATCH", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "connect_to_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2738324083, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "packet_peer", + "type": "PacketPeerUDP" + }, + { + "name": "validate_certs", + "type": "bool", + "default_value": "true" + }, + { + "name": "for_hostname", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "valid_certificate", + "type": "X509Certificate", + "default_value": "null" + } + ] + }, + { + "name": "get_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::PacketPeerDTLS.Status" + } + }, + { + "name": "disconnect_from_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "PacketPeerExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PacketPeer", + "api_type": "core", + "methods": [ + { + "name": "_get_packet", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "r_buffer", + "type": "const uint8_t **" + }, + { + "name": "r_buffer_size", + "type": "int32_t*" + } + ] + }, + { + "name": "_put_packet", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_buffer", + "type": "const uint8_t*" + }, + { + "name": "p_buffer_size", + "type": "int" + } + ] + }, + { + "name": "_get_available_packet_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_max_packet_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + } + ] + }, + { + "name": "PacketPeerStream", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PacketPeer", + "api_type": "core", + "methods": [ + { + "name": "set_stream_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "peer", + "type": "StreamPeer" + } + ] + }, + { + "name": "get_stream_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StreamPeer" + } + }, + { + "name": "set_input_buffer_max_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_size_bytes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_output_buffer_max_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_size_bytes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_input_buffer_max_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_output_buffer_max_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "input_buffer_max_size", + "setter": "set_input_buffer_max_size", + "getter": "get_input_buffer_max_size", + "index": -1 + }, + { + "type": "int", + "name": "output_buffer_max_size", + "setter": "set_output_buffer_max_size", + "getter": "get_output_buffer_max_size", + "index": -1 + }, + { + "type": "StreamPeer", + "name": "stream_peer", + "setter": "set_stream_peer", + "getter": "get_stream_peer", + "index": -1 + } + ] + }, + { + "name": "PacketPeerUDP", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PacketPeer", + "api_type": "core", + "methods": [ + { + "name": "bind", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1667558042, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "bind_address", + "type": "String", + "default_value": "\"*\"" + }, + { + "name": "recv_buf_size", + "type": "int", + "meta": "int32", + "default_value": "65536" + } + ] + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "wait", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "is_bound", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "connect_to_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_socket_connected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_packet_ip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_packet_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_local_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_dest_address", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_broadcast_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "join_multicast_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "multicast_address", + "type": "String" + }, + { + "name": "interface_name", + "type": "String" + } + ] + }, + { + "name": "leave_multicast_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "multicast_address", + "type": "String" + }, + { + "name": "interface_name", + "type": "String" + } + ] + } + ] + }, + { + "name": "Panel", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core" + }, + { + "name": "PanelContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core" + }, + { + "name": "PanoramaSkyMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "methods": [ + { + "name": "set_panorama", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_panorama", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_filtering_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_filtering_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "panorama", + "setter": "set_panorama", + "getter": "get_panorama", + "index": -1 + }, + { + "type": "bool", + "name": "filter", + "setter": "set_filtering_enabled", + "getter": "is_filtering_enabled", + "index": -1 + } + ] + }, + { + "name": "ParallaxBackground", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "CanvasLayer", + "api_type": "core", + "methods": [ + { + "name": "set_scroll_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_scroll_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_scroll_base_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_scroll_base_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_scroll_base_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "get_scroll_base_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_limit_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_limit_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_limit_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_limit_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_ignore_camera_zoom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ignore", + "type": "bool" + } + ] + }, + { + "name": "is_ignore_camera_zoom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "scroll_offset", + "setter": "set_scroll_offset", + "getter": "get_scroll_offset", + "index": -1 + }, + { + "type": "Vector2", + "name": "scroll_base_offset", + "setter": "set_scroll_base_offset", + "getter": "get_scroll_base_offset", + "index": -1 + }, + { + "type": "Vector2", + "name": "scroll_base_scale", + "setter": "set_scroll_base_scale", + "getter": "get_scroll_base_scale", + "index": -1 + }, + { + "type": "Vector2", + "name": "scroll_limit_begin", + "setter": "set_limit_begin", + "getter": "get_limit_begin", + "index": -1 + }, + { + "type": "Vector2", + "name": "scroll_limit_end", + "setter": "set_limit_end", + "getter": "get_limit_end", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_ignore_camera_zoom", + "setter": "set_ignore_camera_zoom", + "getter": "is_ignore_camera_zoom", + "index": -1 + } + ] + }, + { + "name": "ParallaxLayer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_motion_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "get_motion_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_motion_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_motion_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_mirroring", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mirror", + "type": "Vector2" + } + ] + }, + { + "name": "get_mirroring", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "motion_scale", + "setter": "set_motion_scale", + "getter": "get_motion_scale", + "index": -1 + }, + { + "type": "Vector2", + "name": "motion_offset", + "setter": "set_motion_offset", + "getter": "get_motion_offset", + "index": -1 + }, + { + "type": "Vector2", + "name": "motion_mirroring", + "setter": "set_mirroring", + "getter": "get_mirroring", + "index": -1 + } + ] + }, + { + "name": "ParticlesMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "enums": [ + { + "name": "Parameter", + "values": [ + { + "name": "PARAM_INITIAL_LINEAR_VELOCITY", + "value": 0 + }, + { + "name": "PARAM_ANGULAR_VELOCITY", + "value": 1 + }, + { + "name": "PARAM_ORBIT_VELOCITY", + "value": 2 + }, + { + "name": "PARAM_LINEAR_ACCEL", + "value": 3 + }, + { + "name": "PARAM_RADIAL_ACCEL", + "value": 4 + }, + { + "name": "PARAM_TANGENTIAL_ACCEL", + "value": 5 + }, + { + "name": "PARAM_DAMPING", + "value": 6 + }, + { + "name": "PARAM_ANGLE", + "value": 7 + }, + { + "name": "PARAM_SCALE", + "value": 8 + }, + { + "name": "PARAM_HUE_VARIATION", + "value": 9 + }, + { + "name": "PARAM_ANIM_SPEED", + "value": 10 + }, + { + "name": "PARAM_ANIM_OFFSET", + "value": 11 + }, + { + "name": "PARAM_MAX", + "value": 12 + } + ] + }, + { + "name": "ParticleFlags", + "values": [ + { + "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", + "value": 0 + }, + { + "name": "PARTICLE_FLAG_ROTATE_Y", + "value": 1 + }, + { + "name": "PARTICLE_FLAG_DISABLE_Z", + "value": 2 + }, + { + "name": "PARTICLE_FLAG_MAX", + "value": 3 + } + ] + }, + { + "name": "EmissionShape", + "values": [ + { + "name": "EMISSION_SHAPE_POINT", + "value": 0 + }, + { + "name": "EMISSION_SHAPE_SPHERE", + "value": 1 + }, + { + "name": "EMISSION_SHAPE_SPHERE_SURFACE", + "value": 2 + }, + { + "name": "EMISSION_SHAPE_BOX", + "value": 3 + }, + { + "name": "EMISSION_SHAPE_POINTS", + "value": 4 + }, + { + "name": "EMISSION_SHAPE_DIRECTED_POINTS", + "value": 5 + }, + { + "name": "EMISSION_SHAPE_RING", + "value": 6 + }, + { + "name": "EMISSION_SHAPE_MAX", + "value": 7 + } + ] + }, + { + "name": "SubEmitterMode", + "values": [ + { + "name": "SUB_EMITTER_DISABLED", + "value": 0 + }, + { + "name": "SUB_EMITTER_CONSTANT", + "value": 1 + }, + { + "name": "SUB_EMITTER_AT_END", + "value": 2 + }, + { + "name": "SUB_EMITTER_AT_COLLISION", + "value": 3 + }, + { + "name": "SUB_EMITTER_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "Vector3" + } + ] + }, + { + "name": "get_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_spread", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_spread", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_flatness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_flatness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_param_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::ParticlesMaterial.Parameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::ParticlesMaterial.Parameter" + } + ] + }, + { + "name": "set_param_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::ParticlesMaterial.Parameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::ParticlesMaterial.Parameter" + } + ] + }, + { + "name": "set_param_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::ParticlesMaterial.Parameter" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_param_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "param", + "type": "enum::ParticlesMaterial.Parameter" + } + ] + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_color_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ramp", + "type": "Texture2D" + } + ] + }, + { + "name": "get_color_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_color_initial_ramp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ramp", + "type": "Texture2D" + } + ] + }, + { + "name": "get_color_initial_ramp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_particle_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particle_flag", + "type": "enum::ParticlesMaterial.ParticleFlags" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_particle_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "particle_flag", + "type": "enum::ParticlesMaterial.ParticleFlags" + } + ] + }, + { + "name": "set_emission_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::ParticlesMaterial.EmissionShape" + } + ] + }, + { + "name": "get_emission_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ParticlesMaterial.EmissionShape" + } + }, + { + "name": "set_emission_sphere_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_sphere_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_box_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_emission_box_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_emission_point_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_emission_point_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_emission_normal_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_emission_normal_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_emission_color_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_emission_color_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_emission_point_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "point_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_emission_point_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_emission_ring_axis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + } + ] + }, + { + "name": "get_emission_ring_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_emission_ring_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_ring_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_ring_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_ring_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_emission_ring_inner_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inner_radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_emission_ring_inner_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "accel_vec", + "type": "Vector3" + } + ] + }, + { + "name": "set_lifetime_randomness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "randomness", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_lifetime_randomness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_sub_emitter_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ParticlesMaterial.SubEmitterMode" + } + }, + { + "name": "set_sub_emitter_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::ParticlesMaterial.SubEmitterMode" + } + ] + }, + { + "name": "get_sub_emitter_frequency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_sub_emitter_frequency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hz", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_sub_emitter_amount_at_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sub_emitter_amount_at_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sub_emitter_keep_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_sub_emitter_keep_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_attractor_interaction_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_attractor_interaction_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_use_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "bool" + } + ] + }, + { + "name": "is_collision_using_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_friction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "friction", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_collision_friction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_collision_bounce", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bounce", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_collision_bounce", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "lifetime_randomness", + "setter": "set_lifetime_randomness", + "getter": "get_lifetime_randomness", + "index": -1 + }, + { + "type": "int", + "name": "emission_shape", + "setter": "set_emission_shape", + "getter": "get_emission_shape", + "index": -1 + }, + { + "type": "float", + "name": "emission_sphere_radius", + "setter": "set_emission_sphere_radius", + "getter": "get_emission_sphere_radius", + "index": -1 + }, + { + "type": "Vector3", + "name": "emission_box_extents", + "setter": "set_emission_box_extents", + "getter": "get_emission_box_extents", + "index": -1 + }, + { + "type": "Texture2D", + "name": "emission_point_texture", + "setter": "set_emission_point_texture", + "getter": "get_emission_point_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "emission_normal_texture", + "setter": "set_emission_normal_texture", + "getter": "get_emission_normal_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "emission_color_texture", + "setter": "set_emission_color_texture", + "getter": "get_emission_color_texture", + "index": -1 + }, + { + "type": "int", + "name": "emission_point_count", + "setter": "set_emission_point_count", + "getter": "get_emission_point_count", + "index": -1 + }, + { + "type": "Vector3", + "name": "emission_ring_axis", + "setter": "set_emission_ring_axis", + "getter": "get_emission_ring_axis", + "index": -1 + }, + { + "type": "float", + "name": "emission_ring_height", + "setter": "set_emission_ring_height", + "getter": "get_emission_ring_height", + "index": -1 + }, + { + "type": "float", + "name": "emission_ring_radius", + "setter": "set_emission_ring_radius", + "getter": "get_emission_ring_radius", + "index": -1 + }, + { + "type": "float", + "name": "emission_ring_inner_radius", + "setter": "set_emission_ring_inner_radius", + "getter": "get_emission_ring_inner_radius", + "index": -1 + }, + { + "type": "bool", + "name": "particle_flag_align_y", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 0 + }, + { + "type": "bool", + "name": "particle_flag_rotate_y", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 1 + }, + { + "type": "bool", + "name": "particle_flag_disable_z", + "setter": "set_particle_flag", + "getter": "get_particle_flag", + "index": 2 + }, + { + "type": "Vector3", + "name": "direction", + "setter": "set_direction", + "getter": "get_direction", + "index": -1 + }, + { + "type": "float", + "name": "spread", + "setter": "set_spread", + "getter": "get_spread", + "index": -1 + }, + { + "type": "float", + "name": "flatness", + "setter": "set_flatness", + "getter": "get_flatness", + "index": -1 + }, + { + "type": "Vector3", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + }, + { + "type": "float", + "name": "initial_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 0 + }, + { + "type": "float", + "name": "initial_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 0 + }, + { + "type": "float", + "name": "angular_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 1 + }, + { + "type": "float", + "name": "angular_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 1 + }, + { + "type": "CurveTexture", + "name": "angular_velocity_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 1 + }, + { + "type": "float", + "name": "orbit_velocity_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 2 + }, + { + "type": "float", + "name": "orbit_velocity_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 2 + }, + { + "type": "CurveTexture", + "name": "orbit_velocity_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 2 + }, + { + "type": "float", + "name": "linear_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 3 + }, + { + "type": "float", + "name": "linear_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 3 + }, + { + "type": "CurveTexture", + "name": "linear_accel_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 3 + }, + { + "type": "float", + "name": "radial_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 4 + }, + { + "type": "float", + "name": "radial_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 4 + }, + { + "type": "CurveTexture", + "name": "radial_accel_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 4 + }, + { + "type": "float", + "name": "tangential_accel_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 5 + }, + { + "type": "float", + "name": "tangential_accel_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 5 + }, + { + "type": "CurveTexture", + "name": "tangential_accel_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 5 + }, + { + "type": "float", + "name": "damping_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 6 + }, + { + "type": "float", + "name": "damping_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 6 + }, + { + "type": "CurveTexture", + "name": "damping_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 6 + }, + { + "type": "float", + "name": "angle_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 7 + }, + { + "type": "float", + "name": "angle_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 7 + }, + { + "type": "CurveTexture", + "name": "angle_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 7 + }, + { + "type": "float", + "name": "scale_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 8 + }, + { + "type": "float", + "name": "scale_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 8 + }, + { + "type": "CurveTexture,CurveXYZTexture", + "name": "scale_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 8 + }, + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "GradientTexture1D", + "name": "color_ramp", + "setter": "set_color_ramp", + "getter": "get_color_ramp", + "index": -1 + }, + { + "type": "GradientTexture1D", + "name": "color_initial_ramp", + "setter": "set_color_initial_ramp", + "getter": "get_color_initial_ramp", + "index": -1 + }, + { + "type": "float", + "name": "hue_variation_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 9 + }, + { + "type": "float", + "name": "hue_variation_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 9 + }, + { + "type": "CurveTexture", + "name": "hue_variation_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 9 + }, + { + "type": "float", + "name": "anim_speed_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 10 + }, + { + "type": "float", + "name": "anim_speed_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 10 + }, + { + "type": "CurveTexture", + "name": "anim_speed_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 10 + }, + { + "type": "float", + "name": "anim_offset_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 11 + }, + { + "type": "float", + "name": "anim_offset_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 11 + }, + { + "type": "CurveTexture", + "name": "anim_offset_curve", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 11 + }, + { + "type": "int", + "name": "sub_emitter_mode", + "setter": "set_sub_emitter_mode", + "getter": "get_sub_emitter_mode", + "index": -1 + }, + { + "type": "float", + "name": "sub_emitter_frequency", + "setter": "set_sub_emitter_frequency", + "getter": "get_sub_emitter_frequency", + "index": -1 + }, + { + "type": "int", + "name": "sub_emitter_amount_at_end", + "setter": "set_sub_emitter_amount_at_end", + "getter": "get_sub_emitter_amount_at_end", + "index": -1 + }, + { + "type": "bool", + "name": "sub_emitter_keep_velocity", + "setter": "set_sub_emitter_keep_velocity", + "getter": "get_sub_emitter_keep_velocity", + "index": -1 + }, + { + "type": "bool", + "name": "attractor_interaction_enabled", + "setter": "set_attractor_interaction_enabled", + "getter": "is_attractor_interaction_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collision_enabled", + "setter": "set_collision_enabled", + "getter": "is_collision_enabled", + "index": -1 + }, + { + "type": "float", + "name": "collision_friction", + "setter": "set_collision_friction", + "getter": "get_collision_friction", + "index": -1 + }, + { + "type": "float", + "name": "collision_bounce", + "setter": "set_collision_bounce", + "getter": "get_collision_bounce", + "index": -1 + }, + { + "type": "bool", + "name": "collision_use_scale", + "setter": "set_collision_use_scale", + "getter": "is_collision_using_scale", + "index": -1 + } + ] + }, + { + "name": "Path2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve2D" + } + ] + }, + { + "name": "get_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve2D" + } + } + ], + "properties": [ + { + "type": "Curve2D", + "name": "curve", + "setter": "set_curve", + "getter": "get_curve", + "index": -1 + } + ] + }, + { + "name": "Path3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve3D" + } + ] + }, + { + "name": "get_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve3D" + } + } + ], + "signals": [ + { + "name": "curve_changed" + } + ], + "properties": [ + { + "type": "Curve3D", + "name": "curve", + "setter": "set_curve", + "getter": "get_curve", + "index": -1 + } + ] + }, + { + "name": "PathFollow2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_h_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "h_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_h_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_v_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "v_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_v_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_unit_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unit_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_unit_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rotates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_rotating", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_cubic_interpolation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_cubic_interpolation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop", + "type": "bool" + } + ] + }, + { + "name": "has_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_lookahead", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lookahead", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_lookahead", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "float", + "name": "unit_offset", + "setter": "set_unit_offset", + "getter": "get_unit_offset", + "index": -1 + }, + { + "type": "float", + "name": "h_offset", + "setter": "set_h_offset", + "getter": "get_h_offset", + "index": -1 + }, + { + "type": "float", + "name": "v_offset", + "setter": "set_v_offset", + "getter": "get_v_offset", + "index": -1 + }, + { + "type": "bool", + "name": "rotates", + "setter": "set_rotates", + "getter": "is_rotating", + "index": -1 + }, + { + "type": "bool", + "name": "cubic_interp", + "setter": "set_cubic_interpolation", + "getter": "get_cubic_interpolation", + "index": -1 + }, + { + "type": "bool", + "name": "loop", + "setter": "set_loop", + "getter": "has_loop", + "index": -1 + }, + { + "type": "float", + "name": "lookahead", + "setter": "set_lookahead", + "getter": "get_lookahead", + "index": -1 + } + ] + }, + { + "name": "PathFollow3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "enums": [ + { + "name": "RotationMode", + "values": [ + { + "name": "ROTATION_NONE", + "value": 0 + }, + { + "name": "ROTATION_Y", + "value": 1 + }, + { + "name": "ROTATION_XY", + "value": 2 + }, + { + "name": "ROTATION_XYZ", + "value": 3 + }, + { + "name": "ROTATION_ORIENTED", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_h_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "h_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_h_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_v_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "v_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_v_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_unit_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "unit_offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_unit_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rotation_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rotation_mode", + "type": "enum::PathFollow3D.RotationMode" + } + ] + }, + { + "name": "get_rotation_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::PathFollow3D.RotationMode" + } + }, + { + "name": "set_cubic_interpolation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_cubic_interpolation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "loop", + "type": "bool" + } + ] + }, + { + "name": "has_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "float", + "name": "unit_offset", + "setter": "set_unit_offset", + "getter": "get_unit_offset", + "index": -1 + }, + { + "type": "float", + "name": "h_offset", + "setter": "set_h_offset", + "getter": "get_h_offset", + "index": -1 + }, + { + "type": "float", + "name": "v_offset", + "setter": "set_v_offset", + "getter": "get_v_offset", + "index": -1 + }, + { + "type": "int", + "name": "rotation_mode", + "setter": "set_rotation_mode", + "getter": "get_rotation_mode", + "index": -1 + }, + { + "type": "bool", + "name": "cubic_interp", + "setter": "set_cubic_interpolation", + "getter": "get_cubic_interpolation", + "index": -1 + }, + { + "type": "bool", + "name": "loop", + "setter": "set_loop", + "getter": "has_loop", + "index": -1 + } + ] + }, + { + "name": "Performance", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "Monitor", + "values": [ + { + "name": "TIME_FPS", + "value": 0 + }, + { + "name": "TIME_PROCESS", + "value": 1 + }, + { + "name": "TIME_PHYSICS_PROCESS", + "value": 2 + }, + { + "name": "MEMORY_STATIC", + "value": 3 + }, + { + "name": "MEMORY_STATIC_MAX", + "value": 4 + }, + { + "name": "MEMORY_MESSAGE_BUFFER_MAX", + "value": 5 + }, + { + "name": "OBJECT_COUNT", + "value": 6 + }, + { + "name": "OBJECT_RESOURCE_COUNT", + "value": 7 + }, + { + "name": "OBJECT_NODE_COUNT", + "value": 8 + }, + { + "name": "OBJECT_ORPHAN_NODE_COUNT", + "value": 9 + }, + { + "name": "RENDER_TOTAL_OBJECTS_IN_FRAME", + "value": 10 + }, + { + "name": "RENDER_TOTAL_PRIMITIVES_IN_FRAME", + "value": 11 + }, + { + "name": "RENDER_TOTAL_DRAW_CALLS_IN_FRAME", + "value": 12 + }, + { + "name": "RENDER_VIDEO_MEM_USED", + "value": 13 + }, + { + "name": "RENDER_TEXTURE_MEM_USED", + "value": 14 + }, + { + "name": "RENDER_BUFFER_MEM_USED", + "value": 15 + }, + { + "name": "PHYSICS_2D_ACTIVE_OBJECTS", + "value": 16 + }, + { + "name": "PHYSICS_2D_COLLISION_PAIRS", + "value": 17 + }, + { + "name": "PHYSICS_2D_ISLAND_COUNT", + "value": 18 + }, + { + "name": "PHYSICS_3D_ACTIVE_OBJECTS", + "value": 19 + }, + { + "name": "PHYSICS_3D_COLLISION_PAIRS", + "value": 20 + }, + { + "name": "PHYSICS_3D_ISLAND_COUNT", + "value": 21 + }, + { + "name": "AUDIO_OUTPUT_LATENCY", + "value": 22 + }, + { + "name": "MONITOR_MAX", + "value": 23 + } + ] + } + ], + "methods": [ + { + "name": "get_monitor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "monitor", + "type": "enum::Performance.Monitor" + } + ] + }, + { + "name": "add_custom_monitor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "StringName" + }, + { + "name": "callable", + "type": "Callable" + }, + { + "name": "arguments", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "remove_custom_monitor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "StringName" + } + ] + }, + { + "name": "has_custom_monitor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "StringName" + } + ] + }, + { + "name": "get_custom_monitor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "id", + "type": "StringName" + } + ] + }, + { + "name": "get_monitor_modification_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_custom_monitor_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "PhysicalBone2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "RigidDynamicBody2D", + "api_type": "core", + "methods": [ + { + "name": "get_joint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Joint2D" + } + }, + { + "name": "get_auto_configure_joint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_configure_joint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "auto_configure_joint", + "type": "bool" + } + ] + }, + { + "name": "set_simulate_physics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "simulate_physics", + "type": "bool" + } + ] + }, + { + "name": "get_simulate_physics", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_simulating_physics", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_bone2d_nodepath", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_bone2d_nodepath", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_bone2d_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone2d_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_follow_bone_when_simulating", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "follow_bone", + "type": "bool" + } + ] + }, + { + "name": "get_follow_bone_when_simulating", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "bone2d_nodepath", + "setter": "set_bone2d_nodepath", + "getter": "get_bone2d_nodepath", + "index": -1 + }, + { + "type": "int", + "name": "bone2d_index", + "setter": "set_bone2d_index", + "getter": "get_bone2d_index", + "index": -1 + }, + { + "type": "bool", + "name": "auto_configure_joint", + "setter": "set_auto_configure_joint", + "getter": "get_auto_configure_joint", + "index": -1 + }, + { + "type": "bool", + "name": "simulate_physics", + "setter": "set_simulate_physics", + "getter": "get_simulate_physics", + "index": -1 + }, + { + "type": "bool", + "name": "follow_bone_when_simulating", + "setter": "set_follow_bone_when_simulating", + "getter": "get_follow_bone_when_simulating", + "index": -1 + } + ] + }, + { + "name": "PhysicalBone3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody3D", + "api_type": "core", + "enums": [ + { + "name": "DampMode", + "values": [ + { + "name": "DAMP_MODE_COMBINE", + "value": 0 + }, + { + "name": "DAMP_MODE_REPLACE", + "value": 1 + } + ] + }, + { + "name": "JointType", + "values": [ + { + "name": "JOINT_TYPE_NONE", + "value": 0 + }, + { + "name": "JOINT_TYPE_PIN", + "value": 1 + }, + { + "name": "JOINT_TYPE_CONE", + "value": 2 + }, + { + "name": "JOINT_TYPE_HINGE", + "value": 3 + }, + { + "name": "JOINT_TYPE_SLIDER", + "value": 4 + }, + { + "name": "JOINT_TYPE_6DOF", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "_integrate_forces", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "state", + "type": "PhysicsDirectBodyState3D" + } + ] + }, + { + "name": "apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "set_joint_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint_type", + "type": "enum::PhysicalBone3D.JointType" + } + ] + }, + { + "name": "get_joint_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::PhysicalBone3D.JointType" + } + }, + { + "name": "set_joint_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Transform3D" + } + ] + }, + { + "name": "get_joint_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_joint_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "euler", + "type": "Vector3" + } + ] + }, + { + "name": "get_joint_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_body_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Transform3D" + } + ] + }, + { + "name": "get_body_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "get_simulate_physics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_simulating_physics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_bone_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_friction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "friction", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_friction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bounce", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bounce", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bounce", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_gravity_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_damp_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp_mode", + "type": "enum::PhysicalBone3D.DampMode" + } + ] + }, + { + "name": "get_linear_damp_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::PhysicalBone3D.DampMode" + } + }, + { + "name": "set_angular_damp_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp_mode", + "type": "enum::PhysicalBone3D.DampMode" + } + ] + }, + { + "name": "get_angular_damp_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::PhysicalBone3D.DampMode" + } + }, + { + "name": "set_linear_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_angular_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_use_custom_integrator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_custom_integrator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_can_sleep", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "able_to_sleep", + "type": "bool" + } + ] + }, + { + "name": "is_able_to_sleep", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "joint_type", + "setter": "set_joint_type", + "getter": "get_joint_type", + "index": -1 + }, + { + "type": "Transform3D", + "name": "joint_offset", + "setter": "set_joint_offset", + "getter": "get_joint_offset", + "index": -1 + }, + { + "type": "Vector3", + "name": "joint_rotation", + "setter": "set_joint_rotation", + "getter": "get_joint_rotation", + "index": -1 + }, + { + "type": "Transform3D", + "name": "body_offset", + "setter": "set_body_offset", + "getter": "get_body_offset", + "index": -1 + }, + { + "type": "float", + "name": "mass", + "setter": "set_mass", + "getter": "get_mass", + "index": -1 + }, + { + "type": "float", + "name": "friction", + "setter": "set_friction", + "getter": "get_friction", + "index": -1 + }, + { + "type": "float", + "name": "bounce", + "setter": "set_bounce", + "getter": "get_bounce", + "index": -1 + }, + { + "type": "float", + "name": "gravity_scale", + "setter": "set_gravity_scale", + "getter": "get_gravity_scale", + "index": -1 + }, + { + "type": "bool", + "name": "custom_integrator", + "setter": "set_use_custom_integrator", + "getter": "is_using_custom_integrator", + "index": -1 + }, + { + "type": "int", + "name": "linear_damp_mode", + "setter": "set_linear_damp_mode", + "getter": "get_linear_damp_mode", + "index": -1 + }, + { + "type": "float", + "name": "linear_damp", + "setter": "set_linear_damp", + "getter": "get_linear_damp", + "index": -1 + }, + { + "type": "int", + "name": "angular_damp_mode", + "setter": "set_angular_damp_mode", + "getter": "get_angular_damp_mode", + "index": -1 + }, + { + "type": "float", + "name": "angular_damp", + "setter": "set_angular_damp", + "getter": "get_angular_damp", + "index": -1 + }, + { + "type": "Vector3", + "name": "linear_velocity", + "setter": "set_linear_velocity", + "getter": "get_linear_velocity", + "index": -1 + }, + { + "type": "Vector3", + "name": "angular_velocity", + "setter": "set_angular_velocity", + "getter": "get_angular_velocity", + "index": -1 + }, + { + "type": "bool", + "name": "can_sleep", + "setter": "set_can_sleep", + "getter": "is_able_to_sleep", + "index": -1 + } + ] + }, + { + "name": "PhysicalSkyMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "methods": [ + { + "name": "set_rayleigh_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rayleigh", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_rayleigh_coefficient", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rayleigh_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_rayleigh_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_mie_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mie", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mie_coefficient", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mie_eccentricity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "eccentricity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mie_eccentricity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mie_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_mie_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_turbidity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "turbidity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbidity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sun_disk_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sun_disk_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ground_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_ground_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_exposure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exposure", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_exposure", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_debanding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_debanding", + "type": "bool" + } + ] + }, + { + "name": "get_use_debanding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_night_sky", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "night_sky", + "type": "Texture2D" + } + ] + }, + { + "name": "get_night_sky", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "properties": [ + { + "type": "float", + "name": "rayleigh_coefficient", + "setter": "set_rayleigh_coefficient", + "getter": "get_rayleigh_coefficient", + "index": -1 + }, + { + "type": "Color", + "name": "rayleigh_color", + "setter": "set_rayleigh_color", + "getter": "get_rayleigh_color", + "index": -1 + }, + { + "type": "float", + "name": "mie_coefficient", + "setter": "set_mie_coefficient", + "getter": "get_mie_coefficient", + "index": -1 + }, + { + "type": "float", + "name": "mie_eccentricity", + "setter": "set_mie_eccentricity", + "getter": "get_mie_eccentricity", + "index": -1 + }, + { + "type": "Color", + "name": "mie_color", + "setter": "set_mie_color", + "getter": "get_mie_color", + "index": -1 + }, + { + "type": "float", + "name": "turbidity", + "setter": "set_turbidity", + "getter": "get_turbidity", + "index": -1 + }, + { + "type": "float", + "name": "sun_disk_scale", + "setter": "set_sun_disk_scale", + "getter": "get_sun_disk_scale", + "index": -1 + }, + { + "type": "Color", + "name": "ground_color", + "setter": "set_ground_color", + "getter": "get_ground_color", + "index": -1 + }, + { + "type": "float", + "name": "exposure", + "setter": "set_exposure", + "getter": "get_exposure", + "index": -1 + }, + { + "type": "bool", + "name": "use_debanding", + "setter": "set_use_debanding", + "getter": "get_use_debanding", + "index": -1 + }, + { + "type": "Texture2D", + "name": "night_sky", + "setter": "set_night_sky", + "getter": "get_night_sky", + "index": -1 + } + ] + }, + { + "name": "PhysicsBody2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "CollisionObject2D", + "api_type": "core", + "methods": [ + { + "name": "move_and_collide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474135307, + "return_value": { + "type": "KinematicCollision2D" + }, + "arguments": [ + { + "name": "distance", + "type": "Vector2" + }, + { + "name": "test_only", + "type": "bool", + "default_value": "false" + }, + { + "name": "safe_margin", + "type": "float", + "meta": "float", + "default_value": "0.08" + } + ] + }, + { + "name": "test_move", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "Transform2D" + }, + { + "name": "distance", + "type": "Vector2" + }, + { + "name": "collision", + "type": "KinematicCollision2D", + "default_value": "null" + }, + { + "name": "safe_margin", + "type": "float", + "meta": "float", + "default_value": "0.08" + } + ] + }, + { + "name": "get_collision_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_collision_exception_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "remove_collision_exception_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + } + ] + }, + { + "name": "PhysicsBody3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "CollisionObject3D", + "api_type": "core", + "methods": [ + { + "name": "move_and_collide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 648153669, + "return_value": { + "type": "KinematicCollision3D" + }, + "arguments": [ + { + "name": "distance", + "type": "Vector3" + }, + { + "name": "test_only", + "type": "bool", + "default_value": "false" + }, + { + "name": "safe_margin", + "type": "float", + "meta": "float", + "default_value": "0.001" + }, + { + "name": "max_collisions", + "type": "int", + "meta": "int32", + "default_value": "1" + } + ] + }, + { + "name": "test_move", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4023896206, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "Transform3D" + }, + { + "name": "distance", + "type": "Vector3" + }, + { + "name": "collision", + "type": "KinematicCollision3D", + "default_value": "null" + }, + { + "name": "safe_margin", + "type": "float", + "meta": "float", + "default_value": "0.001" + }, + { + "name": "max_collisions", + "type": "int", + "meta": "int32", + "default_value": "1" + } + ] + }, + { + "name": "set_axis_lock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "axis", + "type": "enum::PhysicsServer3D.BodyAxis" + }, + { + "name": "lock", + "type": "bool" + } + ] + }, + { + "name": "get_axis_lock", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "axis", + "type": "enum::PhysicsServer3D.BodyAxis" + } + ] + }, + { + "name": "get_collision_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_collision_exception_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "remove_collision_exception_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "axis_lock_linear_x", + "setter": "set_axis_lock", + "getter": "get_axis_lock", + "index": 1 + }, + { + "type": "bool", + "name": "axis_lock_linear_y", + "setter": "set_axis_lock", + "getter": "get_axis_lock", + "index": 2 + }, + { + "type": "bool", + "name": "axis_lock_linear_z", + "setter": "set_axis_lock", + "getter": "get_axis_lock", + "index": 4 + }, + { + "type": "bool", + "name": "axis_lock_angular_x", + "setter": "set_axis_lock", + "getter": "get_axis_lock", + "index": 8 + }, + { + "type": "bool", + "name": "axis_lock_angular_y", + "setter": "set_axis_lock", + "getter": "get_axis_lock", + "index": 16 + }, + { + "type": "bool", + "name": "axis_lock_angular_z", + "setter": "set_axis_lock", + "getter": "get_axis_lock", + "index": 32 + } + ] + }, + { + "name": "PhysicsDirectBodyState2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "get_total_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_total_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_total_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_center_of_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_center_of_mass_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_inverse_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_inverse_inertia", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_velocity_at_local_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "local_position", + "type": "Vector2" + } + ] + }, + { + "name": "apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "impulse", + "type": "Vector2" + } + ] + }, + { + "name": "apply_torque_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "impulse", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "impulse", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "apply_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2823412066, + "arguments": [ + { + "name": "force", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "apply_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "apply_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "add_constant_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2823412066, + "arguments": [ + { + "name": "force", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "add_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "add_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "get_constant_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constant_torque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sleep_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_sleeping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_contact_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_contact_local_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_local_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_local_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_object", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_velocity_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "integrate_forces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_space_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PhysicsDirectSpaceState2D" + } + } + ], + "properties": [ + { + "type": "float", + "name": "step", + "setter": "", + "getter": "get_step", + "index": -1 + }, + { + "type": "float", + "name": "inverse_mass", + "setter": "", + "getter": "get_inverse_mass", + "index": -1 + }, + { + "type": "float", + "name": "inverse_inertia", + "setter": "", + "getter": "get_inverse_inertia", + "index": -1 + }, + { + "type": "float", + "name": "total_angular_damp", + "setter": "", + "getter": "get_total_angular_damp", + "index": -1 + }, + { + "type": "float", + "name": "total_linear_damp", + "setter": "", + "getter": "get_total_linear_damp", + "index": -1 + }, + { + "type": "Vector2", + "name": "total_gravity", + "setter": "", + "getter": "get_total_gravity", + "index": -1 + }, + { + "type": "Vector2", + "name": "center_of_mass", + "setter": "", + "getter": "get_center_of_mass", + "index": -1 + }, + { + "type": "Vector2", + "name": "center_of_mass_local", + "setter": "", + "getter": "get_center_of_mass_local", + "index": -1 + }, + { + "type": "float", + "name": "angular_velocity", + "setter": "set_angular_velocity", + "getter": "get_angular_velocity", + "index": -1 + }, + { + "type": "Vector2", + "name": "linear_velocity", + "setter": "set_linear_velocity", + "getter": "get_linear_velocity", + "index": -1 + }, + { + "type": "bool", + "name": "sleeping", + "setter": "set_sleep_state", + "getter": "is_sleeping", + "index": -1 + }, + { + "type": "Transform2D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + } + ] + }, + { + "name": "PhysicsDirectBodyState3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "get_total_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_total_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_total_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_center_of_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_center_of_mass_local", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_principal_inertia_axes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Basis" + } + }, + { + "name": "get_inverse_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_inverse_inertia", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "get_velocity_at_local_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "local_position", + "type": "Vector3" + } + ] + }, + { + "name": "apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1131268653, + "arguments": [ + { + "name": "impulse", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "apply_torque_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "apply_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1131268653, + "arguments": [ + { + "name": "force", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "apply_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "apply_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "add_constant_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1131268653, + "arguments": [ + { + "name": "force", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "add_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "add_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "set_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "get_constant_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "get_constant_torque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_sleep_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_sleeping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_contact_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_contact_local_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_local_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_impulse", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_local_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_object", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_contact_collider_velocity_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "integrate_forces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_space_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PhysicsDirectSpaceState3D" + } + } + ], + "properties": [ + { + "type": "float", + "name": "step", + "setter": "", + "getter": "get_step", + "index": -1 + }, + { + "type": "float", + "name": "inverse_mass", + "setter": "", + "getter": "get_inverse_mass", + "index": -1 + }, + { + "type": "float", + "name": "total_angular_damp", + "setter": "", + "getter": "get_total_angular_damp", + "index": -1 + }, + { + "type": "float", + "name": "total_linear_damp", + "setter": "", + "getter": "get_total_linear_damp", + "index": -1 + }, + { + "type": "Vector3", + "name": "inverse_inertia", + "setter": "", + "getter": "get_inverse_inertia", + "index": -1 + }, + { + "type": "Vector3", + "name": "total_gravity", + "setter": "", + "getter": "get_total_gravity", + "index": -1 + }, + { + "type": "Vector3", + "name": "center_of_mass", + "setter": "", + "getter": "get_center_of_mass", + "index": -1 + }, + { + "type": "Vector3", + "name": "center_of_mass_local", + "setter": "", + "getter": "get_center_of_mass_local", + "index": -1 + }, + { + "type": "Basis", + "name": "principal_inertia_axes", + "setter": "", + "getter": "get_principal_inertia_axes", + "index": -1 + }, + { + "type": "Vector3", + "name": "angular_velocity", + "setter": "set_angular_velocity", + "getter": "get_angular_velocity", + "index": -1 + }, + { + "type": "Vector3", + "name": "linear_velocity", + "setter": "set_linear_velocity", + "getter": "get_linear_velocity", + "index": -1 + }, + { + "type": "bool", + "name": "sleeping", + "setter": "set_sleep_state", + "getter": "is_sleeping", + "index": -1 + }, + { + "type": "Transform3D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + } + ] + }, + { + "name": "PhysicsDirectBodyState3DExtension", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsDirectBodyState3D", + "api_type": "core", + "methods": [ + { + "name": "_get_total_gravity", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_get_total_linear_damp", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_get_total_angular_damp", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_get_center_of_mass", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_get_center_of_mass_local", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_get_principal_inertia_axes", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Basis" + } + }, + { + "name": "_get_inverse_mass", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_get_inverse_inertia", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_set_linear_velocity", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "_get_linear_velocity", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_set_angular_velocity", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "_get_angular_velocity", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_set_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_get_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "_get_velocity_at_local_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "local_position", + "type": "Vector3" + } + ] + }, + { + "name": "_apply_central_impulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "_apply_impulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "_apply_torque_impulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "_apply_central_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "_apply_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "_apply_torque", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "_add_constant_central_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "_add_constant_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "_add_constant_torque", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "_set_constant_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "_get_constant_force", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_set_constant_torque", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "_get_constant_torque", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "_set_sleep_state", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "_is_sleeping", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_contact_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_contact_local_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_local_normal", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_impulse", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_local_shape", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_collider", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_collider_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_collider_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_collider_object", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_collider_shape", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_contact_collider_velocity_at_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "contact_idx", + "type": "int" + } + ] + }, + { + "name": "_get_step", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_integrate_forces", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_space_state", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PhysicsDirectSpaceState3D" + } + } + ] + }, + { + "name": "PhysicsDirectSpaceState2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "intersect_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsPointQueryParameters2D" + }, + { + "name": "max_results", + "type": "int", + "meta": "int32", + "default_value": "32" + } + ] + }, + { + "name": "intersect_ray", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsRayQueryParameters2D" + } + ] + }, + { + "name": "intersect_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters2D" + }, + { + "name": "max_results", + "type": "int", + "meta": "int32", + "default_value": "32" + } + ] + }, + { + "name": "cast_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters2D" + } + ] + }, + { + "name": "collide_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters2D" + }, + { + "name": "max_results", + "type": "int", + "meta": "int32", + "default_value": "32" + } + ] + }, + { + "name": "get_rest_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters2D" + } + ] + } + ] + }, + { + "name": "PhysicsDirectSpaceState3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "intersect_point", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsPointQueryParameters3D" + }, + { + "name": "max_results", + "type": "int", + "meta": "int32", + "default_value": "32" + } + ] + }, + { + "name": "intersect_ray", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsRayQueryParameters3D" + } + ] + }, + { + "name": "intersect_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters3D" + }, + { + "name": "max_results", + "type": "int", + "meta": "int32", + "default_value": "32" + } + ] + }, + { + "name": "cast_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters3D" + } + ] + }, + { + "name": "collide_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters3D" + }, + { + "name": "max_results", + "type": "int", + "meta": "int32", + "default_value": "32" + } + ] + }, + { + "name": "get_rest_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "parameters", + "type": "PhysicsShapeQueryParameters3D" + } + ] + } + ] + }, + { + "name": "PhysicsDirectSpaceState3DExtension", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsDirectSpaceState3D", + "api_type": "core", + "methods": [ + { + "name": "_intersect_ray", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "collision_mask", + "type": "int" + }, + { + "name": "collide_with_bodies", + "type": "bool" + }, + { + "name": "collide_with_areas", + "type": "bool" + }, + { + "name": "hit_from_inside", + "type": "bool" + }, + { + "name": "hit_back_faces", + "type": "bool" + }, + { + "name": "result", + "type": "PhysicsServer3DExtensionRayResult*" + } + ] + }, + { + "name": "_intersect_point", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "position", + "type": "Vector3" + }, + { + "name": "collision_mask", + "type": "int" + }, + { + "name": "collide_with_bodies", + "type": "bool" + }, + { + "name": "collide_with_areas", + "type": "bool" + }, + { + "name": "results", + "type": "PhysicsServer3DExtensionShapeResult*" + }, + { + "name": "max_results", + "type": "int" + } + ] + }, + { + "name": "_intersect_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shape_rid", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "motion", + "type": "Vector3" + }, + { + "name": "margin", + "type": "float" + }, + { + "name": "collision_mask", + "type": "int" + }, + { + "name": "collide_with_bodies", + "type": "bool" + }, + { + "name": "collide_with_areas", + "type": "bool" + }, + { + "name": "result_count", + "type": "PhysicsServer3DExtensionShapeResult*" + }, + { + "name": "max_results", + "type": "int" + } + ] + }, + { + "name": "_cast_motion", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shape_rid", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "motion", + "type": "Vector3" + }, + { + "name": "margin", + "type": "float" + }, + { + "name": "collision_mask", + "type": "int" + }, + { + "name": "collide_with_bodies", + "type": "bool" + }, + { + "name": "collide_with_areas", + "type": "bool" + }, + { + "name": "closest_safe", + "type": "float*" + }, + { + "name": "closest_unsafe", + "type": "float*" + }, + { + "name": "info", + "type": "PhysicsServer3DExtensionShapeRestInfo*" + } + ] + }, + { + "name": "_collide_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shape_rid", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "motion", + "type": "Vector3" + }, + { + "name": "margin", + "type": "float" + }, + { + "name": "collision_mask", + "type": "int" + }, + { + "name": "collide_with_bodies", + "type": "bool" + }, + { + "name": "collide_with_areas", + "type": "bool" + }, + { + "name": "results", + "type": "void*" + }, + { + "name": "max_results", + "type": "int" + }, + { + "name": "result_count", + "type": "int32_t*" + } + ] + }, + { + "name": "_rest_info", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shape_rid", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "motion", + "type": "Vector3" + }, + { + "name": "margin", + "type": "float" + }, + { + "name": "collision_mask", + "type": "int" + }, + { + "name": "collide_with_bodies", + "type": "bool" + }, + { + "name": "collide_with_areas", + "type": "bool" + }, + { + "name": "rest_info", + "type": "PhysicsServer3DExtensionShapeRestInfo*" + } + ] + }, + { + "name": "_get_closest_point_to_object_volume", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "object", + "type": "RID" + }, + { + "name": "point", + "type": "Vector3" + } + ] + } + ] + }, + { + "name": "PhysicsMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_friction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "friction", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_friction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rough", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rough", + "type": "bool" + } + ] + }, + { + "name": "is_rough", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_bounce", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bounce", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bounce", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_absorbent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "absorbent", + "type": "bool" + } + ] + }, + { + "name": "is_absorbent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "friction", + "setter": "set_friction", + "getter": "get_friction", + "index": -1 + }, + { + "type": "bool", + "name": "rough", + "setter": "set_rough", + "getter": "is_rough", + "index": -1 + }, + { + "type": "float", + "name": "bounce", + "setter": "set_bounce", + "getter": "get_bounce", + "index": -1 + }, + { + "type": "bool", + "name": "absorbent", + "setter": "set_absorbent", + "getter": "is_absorbent", + "index": -1 + } + ] + }, + { + "name": "PhysicsPointQueryParameters2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_canvas_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "canvas_instance_id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "get_canvas_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_exclude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude", + "type": "Array" + } + ] + }, + { + "name": "get_exclude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "int", + "name": "canvas_instance_id", + "setter": "set_canvas_instance_id", + "getter": "get_canvas_instance_id", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "exclude", + "setter": "set_exclude", + "getter": "get_exclude", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsPointQueryParameters3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_exclude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude", + "type": "Array" + } + ] + }, + { + "name": "get_exclude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "exclude", + "setter": "set_exclude", + "getter": "get_exclude", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsRayQueryParameters2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "from", + "type": "Vector2" + } + ] + }, + { + "name": "get_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_to", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "get_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_exclude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude", + "type": "Array" + } + ] + }, + { + "name": "get_exclude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hit_from_inside", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hit_from_inside_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "from", + "setter": "set_from", + "getter": "get_from", + "index": -1 + }, + { + "type": "Vector2", + "name": "to", + "setter": "set_to", + "getter": "get_to", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "exclude", + "setter": "set_exclude", + "getter": "get_exclude", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "hit_from_inside", + "setter": "set_hit_from_inside", + "getter": "is_hit_from_inside_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsRayQueryParameters3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "from", + "type": "Vector3" + } + ] + }, + { + "name": "get_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_to", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to", + "type": "Vector3" + } + ] + }, + { + "name": "get_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_exclude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude", + "type": "Array" + } + ] + }, + { + "name": "get_exclude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hit_from_inside", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hit_from_inside_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hit_back_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hit_back_faces_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "from", + "setter": "set_from", + "getter": "get_from", + "index": -1 + }, + { + "type": "Vector3", + "name": "to", + "setter": "set_to", + "getter": "get_to", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "exclude", + "setter": "set_exclude", + "getter": "get_exclude", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "hit_from_inside", + "setter": "set_hit_from_inside", + "getter": "is_hit_from_inside_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "hit_back_faces", + "setter": "set_hit_back_faces", + "getter": "is_hit_back_faces_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsServer2D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "SpaceParameter", + "values": [ + { + "name": "SPACE_PARAM_CONTACT_RECYCLE_RADIUS", + "value": 0 + }, + { + "name": "SPACE_PARAM_CONTACT_MAX_SEPARATION", + "value": 1 + }, + { + "name": "SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION", + "value": 2 + }, + { + "name": "SPACE_PARAM_CONTACT_DEFAULT_BIAS", + "value": 3 + }, + { + "name": "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD", + "value": 4 + }, + { + "name": "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD", + "value": 5 + }, + { + "name": "SPACE_PARAM_BODY_TIME_TO_SLEEP", + "value": 6 + }, + { + "name": "SPACE_PARAM_CONSTRAINT_DEFAULT_BIAS", + "value": 7 + }, + { + "name": "SPACE_PARAM_SOLVER_ITERATIONS", + "value": 8 + } + ] + }, + { + "name": "ShapeType", + "values": [ + { + "name": "SHAPE_WORLD_BOUNDARY", + "value": 0 + }, + { + "name": "SHAPE_SEPARATION_RAY", + "value": 1 + }, + { + "name": "SHAPE_SEGMENT", + "value": 2 + }, + { + "name": "SHAPE_CIRCLE", + "value": 3 + }, + { + "name": "SHAPE_RECTANGLE", + "value": 4 + }, + { + "name": "SHAPE_CAPSULE", + "value": 5 + }, + { + "name": "SHAPE_CONVEX_POLYGON", + "value": 6 + }, + { + "name": "SHAPE_CONCAVE_POLYGON", + "value": 7 + }, + { + "name": "SHAPE_CUSTOM", + "value": 8 + } + ] + }, + { + "name": "AreaParameter", + "values": [ + { + "name": "AREA_PARAM_GRAVITY_OVERRIDE_MODE", + "value": 0 + }, + { + "name": "AREA_PARAM_GRAVITY", + "value": 1 + }, + { + "name": "AREA_PARAM_GRAVITY_VECTOR", + "value": 2 + }, + { + "name": "AREA_PARAM_GRAVITY_IS_POINT", + "value": 3 + }, + { + "name": "AREA_PARAM_GRAVITY_DISTANCE_SCALE", + "value": 4 + }, + { + "name": "AREA_PARAM_GRAVITY_POINT_ATTENUATION", + "value": 5 + }, + { + "name": "AREA_PARAM_LINEAR_DAMP_OVERRIDE_MODE", + "value": 6 + }, + { + "name": "AREA_PARAM_LINEAR_DAMP", + "value": 7 + }, + { + "name": "AREA_PARAM_ANGULAR_DAMP_OVERRIDE_MODE", + "value": 8 + }, + { + "name": "AREA_PARAM_ANGULAR_DAMP", + "value": 9 + }, + { + "name": "AREA_PARAM_PRIORITY", + "value": 10 + } + ] + }, + { + "name": "AreaSpaceOverrideMode", + "values": [ + { + "name": "AREA_SPACE_OVERRIDE_DISABLED", + "value": 0 + }, + { + "name": "AREA_SPACE_OVERRIDE_COMBINE", + "value": 1 + }, + { + "name": "AREA_SPACE_OVERRIDE_COMBINE_REPLACE", + "value": 2 + }, + { + "name": "AREA_SPACE_OVERRIDE_REPLACE", + "value": 3 + }, + { + "name": "AREA_SPACE_OVERRIDE_REPLACE_COMBINE", + "value": 4 + } + ] + }, + { + "name": "BodyMode", + "values": [ + { + "name": "BODY_MODE_STATIC", + "value": 0 + }, + { + "name": "BODY_MODE_KINEMATIC", + "value": 1 + }, + { + "name": "BODY_MODE_DYNAMIC", + "value": 2 + }, + { + "name": "BODY_MODE_DYNAMIC_LINEAR", + "value": 3 + } + ] + }, + { + "name": "BodyParameter", + "values": [ + { + "name": "BODY_PARAM_BOUNCE", + "value": 0 + }, + { + "name": "BODY_PARAM_FRICTION", + "value": 1 + }, + { + "name": "BODY_PARAM_MASS", + "value": 2 + }, + { + "name": "BODY_PARAM_INERTIA", + "value": 3 + }, + { + "name": "BODY_PARAM_CENTER_OF_MASS", + "value": 4 + }, + { + "name": "BODY_PARAM_GRAVITY_SCALE", + "value": 5 + }, + { + "name": "BODY_PARAM_LINEAR_DAMP_MODE", + "value": 6 + }, + { + "name": "BODY_PARAM_ANGULAR_DAMP_MODE", + "value": 7 + }, + { + "name": "BODY_PARAM_LINEAR_DAMP", + "value": 8 + }, + { + "name": "BODY_PARAM_ANGULAR_DAMP", + "value": 9 + }, + { + "name": "BODY_PARAM_MAX", + "value": 10 + } + ] + }, + { + "name": "BodyDampMode", + "values": [ + { + "name": "BODY_DAMP_MODE_COMBINE", + "value": 0 + }, + { + "name": "BODY_DAMP_MODE_REPLACE", + "value": 1 + } + ] + }, + { + "name": "BodyState", + "values": [ + { + "name": "BODY_STATE_TRANSFORM", + "value": 0 + }, + { + "name": "BODY_STATE_LINEAR_VELOCITY", + "value": 1 + }, + { + "name": "BODY_STATE_ANGULAR_VELOCITY", + "value": 2 + }, + { + "name": "BODY_STATE_SLEEPING", + "value": 3 + }, + { + "name": "BODY_STATE_CAN_SLEEP", + "value": 4 + } + ] + }, + { + "name": "JointType", + "values": [ + { + "name": "JOINT_TYPE_PIN", + "value": 0 + }, + { + "name": "JOINT_TYPE_GROOVE", + "value": 1 + }, + { + "name": "JOINT_TYPE_DAMPED_SPRING", + "value": 2 + }, + { + "name": "JOINT_TYPE_MAX", + "value": 3 + } + ] + }, + { + "name": "JointParam", + "values": [ + { + "name": "JOINT_PARAM_BIAS", + "value": 0 + }, + { + "name": "JOINT_PARAM_MAX_BIAS", + "value": 1 + }, + { + "name": "JOINT_PARAM_MAX_FORCE", + "value": 2 + } + ] + }, + { + "name": "DampedSpringParam", + "values": [ + { + "name": "DAMPED_SPRING_REST_LENGTH", + "value": 0 + }, + { + "name": "DAMPED_SPRING_STIFFNESS", + "value": 1 + }, + { + "name": "DAMPED_SPRING_DAMPING", + "value": 2 + } + ] + }, + { + "name": "CCDMode", + "values": [ + { + "name": "CCD_MODE_DISABLED", + "value": 0 + }, + { + "name": "CCD_MODE_CAST_RAY", + "value": 1 + }, + { + "name": "CCD_MODE_CAST_SHAPE", + "value": 2 + } + ] + }, + { + "name": "AreaBodyStatus", + "values": [ + { + "name": "AREA_BODY_ADDED", + "value": 0 + }, + { + "name": "AREA_BODY_REMOVED", + "value": 1 + } + ] + }, + { + "name": "ProcessInfo", + "values": [ + { + "name": "INFO_ACTIVE_OBJECTS", + "value": 0 + }, + { + "name": "INFO_COLLISION_PAIRS", + "value": 1 + }, + { + "name": "INFO_ISLAND_COUNT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "world_boundary_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "separation_ray_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "segment_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "circle_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "rectangle_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "capsule_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "convex_polygon_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "concave_polygon_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "shape_set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shape", + "type": "RID" + }, + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "shape_get_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer2D.ShapeType" + }, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "shape_get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "space_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "space_set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "space_is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "space_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.SpaceParameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "space_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.SpaceParameter" + } + ] + }, + { + "name": "space_get_direct_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PhysicsDirectSpaceState2D" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "area_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "area_set_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "area_get_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_add_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D", + "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "area_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "area_set_shape_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "area_set_shape_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "area_get_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "area_get_shape_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "area_remove_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "area_clear_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "area_set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "area_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.AreaParameter" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "area_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "area_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.AreaParameter" + } + ] + }, + { + "name": "area_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_attach_object_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "area_get_object_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_attach_canvas_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "area_get_canvas_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_set_monitor_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "area_set_area_monitor_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "area_set_monitorable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "monitorable", + "type": "bool" + } + ] + }, + { + "name": "body_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "body_set_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "body_get_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::PhysicsServer2D.BodyMode" + } + ] + }, + { + "name": "body_get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer2D.BodyMode" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_add_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D", + "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "body_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "body_set_shape_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "body_get_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_get_shape_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_remove_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_clear_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_shape_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "body_set_shape_as_one_way_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "body_attach_object_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "body_get_object_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_attach_canvas_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "body_get_canvas_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_continuous_collision_detection_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::PhysicsServer2D.CCDMode" + } + ] + }, + { + "name": "body_get_continuous_collision_detection_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer2D.CCDMode" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "body_get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "body_get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.BodyParameter" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "body_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.BodyParameter" + } + ] + }, + { + "name": "body_reset_mass_properties", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "state", + "type": "enum::PhysicsServer2D.BodyState" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "body_get_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "state", + "type": "enum::PhysicsServer2D.BodyState" + } + ] + }, + { + "name": "body_apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector2" + } + ] + }, + { + "name": "body_apply_torque_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "body_apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "body_apply_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "body_apply_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "body_apply_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "body_add_constant_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "body_add_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "body_add_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "body_set_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "body_get_constant_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "body_get_constant_torque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_axis_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis_velocity", + "type": "Vector2" + } + ] + }, + { + "name": "body_add_collision_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "excepted_body", + "type": "RID" + } + ] + }, + { + "name": "body_remove_collision_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "excepted_body", + "type": "RID" + } + ] + }, + { + "name": "body_set_max_contacts_reported", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_get_max_contacts_reported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_omit_force_integration", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "body_is_omitting_force_integration", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_force_integration_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "callable", + "type": "Callable" + }, + { + "name": "userdata", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "body_test_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "parameters", + "type": "PhysicsTestMotionParameters2D" + }, + { + "name": "result", + "type": "PhysicsTestMotionResult2D", + "default_value": "null" + } + ] + }, + { + "name": "body_get_direct_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PhysicsDirectBodyState2D" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "joint_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "joint_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.JointParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.JointParam" + } + ] + }, + { + "name": "joint_make_pin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "anchor", + "type": "Vector2" + }, + { + "name": "body_a", + "type": "RID" + }, + { + "name": "body_b", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "joint_make_groove", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300073517, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "groove1_a", + "type": "Vector2" + }, + { + "name": "groove2_a", + "type": "Vector2" + }, + { + "name": "anchor_b", + "type": "Vector2" + }, + { + "name": "body_a", + "type": "RID", + "default_value": "" + }, + { + "name": "body_b", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "joint_make_damped_spring", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 138021803, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "anchor_a", + "type": "Vector2" + }, + { + "name": "anchor_b", + "type": "Vector2" + }, + { + "name": "body_a", + "type": "RID" + }, + { + "name": "body_b", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "damped_spring_joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.DampedSpringParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "damped_spring_joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer2D.DampedSpringParam" + } + ] + }, + { + "name": "joint_get_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer2D.JointType" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "free_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "get_process_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "process_info", + "type": "enum::PhysicsServer2D.ProcessInfo" + } + ] + } + ] + }, + { + "name": "PhysicsServer3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "JointType", + "values": [ + { + "name": "JOINT_TYPE_PIN", + "value": 0 + }, + { + "name": "JOINT_TYPE_HINGE", + "value": 1 + }, + { + "name": "JOINT_TYPE_SLIDER", + "value": 2 + }, + { + "name": "JOINT_TYPE_CONE_TWIST", + "value": 3 + }, + { + "name": "JOINT_TYPE_6DOF", + "value": 4 + }, + { + "name": "JOINT_TYPE_MAX", + "value": 5 + } + ] + }, + { + "name": "PinJointParam", + "values": [ + { + "name": "PIN_JOINT_BIAS", + "value": 0 + }, + { + "name": "PIN_JOINT_DAMPING", + "value": 1 + }, + { + "name": "PIN_JOINT_IMPULSE_CLAMP", + "value": 2 + } + ] + }, + { + "name": "HingeJointParam", + "values": [ + { + "name": "HINGE_JOINT_BIAS", + "value": 0 + }, + { + "name": "HINGE_JOINT_LIMIT_UPPER", + "value": 1 + }, + { + "name": "HINGE_JOINT_LIMIT_LOWER", + "value": 2 + }, + { + "name": "HINGE_JOINT_LIMIT_BIAS", + "value": 3 + }, + { + "name": "HINGE_JOINT_LIMIT_SOFTNESS", + "value": 4 + }, + { + "name": "HINGE_JOINT_LIMIT_RELAXATION", + "value": 5 + }, + { + "name": "HINGE_JOINT_MOTOR_TARGET_VELOCITY", + "value": 6 + }, + { + "name": "HINGE_JOINT_MOTOR_MAX_IMPULSE", + "value": 7 + } + ] + }, + { + "name": "HingeJointFlag", + "values": [ + { + "name": "HINGE_JOINT_FLAG_USE_LIMIT", + "value": 0 + }, + { + "name": "HINGE_JOINT_FLAG_ENABLE_MOTOR", + "value": 1 + } + ] + }, + { + "name": "SliderJointParam", + "values": [ + { + "name": "SLIDER_JOINT_LINEAR_LIMIT_UPPER", + "value": 0 + }, + { + "name": "SLIDER_JOINT_LINEAR_LIMIT_LOWER", + "value": 1 + }, + { + "name": "SLIDER_JOINT_LINEAR_LIMIT_SOFTNESS", + "value": 2 + }, + { + "name": "SLIDER_JOINT_LINEAR_LIMIT_RESTITUTION", + "value": 3 + }, + { + "name": "SLIDER_JOINT_LINEAR_LIMIT_DAMPING", + "value": 4 + }, + { + "name": "SLIDER_JOINT_LINEAR_MOTION_SOFTNESS", + "value": 5 + }, + { + "name": "SLIDER_JOINT_LINEAR_MOTION_RESTITUTION", + "value": 6 + }, + { + "name": "SLIDER_JOINT_LINEAR_MOTION_DAMPING", + "value": 7 + }, + { + "name": "SLIDER_JOINT_LINEAR_ORTHOGONAL_SOFTNESS", + "value": 8 + }, + { + "name": "SLIDER_JOINT_LINEAR_ORTHOGONAL_RESTITUTION", + "value": 9 + }, + { + "name": "SLIDER_JOINT_LINEAR_ORTHOGONAL_DAMPING", + "value": 10 + }, + { + "name": "SLIDER_JOINT_ANGULAR_LIMIT_UPPER", + "value": 11 + }, + { + "name": "SLIDER_JOINT_ANGULAR_LIMIT_LOWER", + "value": 12 + }, + { + "name": "SLIDER_JOINT_ANGULAR_LIMIT_SOFTNESS", + "value": 13 + }, + { + "name": "SLIDER_JOINT_ANGULAR_LIMIT_RESTITUTION", + "value": 14 + }, + { + "name": "SLIDER_JOINT_ANGULAR_LIMIT_DAMPING", + "value": 15 + }, + { + "name": "SLIDER_JOINT_ANGULAR_MOTION_SOFTNESS", + "value": 16 + }, + { + "name": "SLIDER_JOINT_ANGULAR_MOTION_RESTITUTION", + "value": 17 + }, + { + "name": "SLIDER_JOINT_ANGULAR_MOTION_DAMPING", + "value": 18 + }, + { + "name": "SLIDER_JOINT_ANGULAR_ORTHOGONAL_SOFTNESS", + "value": 19 + }, + { + "name": "SLIDER_JOINT_ANGULAR_ORTHOGONAL_RESTITUTION", + "value": 20 + }, + { + "name": "SLIDER_JOINT_ANGULAR_ORTHOGONAL_DAMPING", + "value": 21 + }, + { + "name": "SLIDER_JOINT_MAX", + "value": 22 + } + ] + }, + { + "name": "ConeTwistJointParam", + "values": [ + { + "name": "CONE_TWIST_JOINT_SWING_SPAN", + "value": 0 + }, + { + "name": "CONE_TWIST_JOINT_TWIST_SPAN", + "value": 1 + }, + { + "name": "CONE_TWIST_JOINT_BIAS", + "value": 2 + }, + { + "name": "CONE_TWIST_JOINT_SOFTNESS", + "value": 3 + }, + { + "name": "CONE_TWIST_JOINT_RELAXATION", + "value": 4 + } + ] + }, + { + "name": "G6DOFJointAxisParam", + "values": [ + { + "name": "G6DOF_JOINT_LINEAR_LOWER_LIMIT", + "value": 0 + }, + { + "name": "G6DOF_JOINT_LINEAR_UPPER_LIMIT", + "value": 1 + }, + { + "name": "G6DOF_JOINT_LINEAR_LIMIT_SOFTNESS", + "value": 2 + }, + { + "name": "G6DOF_JOINT_LINEAR_RESTITUTION", + "value": 3 + }, + { + "name": "G6DOF_JOINT_LINEAR_DAMPING", + "value": 4 + }, + { + "name": "G6DOF_JOINT_LINEAR_MOTOR_TARGET_VELOCITY", + "value": 5 + }, + { + "name": "G6DOF_JOINT_LINEAR_MOTOR_FORCE_LIMIT", + "value": 6 + }, + { + "name": "G6DOF_JOINT_ANGULAR_LOWER_LIMIT", + "value": 10 + }, + { + "name": "G6DOF_JOINT_ANGULAR_UPPER_LIMIT", + "value": 11 + }, + { + "name": "G6DOF_JOINT_ANGULAR_LIMIT_SOFTNESS", + "value": 12 + }, + { + "name": "G6DOF_JOINT_ANGULAR_DAMPING", + "value": 13 + }, + { + "name": "G6DOF_JOINT_ANGULAR_RESTITUTION", + "value": 14 + }, + { + "name": "G6DOF_JOINT_ANGULAR_FORCE_LIMIT", + "value": 15 + }, + { + "name": "G6DOF_JOINT_ANGULAR_ERP", + "value": 16 + }, + { + "name": "G6DOF_JOINT_ANGULAR_MOTOR_TARGET_VELOCITY", + "value": 17 + }, + { + "name": "G6DOF_JOINT_ANGULAR_MOTOR_FORCE_LIMIT", + "value": 18 + } + ] + }, + { + "name": "G6DOFJointAxisFlag", + "values": [ + { + "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT", + "value": 0 + }, + { + "name": "G6DOF_JOINT_FLAG_ENABLE_ANGULAR_LIMIT", + "value": 1 + }, + { + "name": "G6DOF_JOINT_FLAG_ENABLE_MOTOR", + "value": 4 + }, + { + "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_MOTOR", + "value": 5 + } + ] + }, + { + "name": "ShapeType", + "values": [ + { + "name": "SHAPE_WORLD_BOUNDARY", + "value": 0 + }, + { + "name": "SHAPE_SEPARATION_RAY", + "value": 1 + }, + { + "name": "SHAPE_SPHERE", + "value": 2 + }, + { + "name": "SHAPE_BOX", + "value": 3 + }, + { + "name": "SHAPE_CAPSULE", + "value": 4 + }, + { + "name": "SHAPE_CYLINDER", + "value": 5 + }, + { + "name": "SHAPE_CONVEX_POLYGON", + "value": 6 + }, + { + "name": "SHAPE_CONCAVE_POLYGON", + "value": 7 + }, + { + "name": "SHAPE_HEIGHTMAP", + "value": 8 + }, + { + "name": "SHAPE_SOFT_BODY", + "value": 9 + }, + { + "name": "SHAPE_CUSTOM", + "value": 10 + } + ] + }, + { + "name": "AreaParameter", + "values": [ + { + "name": "AREA_PARAM_GRAVITY_OVERRIDE_MODE", + "value": 0 + }, + { + "name": "AREA_PARAM_GRAVITY", + "value": 1 + }, + { + "name": "AREA_PARAM_GRAVITY_VECTOR", + "value": 2 + }, + { + "name": "AREA_PARAM_GRAVITY_IS_POINT", + "value": 3 + }, + { + "name": "AREA_PARAM_GRAVITY_DISTANCE_SCALE", + "value": 4 + }, + { + "name": "AREA_PARAM_GRAVITY_POINT_ATTENUATION", + "value": 5 + }, + { + "name": "AREA_PARAM_LINEAR_DAMP_OVERRIDE_MODE", + "value": 6 + }, + { + "name": "AREA_PARAM_LINEAR_DAMP", + "value": 7 + }, + { + "name": "AREA_PARAM_ANGULAR_DAMP_OVERRIDE_MODE", + "value": 8 + }, + { + "name": "AREA_PARAM_ANGULAR_DAMP", + "value": 9 + }, + { + "name": "AREA_PARAM_PRIORITY", + "value": 10 + }, + { + "name": "AREA_PARAM_WIND_FORCE_MAGNITUDE", + "value": 11 + }, + { + "name": "AREA_PARAM_WIND_SOURCE", + "value": 12 + }, + { + "name": "AREA_PARAM_WIND_DIRECTION", + "value": 13 + }, + { + "name": "AREA_PARAM_WIND_ATTENUATION_FACTOR", + "value": 14 + } + ] + }, + { + "name": "AreaSpaceOverrideMode", + "values": [ + { + "name": "AREA_SPACE_OVERRIDE_DISABLED", + "value": 0 + }, + { + "name": "AREA_SPACE_OVERRIDE_COMBINE", + "value": 1 + }, + { + "name": "AREA_SPACE_OVERRIDE_COMBINE_REPLACE", + "value": 2 + }, + { + "name": "AREA_SPACE_OVERRIDE_REPLACE", + "value": 3 + }, + { + "name": "AREA_SPACE_OVERRIDE_REPLACE_COMBINE", + "value": 4 + } + ] + }, + { + "name": "BodyMode", + "values": [ + { + "name": "BODY_MODE_STATIC", + "value": 0 + }, + { + "name": "BODY_MODE_KINEMATIC", + "value": 1 + }, + { + "name": "BODY_MODE_DYNAMIC", + "value": 2 + }, + { + "name": "BODY_MODE_DYNAMIC_LINEAR", + "value": 3 + } + ] + }, + { + "name": "BodyParameter", + "values": [ + { + "name": "BODY_PARAM_BOUNCE", + "value": 0 + }, + { + "name": "BODY_PARAM_FRICTION", + "value": 1 + }, + { + "name": "BODY_PARAM_MASS", + "value": 2 + }, + { + "name": "BODY_PARAM_INERTIA", + "value": 3 + }, + { + "name": "BODY_PARAM_CENTER_OF_MASS", + "value": 4 + }, + { + "name": "BODY_PARAM_GRAVITY_SCALE", + "value": 5 + }, + { + "name": "BODY_PARAM_LINEAR_DAMP_MODE", + "value": 6 + }, + { + "name": "BODY_PARAM_ANGULAR_DAMP_MODE", + "value": 7 + }, + { + "name": "BODY_PARAM_LINEAR_DAMP", + "value": 8 + }, + { + "name": "BODY_PARAM_ANGULAR_DAMP", + "value": 9 + }, + { + "name": "BODY_PARAM_MAX", + "value": 10 + } + ] + }, + { + "name": "BodyDampMode", + "values": [ + { + "name": "BODY_DAMP_MODE_COMBINE", + "value": 0 + }, + { + "name": "BODY_DAMP_MODE_REPLACE", + "value": 1 + } + ] + }, + { + "name": "BodyState", + "values": [ + { + "name": "BODY_STATE_TRANSFORM", + "value": 0 + }, + { + "name": "BODY_STATE_LINEAR_VELOCITY", + "value": 1 + }, + { + "name": "BODY_STATE_ANGULAR_VELOCITY", + "value": 2 + }, + { + "name": "BODY_STATE_SLEEPING", + "value": 3 + }, + { + "name": "BODY_STATE_CAN_SLEEP", + "value": 4 + } + ] + }, + { + "name": "AreaBodyStatus", + "values": [ + { + "name": "AREA_BODY_ADDED", + "value": 0 + }, + { + "name": "AREA_BODY_REMOVED", + "value": 1 + } + ] + }, + { + "name": "ProcessInfo", + "values": [ + { + "name": "INFO_ACTIVE_OBJECTS", + "value": 0 + }, + { + "name": "INFO_COLLISION_PAIRS", + "value": 1 + }, + { + "name": "INFO_ISLAND_COUNT", + "value": 2 + } + ] + }, + { + "name": "SpaceParameter", + "values": [ + { + "name": "SPACE_PARAM_CONTACT_RECYCLE_RADIUS", + "value": 0 + }, + { + "name": "SPACE_PARAM_CONTACT_MAX_SEPARATION", + "value": 1 + }, + { + "name": "SPACE_PARAM_CONTACT_MAX_ALLOWED_PENETRATION", + "value": 2 + }, + { + "name": "SPACE_PARAM_CONTACT_DEFAULT_BIAS", + "value": 3 + }, + { + "name": "SPACE_PARAM_BODY_LINEAR_VELOCITY_SLEEP_THRESHOLD", + "value": 4 + }, + { + "name": "SPACE_PARAM_BODY_ANGULAR_VELOCITY_SLEEP_THRESHOLD", + "value": 5 + }, + { + "name": "SPACE_PARAM_BODY_TIME_TO_SLEEP", + "value": 6 + }, + { + "name": "SPACE_PARAM_SOLVER_ITERATIONS", + "value": 7 + } + ] + }, + { + "name": "BodyAxis", + "values": [ + { + "name": "BODY_AXIS_LINEAR_X", + "value": 1 + }, + { + "name": "BODY_AXIS_LINEAR_Y", + "value": 2 + }, + { + "name": "BODY_AXIS_LINEAR_Z", + "value": 4 + }, + { + "name": "BODY_AXIS_ANGULAR_X", + "value": 8 + }, + { + "name": "BODY_AXIS_ANGULAR_Y", + "value": 16 + }, + { + "name": "BODY_AXIS_ANGULAR_Z", + "value": 32 + } + ] + } + ], + "methods": [ + { + "name": "world_boundary_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "separation_ray_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "sphere_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "box_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "capsule_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "cylinder_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "convex_polygon_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "concave_polygon_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "heightmap_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "custom_shape_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "shape_set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shape", + "type": "RID" + }, + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "shape_get_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer3D.ShapeType" + }, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "shape_get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "space_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "space_set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "space_is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "space_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SpaceParameter" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "space_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SpaceParameter" + } + ] + }, + { + "name": "space_get_direct_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PhysicsDirectSpaceState3D" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "area_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "area_set_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "area_get_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_add_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D", + "default_value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "area_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "area_set_shape_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "area_set_shape_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "area_get_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "area_get_shape_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "area_remove_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "area_clear_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "area_set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "area_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.AreaParameter" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "area_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "area_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.AreaParameter" + } + ] + }, + { + "name": "area_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_attach_object_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "area_get_object_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "area_set_monitor_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "area_set_area_monitor_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "area_set_monitorable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "monitorable", + "type": "bool" + } + ] + }, + { + "name": "area_set_ray_pickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "body_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "body_set_space", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "body_get_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::PhysicsServer3D.BodyMode" + } + ] + }, + { + "name": "body_get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer3D.BodyMode" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "body_get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "body_get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_add_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D", + "default_value": "Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "body_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "body_set_shape_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "body_set_shape_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "body_get_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_get_shape_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_remove_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_clear_shapes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_attach_object_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "body_get_object_instance_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_enable_continuous_collision_detection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "body_is_continuous_collision_detection_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.BodyParameter" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "body_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.BodyParameter" + } + ] + }, + { + "name": "body_reset_mass_properties", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "state", + "type": "enum::PhysicsServer3D.BodyState" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "body_get_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "state", + "type": "enum::PhysicsServer3D.BodyState" + } + ] + }, + { + "name": "body_apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "body_apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "body_apply_torque_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "body_apply_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "body_apply_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "body_apply_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "body_add_constant_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "body_add_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "body_add_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "body_set_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "body_get_constant_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "body_get_constant_torque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_axis_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "body_set_axis_lock", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::PhysicsServer3D.BodyAxis" + }, + { + "name": "lock", + "type": "bool" + } + ] + }, + { + "name": "body_is_axis_locked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::PhysicsServer3D.BodyAxis" + } + ] + }, + { + "name": "body_add_collision_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "excepted_body", + "type": "RID" + } + ] + }, + { + "name": "body_remove_collision_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "excepted_body", + "type": "RID" + } + ] + }, + { + "name": "body_set_max_contacts_reported", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "body_get_max_contacts_reported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_omit_force_integration", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "body_is_omitting_force_integration", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "body_set_force_integration_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "callable", + "type": "Callable" + }, + { + "name": "userdata", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "body_set_ray_pickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "body_test_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "parameters", + "type": "PhysicsTestMotionParameters3D" + }, + { + "name": "result", + "type": "PhysicsTestMotionResult3D", + "default_value": "null" + } + ] + }, + { + "name": "body_get_direct_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PhysicsDirectBodyState3D" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "soft_body_get_bounds", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AABB" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "joint_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "joint_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "joint_make_pin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_A", + "type": "Vector3" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_B", + "type": "Vector3" + } + ] + }, + { + "name": "pin_joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.PinJointParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "pin_joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.PinJointParam" + } + ] + }, + { + "name": "pin_joint_set_local_a", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "local_A", + "type": "Vector3" + } + ] + }, + { + "name": "pin_joint_get_local_a", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "pin_joint_set_local_b", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "local_B", + "type": "Vector3" + } + ] + }, + { + "name": "pin_joint_get_local_b", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "joint_make_hinge", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "hinge_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "hinge_B", + "type": "Transform3D" + } + ] + }, + { + "name": "hinge_joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.HingeJointParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "hinge_joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.HingeJointParam" + } + ] + }, + { + "name": "hinge_joint_set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.HingeJointFlag" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "hinge_joint_get_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.HingeJointFlag" + } + ] + }, + { + "name": "joint_make_slider", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_ref_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_ref_B", + "type": "Transform3D" + } + ] + }, + { + "name": "slider_joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SliderJointParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "slider_joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SliderJointParam" + } + ] + }, + { + "name": "joint_make_cone_twist", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_ref_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_ref_B", + "type": "Transform3D" + } + ] + }, + { + "name": "cone_twist_joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.ConeTwistJointParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "cone_twist_joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.ConeTwistJointParam" + } + ] + }, + { + "name": "joint_get_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::PhysicsServer3D.JointType" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "joint_set_solver_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "joint_get_solver_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "joint_make_generic_6dof", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_ref_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_ref_B", + "type": "Transform3D" + } + ] + }, + { + "name": "generic_6dof_joint_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "generic_6dof_joint_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" + } + ] + }, + { + "name": "generic_6dof_joint_set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "generic_6dof_joint_get_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" + } + ] + }, + { + "name": "free_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "get_process_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "process_info", + "type": "enum::PhysicsServer3D.ProcessInfo" + } + ] + } + ] + }, + { + "name": "PhysicsServer3DExtension", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsServer3D", + "api_type": "core", + "methods": [ + { + "name": "_world_boundary_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_separation_ray_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_sphere_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_box_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_capsule_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_cylinder_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_convex_polygon_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_concave_polygon_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_heightmap_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_custom_shape_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_shape_set_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shape", + "type": "RID" + }, + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "_shape_get_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::PhysicsServer3D.ShapeType" + }, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "_shape_get_data", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "_space_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_space_set_active", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "_space_is_active", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "_space_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SpaceParameter" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "_space_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SpaceParameter" + } + ] + }, + { + "name": "_space_get_direct_state", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PhysicsDirectSpaceState3D" + }, + "arguments": [ + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "_area_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_area_set_space", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "_area_get_space", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "_area_add_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "_area_set_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + }, + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "_area_set_shape_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_area_set_shape_disabled", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "_area_get_shape_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "_area_get_shape", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "_area_get_shape_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "_area_remove_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "_area_clear_shapes", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "_area_set_collision_layer", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "layer", + "type": "int" + } + ] + }, + { + "name": "_area_set_collision_mask", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "mask", + "type": "int" + } + ] + }, + { + "name": "_area_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.AreaParameter" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "_area_set_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_area_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.AreaParameter" + } + ] + }, + { + "name": "_area_get_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "_area_attach_object_instance_id", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "_area_get_object_instance_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "area", + "type": "RID" + } + ] + }, + { + "name": "_area_set_monitor_callback", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "_area_set_area_monitor_callback", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "_area_set_monitorable", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "monitorable", + "type": "bool" + } + ] + }, + { + "name": "_area_set_ray_pickable", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "area", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "_body_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_body_set_space", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "space", + "type": "RID" + } + ] + }, + { + "name": "_body_get_space", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_mode", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::PhysicsServer3D.BodyMode" + } + ] + }, + { + "name": "_body_get_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::PhysicsServer3D.BodyMode" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_collision_layer", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "layer", + "type": "int" + } + ] + }, + { + "name": "_body_get_collision_layer", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_collision_mask", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "mask", + "type": "int" + } + ] + }, + { + "name": "_body_get_collision_mask", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_add_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "_body_set_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + }, + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "_body_set_shape_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_body_set_shape_disabled", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "_body_get_shape_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_get_shape", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "_body_get_shape_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "_body_remove_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "shape_idx", + "type": "int" + } + ] + }, + { + "name": "_body_clear_shapes", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_attach_object_instance_id", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "_body_get_object_instance_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_enable_continuous_collision_detection", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "_body_is_continuous_collision_detection_enabled", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.BodyParameter" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "_body_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.BodyParameter" + } + ] + }, + { + "name": "_body_reset_mass_properties", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_state", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "state", + "type": "enum::PhysicsServer3D.BodyState" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "_body_get_state", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "state", + "type": "enum::PhysicsServer3D.BodyState" + } + ] + }, + { + "name": "_body_apply_central_impulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "_body_apply_impulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "_body_apply_torque_impulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "_body_apply_central_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "_body_apply_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "_body_apply_torque", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "_body_add_constant_central_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "_body_add_constant_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "_body_add_constant_torque", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "_body_set_constant_force", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "_body_get_constant_force", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_constant_torque", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "_body_get_constant_torque", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_axis_velocity", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "_body_set_axis_lock", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::PhysicsServer3D.BodyAxis" + }, + { + "name": "lock", + "type": "bool" + } + ] + }, + { + "name": "_body_is_axis_locked", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::PhysicsServer3D.BodyAxis" + } + ] + }, + { + "name": "_body_add_collision_exception", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "excepted_body", + "type": "RID" + } + ] + }, + { + "name": "_body_remove_collision_exception", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "excepted_body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_max_contacts_reported", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "amount", + "type": "int" + } + ] + }, + { + "name": "_body_get_max_contacts_reported", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_omit_force_integration", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "_body_is_omitting_force_integration", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_body_set_force_integration_callback", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "callable", + "type": "Callable" + }, + { + "name": "userdata", + "type": "Variant" + } + ] + }, + { + "name": "_body_set_ray_pickable", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "_body_test_motion", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + }, + { + "name": "from", + "type": "Transform3D" + }, + { + "name": "motion", + "type": "Vector3" + }, + { + "name": "margin", + "type": "float" + }, + { + "name": "max_collisions", + "type": "int" + }, + { + "name": "collide_separation_ray", + "type": "bool" + }, + { + "name": "result", + "type": "PhysicsServer3DExtensionMotionResult*" + } + ] + }, + { + "name": "_body_get_direct_state", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PhysicsDirectBodyState3D" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_soft_body_get_bounds", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "AABB" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "_joint_create", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "_joint_clear", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "_joint_make_pin", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_A", + "type": "Vector3" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_B", + "type": "Vector3" + } + ] + }, + { + "name": "_pin_joint_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.PinJointParam" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "_pin_joint_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.PinJointParam" + } + ] + }, + { + "name": "_pin_joint_set_local_a", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "local_A", + "type": "Vector3" + } + ] + }, + { + "name": "_pin_joint_get_local_a", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "_pin_joint_set_local_b", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "local_B", + "type": "Vector3" + } + ] + }, + { + "name": "_pin_joint_get_local_b", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "_joint_make_hinge", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "hinge_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "hinge_B", + "type": "Transform3D" + } + ] + }, + { + "name": "_hinge_joint_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.HingeJointParam" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "_hinge_joint_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.HingeJointParam" + } + ] + }, + { + "name": "_hinge_joint_set_flag", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.HingeJointFlag" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "_hinge_joint_get_flag", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.HingeJointFlag" + } + ] + }, + { + "name": "_joint_make_slider", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_ref_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_ref_B", + "type": "Transform3D" + } + ] + }, + { + "name": "_slider_joint_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SliderJointParam" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "_slider_joint_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.SliderJointParam" + } + ] + }, + { + "name": "_joint_make_cone_twist", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_ref_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_ref_B", + "type": "Transform3D" + } + ] + }, + { + "name": "_cone_twist_joint_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.ConeTwistJointParam" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "_cone_twist_joint_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.ConeTwistJointParam" + } + ] + }, + { + "name": "_joint_get_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::PhysicsServer3D.JointType" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "_joint_set_solver_priority", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "priority", + "type": "int" + } + ] + }, + { + "name": "_joint_get_solver_priority", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + } + ] + }, + { + "name": "_joint_make_generic_6dof", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "body_A", + "type": "RID" + }, + { + "name": "local_ref_A", + "type": "Transform3D" + }, + { + "name": "body_B", + "type": "RID" + }, + { + "name": "local_ref_B", + "type": "Transform3D" + } + ] + }, + { + "name": "_generic_6dof_joint_set_param", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "_generic_6dof_joint_get_param", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "param", + "type": "enum::PhysicsServer3D.G6DOFJointAxisParam" + } + ] + }, + { + "name": "_generic_6dof_joint_set_flag", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "_generic_6dof_joint_get_flag", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint", + "type": "RID" + }, + { + "name": "axis", + "type": "enum::Vector3.Axis" + }, + { + "name": "flag", + "type": "enum::PhysicsServer3D.G6DOFJointAxisFlag" + } + ] + }, + { + "name": "_free_rid", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "_set_active", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "_get_process_info", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "process_info", + "type": "enum::PhysicsServer3D.ProcessInfo" + } + ] + } + ] + }, + { + "name": "PhysicsServer3DRenderingServerHandler", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "_set_vertex", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "vertex_id", + "type": "int" + }, + { + "name": "vertices", + "type": "const void*" + } + ] + }, + { + "name": "_set_normal", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "vertex_id", + "type": "int" + }, + { + "name": "normals", + "type": "const void*" + } + ] + }, + { + "name": "_set_aabb", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + } + ] + }, + { + "name": "PhysicsShapeQueryParameters2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Resource" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Resource" + } + }, + { + "name": "set_shape_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "get_shape_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "motion", + "type": "Vector2" + } + ] + }, + { + "name": "get_motion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_exclude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude", + "type": "Array" + } + ] + }, + { + "name": "get_exclude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "exclude", + "setter": "set_exclude", + "getter": "get_exclude", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "Vector2", + "name": "motion", + "setter": "set_motion", + "getter": "get_motion", + "index": -1 + }, + { + "type": "Shape2D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "RID", + "name": "shape_rid", + "setter": "set_shape_rid", + "getter": "get_shape_rid", + "index": -1 + }, + { + "type": "Transform2D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsShapeQueryParameters3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Resource" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Resource" + } + }, + { + "name": "set_shape_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "RID" + } + ] + }, + { + "name": "get_shape_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "motion", + "type": "Vector3" + } + ] + }, + { + "name": "get_motion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_exclude", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude", + "type": "Array" + } + ] + }, + { + "name": "get_exclude", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "exclude", + "setter": "set_exclude", + "getter": "get_exclude", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "Vector2", + "name": "motion", + "setter": "set_motion", + "getter": "get_motion", + "index": -1 + }, + { + "type": "Shape3D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "RID", + "name": "shape_rid", + "setter": "set_shape_rid", + "getter": "get_shape_rid", + "index": -1 + }, + { + "type": "Transform3D", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsTestMotionParameters2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "from", + "type": "Transform2D" + } + ] + }, + { + "name": "get_motion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "motion", + "type": "Vector2" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "is_collide_separation_ray_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_separation_ray_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_bodies", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_exclude_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_list", + "type": "Array" + } + ] + }, + { + "name": "get_exclude_objects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_exclude_objects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_list", + "type": "Array" + } + ] + }, + { + "name": "is_recovery_as_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_recovery_as_collision_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "Transform2D", + "name": "from", + "setter": "set_from", + "getter": "get_from", + "index": -1 + }, + { + "type": "Vector2", + "name": "motion", + "setter": "set_motion", + "getter": "get_motion", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "bool", + "name": "collide_separation_ray", + "setter": "set_collide_separation_ray_enabled", + "getter": "is_collide_separation_ray_enabled", + "index": -1 + }, + { + "type": "Array", + "name": "exclude_bodies", + "setter": "set_exclude_bodies", + "getter": "get_exclude_bodies", + "index": -1 + }, + { + "type": "Array", + "name": "exclude_objects", + "setter": "set_exclude_objects", + "getter": "get_exclude_objects", + "index": -1 + }, + { + "type": "bool", + "name": "recovery_as_collision", + "setter": "set_recovery_as_collision_enabled", + "getter": "is_recovery_as_collision_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsTestMotionParameters3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "from", + "type": "Transform3D" + } + ] + }, + { + "name": "get_motion", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "motion", + "type": "Vector3" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_collisions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_collisions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_collisions", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_collide_separation_ray_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_separation_ray_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_bodies", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_exclude_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_list", + "type": "Array" + } + ] + }, + { + "name": "get_exclude_objects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_exclude_objects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclude_list", + "type": "Array" + } + ] + }, + { + "name": "is_recovery_as_collision_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_recovery_as_collision_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "Transform3D", + "name": "from", + "setter": "set_from", + "getter": "get_from", + "index": -1 + }, + { + "type": "Vector3", + "name": "motion", + "setter": "set_motion", + "getter": "get_motion", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "int", + "name": "max_collisions", + "setter": "set_max_collisions", + "getter": "get_max_collisions", + "index": -1 + }, + { + "type": "bool", + "name": "collide_separation_ray", + "setter": "set_collide_separation_ray_enabled", + "getter": "is_collide_separation_ray_enabled", + "index": -1 + }, + { + "type": "Array", + "name": "exclude_bodies", + "setter": "set_exclude_bodies", + "getter": "get_exclude_bodies", + "index": -1 + }, + { + "type": "Array", + "name": "exclude_objects", + "setter": "set_exclude_objects", + "getter": "get_exclude_objects", + "index": -1 + }, + { + "type": "bool", + "name": "recovery_as_collision", + "setter": "set_recovery_as_collision_enabled", + "getter": "is_recovery_as_collision_enabled", + "index": -1 + } + ] + }, + { + "name": "PhysicsTestMotionResult2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_travel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_remainder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_collision_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_collision_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_collider_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_collider_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_collider_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_collision_local_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_collision_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_collision_safe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_collision_unsafe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ] + }, + { + "name": "PhysicsTestMotionResult3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_travel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_remainder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_collision_safe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_collision_unsafe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_collision_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_collision_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collision_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collision_local_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_collision_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "collision_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + } + ] + }, + { + "name": "PinJoint2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint2D", + "api_type": "core", + "methods": [ + { + "name": "set_softness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "softness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_softness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "softness", + "setter": "set_softness", + "getter": "get_softness", + "index": -1 + } + ] + }, + { + "name": "PinJoint3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint3D", + "api_type": "core", + "enums": [ + { + "name": "Param", + "values": [ + { + "name": "PARAM_BIAS", + "value": 0 + }, + { + "name": "PARAM_DAMPING", + "value": 1 + }, + { + "name": "PARAM_IMPULSE_CLAMP", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::PinJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::PinJoint3D.Param" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "params/bias", + "setter": "set_param", + "getter": "get_param", + "index": 0 + }, + { + "type": "float", + "name": "params/damping", + "setter": "set_param", + "getter": "get_param", + "index": 1 + }, + { + "type": "float", + "name": "params/impulse_clamp", + "setter": "set_param", + "getter": "get_param", + "index": 2 + } + ] + }, + { + "name": "PlaceholderCubemap", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PlaceholderTextureLayered", + "api_type": "core" + }, + { + "name": "PlaceholderCubemapArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PlaceholderTextureLayered", + "api_type": "core" + }, + { + "name": "PlaceholderMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core" + }, + { + "name": "PlaceholderMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Mesh", + "api_type": "core", + "methods": [ + { + "name": "set_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + } + ], + "properties": [ + { + "type": "AABB", + "name": "aabb", + "setter": "set_aabb", + "getter": "get_aabb", + "index": -1 + } + ] + }, + { + "name": "PlaceholderTexture2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + } + ], + "properties": [ + { + "type": "Vector2i", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "PlaceholderTexture2DArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PlaceholderTextureLayered", + "api_type": "core" + }, + { + "name": "PlaceholderTexture3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture3D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3i" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3i" + } + } + ], + "properties": [ + { + "type": "Vector3i", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "PlaceholderTextureLayered", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "TextureLayered", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layers", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "Vector2i", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "int", + "name": "layers", + "setter": "set_layers", + "getter": "get_layers", + "index": -1 + } + ] + }, + { + "name": "PlaneMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_subdivide_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subdivide", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_subdivide_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subdivide", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_center_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_center_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_width", + "setter": "set_subdivide_width", + "getter": "get_subdivide_width", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_depth", + "setter": "set_subdivide_depth", + "getter": "get_subdivide_depth", + "index": -1 + }, + { + "type": "Vector3", + "name": "center_offset", + "setter": "set_center_offset", + "getter": "get_center_offset", + "index": -1 + } + ] + }, + { + "name": "PointLight2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Light2D", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_texture_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_texture_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_texture_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_texture_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_texture_offset", + "getter": "get_texture_offset", + "index": -1 + }, + { + "type": "float", + "name": "texture_scale", + "setter": "set_texture_scale", + "getter": "get_texture_scale", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + } + ] + }, + { + "name": "PointMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core" + }, + { + "name": "Polygon2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_uv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uv", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_uv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_polygons", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygons", + "type": "Array" + } + ] + }, + { + "name": "get_polygons", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_vertex_colors", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertex_colors", + "type": "PackedColorArray" + } + ] + }, + { + "name": "get_vertex_colors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedColorArray" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_texture_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_texture_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_texture_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_rotation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_texture_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_texture_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_scale", + "type": "Vector2" + } + ] + }, + { + "name": "get_texture_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_invert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "get_invert", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_antialiased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "antialiased", + "type": "bool" + } + ] + }, + { + "name": "get_antialiased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_invert_border", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "invert_border", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_invert_border", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "add_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "weights", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "get_bone_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_bone_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_weights", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedFloat32Array" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "erase_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_bone_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "set_bone_weights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "weights", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "set_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skeleton", + "type": "NodePath" + } + ] + }, + { + "name": "get_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_internal_vertex_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "internal_vertex_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_internal_vertex_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "bool", + "name": "antialiased", + "setter": "set_antialiased", + "getter": "get_antialiased", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "Vector2", + "name": "texture_offset", + "setter": "set_texture_offset", + "getter": "get_texture_offset", + "index": -1 + }, + { + "type": "Vector2", + "name": "texture_scale", + "setter": "set_texture_scale", + "getter": "get_texture_scale", + "index": -1 + }, + { + "type": "float", + "name": "texture_rotation", + "setter": "set_texture_rotation", + "getter": "get_texture_rotation", + "index": -1 + }, + { + "type": "NodePath", + "name": "skeleton", + "setter": "set_skeleton", + "getter": "get_skeleton", + "index": -1 + }, + { + "type": "bool", + "name": "invert_enable", + "setter": "set_invert", + "getter": "get_invert", + "index": -1 + }, + { + "type": "float", + "name": "invert_border", + "setter": "set_invert_border", + "getter": "get_invert_border", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "polygon", + "setter": "set_polygon", + "getter": "get_polygon", + "index": -1 + }, + { + "type": "PackedVector2Array", + "name": "uv", + "setter": "set_uv", + "getter": "get_uv", + "index": -1 + }, + { + "type": "PackedColorArray", + "name": "vertex_colors", + "setter": "set_vertex_colors", + "getter": "get_vertex_colors", + "index": -1 + }, + { + "type": "Array", + "name": "polygons", + "setter": "set_polygons", + "getter": "get_polygons", + "index": -1 + }, + { + "type": "Array", + "name": "bones", + "setter": "_set_bones", + "getter": "_get_bones", + "index": -1 + }, + { + "type": "int", + "name": "internal_vertex_count", + "setter": "set_internal_vertex_count", + "getter": "get_internal_vertex_count", + "index": -1 + } + ] + }, + { + "name": "PolygonOccluder3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Occluder3D", + "api_type": "core", + "methods": [ + { + "name": "set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector2Array" + } + } + ], + "properties": [ + { + "type": "PackedVector2Array", + "name": "polygon", + "setter": "set_polygon", + "getter": "get_polygon", + "index": -1 + } + ] + }, + { + "name": "PolygonPathFinder", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "connections", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "find_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "get_intersections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + } + ] + }, + { + "name": "get_closest_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "is_point_inside", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "set_point_penalty", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "penalty", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_point_penalty", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bounds", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "data", + "setter": "_set_data", + "getter": "_get_data", + "index": -1 + } + ] + }, + { + "name": "Popup", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Window", + "api_type": "core", + "signals": [ + { + "name": "popup_hide" + } + ] + }, + { + "name": "PopupMenu", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Popup", + "api_type": "core", + "methods": [ + { + "name": "add_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_icon_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_icon_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_radio_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_icon_radio_check_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "label", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_multistate_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2478042392, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "max_states", + "type": "int", + "meta": "int32" + }, + { + "name": "default_state", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "accel", + "type": "enum::Key", + "default_value": "0" + } + ] + }, + { + "name": "add_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_icon_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_check_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_icon_check_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_radio_check_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_icon_radio_check_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "add_submenu_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "submenu", + "type": "String" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_item_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "set_item_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "set_item_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "set_item_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "set_item_checked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "checked", + "type": "bool" + } + ] + }, + { + "name": "set_item_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_accelerator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "accel", + "type": "enum::Key" + } + ] + }, + { + "name": "set_item_metadata", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "metadata", + "type": "Variant" + } + ] + }, + { + "name": "set_item_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "set_item_submenu", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "submenu", + "type": "String" + } + ] + }, + { + "name": "set_item_as_separator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_item_as_checkable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_item_as_radio_checkable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "set_item_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "tooltip", + "type": "String" + } + ] + }, + { + "name": "set_item_shortcut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "shortcut", + "type": "Shortcut" + }, + { + "name": "global", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_item_multistate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "state", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_item_shortcut_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "toggle_item_checked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "toggle_item_multistate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Control.TextDirection" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_item_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_checked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_accelerator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Key" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_submenu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_separator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_checkable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_radio_checkable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_item_shortcut_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_shortcut", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Shortcut" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_current_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_item_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_item_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "scroll_to_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_separator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 313699832, + "arguments": [ + { + "name": "label", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_hide_on_item_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hide_on_item_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hide_on_checkable_item_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hide_on_checkable_item_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hide_on_state_item_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hide_on_state_item_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_submenu_popup_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seconds", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_submenu_popup_delay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_allow_search", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "get_allow_search", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "id_pressed", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "id_focused", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + }, + { + "name": "index_pressed", + "arguments": [ + { + "name": "index", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "hide_on_item_selection", + "setter": "set_hide_on_item_selection", + "getter": "is_hide_on_item_selection", + "index": -1 + }, + { + "type": "bool", + "name": "hide_on_checkable_item_selection", + "setter": "set_hide_on_checkable_item_selection", + "getter": "is_hide_on_checkable_item_selection", + "index": -1 + }, + { + "type": "bool", + "name": "hide_on_state_item_selection", + "setter": "set_hide_on_state_item_selection", + "getter": "is_hide_on_state_item_selection", + "index": -1 + }, + { + "type": "float", + "name": "submenu_popup_delay", + "setter": "set_submenu_popup_delay", + "getter": "get_submenu_popup_delay", + "index": -1 + }, + { + "type": "bool", + "name": "allow_search", + "setter": "set_allow_search", + "getter": "get_allow_search", + "index": -1 + }, + { + "type": "Items,item_", + "name": "item_count", + "setter": "set_item_count", + "getter": "get_item_count", + "index": -1 + } + ] + }, + { + "name": "PopupPanel", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Popup", + "api_type": "core" + }, + { + "name": "PortableCompressedTexture2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "enums": [ + { + "name": "CompressionMode", + "values": [ + { + "name": "COMPRESSION_MODE_LOSSLESS", + "value": 0 + }, + { + "name": "COMPRESSION_MODE_LOSSY", + "value": 1 + }, + { + "name": "COMPRESSION_MODE_BASIS_UNIVERSAL", + "value": 2 + }, + { + "name": "COMPRESSION_MODE_S3TC", + "value": 3 + }, + { + "name": "COMPRESSION_MODE_ETC2", + "value": 4 + }, + { + "name": "COMPRESSION_MODE_BPTC", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "create_from_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "image", + "type": "Image" + }, + { + "name": "compression_mode", + "type": "enum::PortableCompressedTexture2D.CompressionMode" + }, + { + "name": "normal_map", + "type": "bool", + "default_value": "false" + }, + { + "name": "lossy_quality", + "type": "float", + "meta": "float", + "default_value": "0.8" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "get_compression_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::PortableCompressedTexture2D.CompressionMode" + } + }, + { + "name": "set_size_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_keep_compressed_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keep", + "type": "bool" + } + ] + }, + { + "name": "is_keeping_compressed_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_keep_all_compressed_buffers", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "keep", + "type": "bool" + } + ] + }, + { + "name": "is_keeping_all_compressed_buffers", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "size_override", + "setter": "set_size_override", + "getter": "get_size_override", + "index": -1 + }, + { + "type": "bool", + "name": "keep_compressed_buffer", + "setter": "set_keep_compressed_buffer", + "getter": "is_keeping_compressed_buffer", + "index": -1 + } + ] + }, + { + "name": "Position2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_gizmo_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gizmo_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "gizmo_extents", + "setter": "set_gizmo_extents", + "getter": "get_gizmo_extents", + "index": -1 + } + ] + }, + { + "name": "Position3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core" + }, + { + "name": "PrimitiveMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Mesh", + "api_type": "core", + "methods": [ + { + "name": "_create_mesh_array", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + }, + { + "name": "get_mesh_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_custom_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "get_custom_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "set_flip_faces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_faces", + "type": "bool" + } + ] + }, + { + "name": "get_flip_faces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "BaseMaterial3D,ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + }, + { + "type": "AABB", + "name": "custom_aabb", + "setter": "set_custom_aabb", + "getter": "get_custom_aabb", + "index": -1 + }, + { + "type": "bool", + "name": "flip_faces", + "setter": "set_flip_faces", + "getter": "get_flip_faces", + "index": -1 + } + ] + }, + { + "name": "PrismMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_left_to_right", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "left_to_right", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_left_to_right", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector3" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_subdivide_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_subdivide_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_subdivide_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_subdivide_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "float", + "name": "left_to_right", + "setter": "set_left_to_right", + "getter": "get_left_to_right", + "index": -1 + }, + { + "type": "Vector3", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_width", + "setter": "set_subdivide_width", + "getter": "get_subdivide_width", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_height", + "setter": "set_subdivide_height", + "getter": "get_subdivide_height", + "index": -1 + }, + { + "type": "int", + "name": "subdivide_depth", + "setter": "set_subdivide_depth", + "getter": "get_subdivide_depth", + "index": -1 + } + ] + }, + { + "name": "ProceduralSkyMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "methods": [ + { + "name": "set_sky_top_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_sky_top_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_sky_horizon_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_sky_horizon_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_sky_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sky_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sky_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sky_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sky_cover", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sky_cover", + "type": "Texture2D" + } + ] + }, + { + "name": "get_sky_cover", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_sky_cover_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_sky_cover_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_ground_bottom_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_ground_bottom_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_ground_horizon_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_ground_horizon_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_ground_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ground_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ground_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ground_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sun_angle_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "degrees", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sun_angle_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sun_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sun_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_debanding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_debanding", + "type": "bool" + } + ] + }, + { + "name": "get_use_debanding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "sky_top_color", + "setter": "set_sky_top_color", + "getter": "get_sky_top_color", + "index": -1 + }, + { + "type": "Color", + "name": "sky_horizon_color", + "setter": "set_sky_horizon_color", + "getter": "get_sky_horizon_color", + "index": -1 + }, + { + "type": "float", + "name": "sky_curve", + "setter": "set_sky_curve", + "getter": "get_sky_curve", + "index": -1 + }, + { + "type": "float", + "name": "sky_energy", + "setter": "set_sky_energy", + "getter": "get_sky_energy", + "index": -1 + }, + { + "type": "Texture2D", + "name": "sky_cover", + "setter": "set_sky_cover", + "getter": "get_sky_cover", + "index": -1 + }, + { + "type": "Color", + "name": "sky_cover_modulate", + "setter": "set_sky_cover_modulate", + "getter": "get_sky_cover_modulate", + "index": -1 + }, + { + "type": "Color", + "name": "ground_bottom_color", + "setter": "set_ground_bottom_color", + "getter": "get_ground_bottom_color", + "index": -1 + }, + { + "type": "Color", + "name": "ground_horizon_color", + "setter": "set_ground_horizon_color", + "getter": "get_ground_horizon_color", + "index": -1 + }, + { + "type": "float", + "name": "ground_curve", + "setter": "set_ground_curve", + "getter": "get_ground_curve", + "index": -1 + }, + { + "type": "float", + "name": "ground_energy", + "setter": "set_ground_energy", + "getter": "get_ground_energy", + "index": -1 + }, + { + "type": "float", + "name": "sun_angle_max", + "setter": "set_sun_angle_max", + "getter": "get_sun_angle_max", + "index": -1 + }, + { + "type": "float", + "name": "sun_curve", + "setter": "set_sun_curve", + "getter": "get_sun_curve", + "index": -1 + }, + { + "type": "bool", + "name": "use_debanding", + "setter": "set_use_debanding", + "getter": "get_use_debanding", + "index": -1 + } + ] + }, + { + "name": "ProgressBar", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Range", + "api_type": "core", + "enums": [ + { + "name": "FillMode", + "values": [ + { + "name": "FILL_BEGIN_TO_END", + "value": 0 + }, + { + "name": "FILL_END_TO_BEGIN", + "value": 1 + }, + { + "name": "FILL_TOP_TO_BOTTOM", + "value": 2 + }, + { + "name": "FILL_BOTTOM_TO_TOP", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_fill_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fill_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_percent_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "is_percent_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "fill_mode", + "setter": "set_fill_mode", + "getter": "get_fill_mode", + "index": -1 + }, + { + "type": "bool", + "name": "percent_visible", + "setter": "set_percent_visible", + "getter": "is_percent_visible", + "index": -1 + } + ] + }, + { + "name": "ProjectSettings", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "has_setting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_setting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_setting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_order", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_initial_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "add_property_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hint", + "type": "Dictionary" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "localize_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "globalize_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "save", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "load_resource_pack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474136396, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "pack", + "type": "String" + }, + { + "name": "replace_files", + "type": "bool", + "default_value": "true" + }, + { + "name": "offset", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "property_can_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "property_get_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "save_custom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + } + ] + }, + { + "name": "PropertyTweener", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Tweener", + "api_type": "core", + "methods": [ + { + "name": "from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PropertyTweener" + }, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "from_current", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PropertyTweener" + } + }, + { + "name": "as_relative", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PropertyTweener" + } + }, + { + "name": "set_trans", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PropertyTweener" + }, + "arguments": [ + { + "name": "trans", + "type": "enum::Tween.TransitionType" + } + ] + }, + { + "name": "set_ease", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PropertyTweener" + }, + "arguments": [ + { + "name": "ease", + "type": "enum::Tween.EaseType" + } + ] + }, + { + "name": "set_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PropertyTweener" + }, + "arguments": [ + { + "name": "delay", + "type": "float", + "meta": "float" + } + ] + } + ] + }, + { + "name": "ProxyTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_base", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base", + "type": "Texture2D" + } + ] + }, + { + "name": "get_base", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "base", + "setter": "set_base", + "getter": "get_base", + "index": -1 + } + ] + }, + { + "name": "QuadMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_center_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "center_offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_center_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "Vector3", + "name": "center_offset", + "setter": "set_center_offset", + "getter": "get_center_offset", + "index": -1 + } + ] + }, + { + "name": "QuadOccluder3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Occluder3D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "RDAttachmentFormat", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.DataFormat" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.DataFormat" + } + }, + { + "name": "set_samples", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSamples" + } + ] + }, + { + "name": "get_samples", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSamples" + } + }, + { + "name": "set_usage_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_usage_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "format", + "setter": "set_format", + "getter": "get_format", + "index": -1 + }, + { + "type": "int", + "name": "samples", + "setter": "set_samples", + "getter": "get_samples", + "index": -1 + }, + { + "type": "int", + "name": "usage_flags", + "setter": "set_usage_flags", + "getter": "get_usage_flags", + "index": -1 + } + ] + }, + { + "name": "RDFramebufferPass", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "constants": [ + { + "name": "ATTACHMENT_UNUSED", + "value": -1 + } + ], + "methods": [ + { + "name": "set_color_attachments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_color_attachments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_input_attachments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_input_attachments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_resolve_attachments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_resolve_attachments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_preserve_attachments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_preserve_attachments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_depth_attachment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_depth_attachment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "PackedInt32Array", + "name": "color_attachments", + "setter": "set_color_attachments", + "getter": "get_color_attachments", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "input_attachments", + "setter": "set_input_attachments", + "getter": "get_input_attachments", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "resolve_attachments", + "setter": "set_resolve_attachments", + "getter": "get_resolve_attachments", + "index": -1 + }, + { + "type": "PackedInt32Array", + "name": "preserve_attachments", + "setter": "set_preserve_attachments", + "getter": "get_preserve_attachments", + "index": -1 + }, + { + "type": "int", + "name": "depth_attachment", + "setter": "set_depth_attachment", + "getter": "get_depth_attachment", + "index": -1 + } + ] + }, + { + "name": "RDPipelineColorBlendState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_enable_logic_op", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_logic_op", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_logic_op", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.LogicOperation" + } + ] + }, + { + "name": "get_logic_op", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.LogicOperation" + } + }, + { + "name": "set_blend_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "Color" + } + ] + }, + { + "name": "get_blend_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_attachments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "attachments", + "type": "Array" + } + ] + }, + { + "name": "get_attachments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enable_logic_op", + "setter": "set_enable_logic_op", + "getter": "get_enable_logic_op", + "index": -1 + }, + { + "type": "int", + "name": "logic_op", + "setter": "set_logic_op", + "getter": "get_logic_op", + "index": -1 + }, + { + "type": "Color", + "name": "blend_constant", + "setter": "set_blend_constant", + "getter": "get_blend_constant", + "index": -1 + }, + { + "type": "Array", + "name": "attachments", + "setter": "set_attachments", + "getter": "get_attachments", + "index": -1 + } + ] + }, + { + "name": "RDPipelineColorBlendStateAttachment", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_as_mix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_enable_blend", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_blend", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_src_color_blend_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.BlendFactor" + } + ] + }, + { + "name": "get_src_color_blend_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.BlendFactor" + } + }, + { + "name": "set_dst_color_blend_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.BlendFactor" + } + ] + }, + { + "name": "get_dst_color_blend_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.BlendFactor" + } + }, + { + "name": "set_color_blend_op", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.BlendOperation" + } + ] + }, + { + "name": "get_color_blend_op", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.BlendOperation" + } + }, + { + "name": "set_src_alpha_blend_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.BlendFactor" + } + ] + }, + { + "name": "get_src_alpha_blend_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.BlendFactor" + } + }, + { + "name": "set_dst_alpha_blend_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.BlendFactor" + } + ] + }, + { + "name": "get_dst_alpha_blend_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.BlendFactor" + } + }, + { + "name": "set_alpha_blend_op", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.BlendOperation" + } + ] + }, + { + "name": "get_alpha_blend_op", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.BlendOperation" + } + }, + { + "name": "set_write_r", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_write_r", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_write_g", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_write_g", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_write_b", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_write_b", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_write_a", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_write_a", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enable_blend", + "setter": "set_enable_blend", + "getter": "get_enable_blend", + "index": -1 + }, + { + "type": "int", + "name": "src_color_blend_factor", + "setter": "set_src_color_blend_factor", + "getter": "get_src_color_blend_factor", + "index": -1 + }, + { + "type": "int", + "name": "dst_color_blend_factor", + "setter": "set_dst_color_blend_factor", + "getter": "get_dst_color_blend_factor", + "index": -1 + }, + { + "type": "int", + "name": "color_blend_op", + "setter": "set_color_blend_op", + "getter": "get_color_blend_op", + "index": -1 + }, + { + "type": "int", + "name": "src_alpha_blend_factor", + "setter": "set_src_alpha_blend_factor", + "getter": "get_src_alpha_blend_factor", + "index": -1 + }, + { + "type": "int", + "name": "dst_alpha_blend_factor", + "setter": "set_dst_alpha_blend_factor", + "getter": "get_dst_alpha_blend_factor", + "index": -1 + }, + { + "type": "int", + "name": "alpha_blend_op", + "setter": "set_alpha_blend_op", + "getter": "get_alpha_blend_op", + "index": -1 + }, + { + "type": "bool", + "name": "write_r", + "setter": "set_write_r", + "getter": "get_write_r", + "index": -1 + }, + { + "type": "bool", + "name": "write_g", + "setter": "set_write_g", + "getter": "get_write_g", + "index": -1 + }, + { + "type": "bool", + "name": "write_b", + "setter": "set_write_b", + "getter": "get_write_b", + "index": -1 + }, + { + "type": "bool", + "name": "write_a", + "setter": "set_write_a", + "getter": "get_write_a", + "index": -1 + } + ] + }, + { + "name": "RDPipelineDepthStencilState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_enable_depth_test", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_depth_test", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_enable_depth_write", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_depth_write", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_depth_compare_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.CompareOperator" + } + ] + }, + { + "name": "get_depth_compare_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.CompareOperator" + } + }, + { + "name": "set_enable_depth_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_depth_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_depth_range_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_range_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_depth_range_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_range_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_enable_stencil", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_stencil", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_front_op_fail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.StencilOperation" + } + ] + }, + { + "name": "get_front_op_fail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.StencilOperation" + } + }, + { + "name": "set_front_op_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.StencilOperation" + } + ] + }, + { + "name": "get_front_op_pass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.StencilOperation" + } + }, + { + "name": "set_front_op_depth_fail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.StencilOperation" + } + ] + }, + { + "name": "get_front_op_depth_fail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.StencilOperation" + } + }, + { + "name": "set_front_op_compare", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.CompareOperator" + } + ] + }, + { + "name": "get_front_op_compare", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.CompareOperator" + } + }, + { + "name": "set_front_op_compare_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_front_op_compare_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_front_op_write_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_front_op_write_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_front_op_reference", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_front_op_reference", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_back_op_fail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.StencilOperation" + } + ] + }, + { + "name": "get_back_op_fail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.StencilOperation" + } + }, + { + "name": "set_back_op_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.StencilOperation" + } + ] + }, + { + "name": "get_back_op_pass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.StencilOperation" + } + }, + { + "name": "set_back_op_depth_fail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.StencilOperation" + } + ] + }, + { + "name": "get_back_op_depth_fail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.StencilOperation" + } + }, + { + "name": "set_back_op_compare", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.CompareOperator" + } + ] + }, + { + "name": "get_back_op_compare", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.CompareOperator" + } + }, + { + "name": "set_back_op_compare_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_back_op_compare_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_back_op_write_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_back_op_write_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_back_op_reference", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_back_op_reference", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enable_depth_test", + "setter": "set_enable_depth_test", + "getter": "get_enable_depth_test", + "index": -1 + }, + { + "type": "bool", + "name": "enable_depth_write", + "setter": "set_enable_depth_write", + "getter": "get_enable_depth_write", + "index": -1 + }, + { + "type": "int", + "name": "depth_compare_operator", + "setter": "set_depth_compare_operator", + "getter": "get_depth_compare_operator", + "index": -1 + }, + { + "type": "bool", + "name": "enable_depth_range", + "setter": "set_enable_depth_range", + "getter": "get_enable_depth_range", + "index": -1 + }, + { + "type": "float", + "name": "depth_range_min", + "setter": "set_depth_range_min", + "getter": "get_depth_range_min", + "index": -1 + }, + { + "type": "float", + "name": "depth_range_max", + "setter": "set_depth_range_max", + "getter": "get_depth_range_max", + "index": -1 + }, + { + "type": "bool", + "name": "enable_stencil", + "setter": "set_enable_stencil", + "getter": "get_enable_stencil", + "index": -1 + }, + { + "type": "int", + "name": "front_op_fail", + "setter": "set_front_op_fail", + "getter": "get_front_op_fail", + "index": -1 + }, + { + "type": "int", + "name": "front_op_pass", + "setter": "set_front_op_pass", + "getter": "get_front_op_pass", + "index": -1 + }, + { + "type": "int", + "name": "front_op_depth_fail", + "setter": "set_front_op_depth_fail", + "getter": "get_front_op_depth_fail", + "index": -1 + }, + { + "type": "int", + "name": "front_op_compare", + "setter": "set_front_op_compare", + "getter": "get_front_op_compare", + "index": -1 + }, + { + "type": "int", + "name": "front_op_compare_mask", + "setter": "set_front_op_compare_mask", + "getter": "get_front_op_compare_mask", + "index": -1 + }, + { + "type": "int", + "name": "front_op_write_mask", + "setter": "set_front_op_write_mask", + "getter": "get_front_op_write_mask", + "index": -1 + }, + { + "type": "int", + "name": "front_op_reference", + "setter": "set_front_op_reference", + "getter": "get_front_op_reference", + "index": -1 + }, + { + "type": "int", + "name": "back_op_fail", + "setter": "set_back_op_fail", + "getter": "get_back_op_fail", + "index": -1 + }, + { + "type": "int", + "name": "back_op_pass", + "setter": "set_back_op_pass", + "getter": "get_back_op_pass", + "index": -1 + }, + { + "type": "int", + "name": "back_op_depth_fail", + "setter": "set_back_op_depth_fail", + "getter": "get_back_op_depth_fail", + "index": -1 + }, + { + "type": "int", + "name": "back_op_compare", + "setter": "set_back_op_compare", + "getter": "get_back_op_compare", + "index": -1 + }, + { + "type": "int", + "name": "back_op_compare_mask", + "setter": "set_back_op_compare_mask", + "getter": "get_back_op_compare_mask", + "index": -1 + }, + { + "type": "int", + "name": "back_op_write_mask", + "setter": "set_back_op_write_mask", + "getter": "get_back_op_write_mask", + "index": -1 + }, + { + "type": "int", + "name": "back_op_reference", + "setter": "set_back_op_reference", + "getter": "get_back_op_reference", + "index": -1 + } + ] + }, + { + "name": "RDPipelineMultisampleState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_sample_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSamples" + } + ] + }, + { + "name": "get_sample_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSamples" + } + }, + { + "name": "set_enable_sample_shading", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_sample_shading", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_min_sample_shading", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_min_sample_shading", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_enable_alpha_to_coverage", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_alpha_to_coverage", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_enable_alpha_to_one", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_alpha_to_one", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_sample_masks", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "masks", + "type": "Array" + } + ] + }, + { + "name": "get_sample_masks", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "int", + "name": "sample_count", + "setter": "set_sample_count", + "getter": "get_sample_count", + "index": -1 + }, + { + "type": "bool", + "name": "enable_sample_shading", + "setter": "set_enable_sample_shading", + "getter": "get_enable_sample_shading", + "index": -1 + }, + { + "type": "float", + "name": "min_sample_shading", + "setter": "set_min_sample_shading", + "getter": "get_min_sample_shading", + "index": -1 + }, + { + "type": "bool", + "name": "enable_alpha_to_coverage", + "setter": "set_enable_alpha_to_coverage", + "getter": "get_enable_alpha_to_coverage", + "index": -1 + }, + { + "type": "bool", + "name": "enable_alpha_to_one", + "setter": "set_enable_alpha_to_one", + "getter": "get_enable_alpha_to_one", + "index": -1 + }, + { + "type": "Array", + "name": "sample_masks", + "setter": "set_sample_masks", + "getter": "get_sample_masks", + "index": -1 + } + ] + }, + { + "name": "RDPipelineRasterizationState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_enable_depth_clamp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_depth_clamp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_discard_primitives", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_discard_primitives", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_wireframe", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_wireframe", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_cull_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.PolygonCullMode" + } + ] + }, + { + "name": "get_cull_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.PolygonCullMode" + } + }, + { + "name": "set_front_face", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.PolygonFrontFace" + } + ] + }, + { + "name": "get_front_face", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.PolygonFrontFace" + } + }, + { + "name": "set_depth_bias_enable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_depth_bias_enable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_depth_bias_constant_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_bias_constant_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_depth_bias_clamp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_bias_clamp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_depth_bias_slope_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth_bias_slope_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_line_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_line_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_patch_control_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_patch_control_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enable_depth_clamp", + "setter": "set_enable_depth_clamp", + "getter": "get_enable_depth_clamp", + "index": -1 + }, + { + "type": "bool", + "name": "discard_primitives", + "setter": "set_discard_primitives", + "getter": "get_discard_primitives", + "index": -1 + }, + { + "type": "bool", + "name": "wireframe", + "setter": "set_wireframe", + "getter": "get_wireframe", + "index": -1 + }, + { + "type": "int", + "name": "cull_mode", + "setter": "set_cull_mode", + "getter": "get_cull_mode", + "index": -1 + }, + { + "type": "int", + "name": "front_face", + "setter": "set_front_face", + "getter": "get_front_face", + "index": -1 + }, + { + "type": "bool", + "name": "depth_bias_enable", + "setter": "set_depth_bias_enable", + "getter": "get_depth_bias_enable", + "index": -1 + }, + { + "type": "float", + "name": "depth_bias_constant_factor", + "setter": "set_depth_bias_constant_factor", + "getter": "get_depth_bias_constant_factor", + "index": -1 + }, + { + "type": "float", + "name": "depth_bias_clamp", + "setter": "set_depth_bias_clamp", + "getter": "get_depth_bias_clamp", + "index": -1 + }, + { + "type": "float", + "name": "depth_bias_slope_factor", + "setter": "set_depth_bias_slope_factor", + "getter": "get_depth_bias_slope_factor", + "index": -1 + }, + { + "type": "float", + "name": "line_width", + "setter": "set_line_width", + "getter": "get_line_width", + "index": -1 + }, + { + "type": "int", + "name": "patch_control_points", + "setter": "set_patch_control_points", + "getter": "get_patch_control_points", + "index": -1 + } + ] + }, + { + "name": "RDPipelineSpecializationConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + }, + { + "name": "set_constant_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant_id", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_constant_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + } + ], + "properties": [ + { + "type": "Variant", + "name": "value", + "setter": "set_value", + "getter": "get_value", + "index": -1 + }, + { + "type": "int", + "name": "constant_id", + "setter": "set_constant_id", + "getter": "get_constant_id", + "index": -1 + } + ] + }, + { + "name": "RDSamplerState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_mag_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerFilter" + } + ] + }, + { + "name": "get_mag_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerFilter" + } + }, + { + "name": "set_min_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerFilter" + } + ] + }, + { + "name": "get_min_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerFilter" + } + }, + { + "name": "set_mip_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerFilter" + } + ] + }, + { + "name": "get_mip_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerFilter" + } + }, + { + "name": "set_repeat_u", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerRepeatMode" + } + ] + }, + { + "name": "get_repeat_u", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerRepeatMode" + } + }, + { + "name": "set_repeat_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerRepeatMode" + } + ] + }, + { + "name": "get_repeat_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerRepeatMode" + } + }, + { + "name": "set_repeat_w", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerRepeatMode" + } + ] + }, + { + "name": "get_repeat_w", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerRepeatMode" + } + }, + { + "name": "set_lod_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_lod_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_anisotropy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_use_anisotropy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_anisotropy_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_anisotropy_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_enable_compare", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_enable_compare", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_compare_op", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.CompareOperator" + } + ] + }, + { + "name": "get_compare_op", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.CompareOperator" + } + }, + { + "name": "set_min_lod", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_min_lod", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_lod", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_lod", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_border_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.SamplerBorderColor" + } + ] + }, + { + "name": "get_border_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.SamplerBorderColor" + } + }, + { + "name": "set_unnormalized_uvw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "bool" + } + ] + }, + { + "name": "get_unnormalized_uvw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "mag_filter", + "setter": "set_mag_filter", + "getter": "get_mag_filter", + "index": -1 + }, + { + "type": "int", + "name": "min_filter", + "setter": "set_min_filter", + "getter": "get_min_filter", + "index": -1 + }, + { + "type": "int", + "name": "mip_filter", + "setter": "set_mip_filter", + "getter": "get_mip_filter", + "index": -1 + }, + { + "type": "int", + "name": "repeat_u", + "setter": "set_repeat_u", + "getter": "get_repeat_u", + "index": -1 + }, + { + "type": "int", + "name": "repeat_v", + "setter": "set_repeat_v", + "getter": "get_repeat_v", + "index": -1 + }, + { + "type": "int", + "name": "repeat_w", + "setter": "set_repeat_w", + "getter": "get_repeat_w", + "index": -1 + }, + { + "type": "float", + "name": "lod_bias", + "setter": "set_lod_bias", + "getter": "get_lod_bias", + "index": -1 + }, + { + "type": "bool", + "name": "use_anisotropy", + "setter": "set_use_anisotropy", + "getter": "get_use_anisotropy", + "index": -1 + }, + { + "type": "float", + "name": "anisotropy_max", + "setter": "set_anisotropy_max", + "getter": "get_anisotropy_max", + "index": -1 + }, + { + "type": "bool", + "name": "enable_compare", + "setter": "set_enable_compare", + "getter": "get_enable_compare", + "index": -1 + }, + { + "type": "int", + "name": "compare_op", + "setter": "set_compare_op", + "getter": "get_compare_op", + "index": -1 + }, + { + "type": "float", + "name": "min_lod", + "setter": "set_min_lod", + "getter": "get_min_lod", + "index": -1 + }, + { + "type": "float", + "name": "max_lod", + "setter": "set_max_lod", + "getter": "get_max_lod", + "index": -1 + }, + { + "type": "int", + "name": "border_color", + "setter": "set_border_color", + "getter": "get_border_color", + "index": -1 + }, + { + "type": "bool", + "name": "unnormalized_uvw", + "setter": "set_unnormalized_uvw", + "getter": "get_unnormalized_uvw", + "index": -1 + } + ] + }, + { + "name": "RDShaderFile", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_bytecode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "bytecode", + "type": "RDShaderSPIRV" + }, + { + "name": "version", + "type": "StringName", + "default_value": "&\"\"" + } + ] + }, + { + "name": "get_spirv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "RDShaderSPIRV" + }, + "arguments": [ + { + "name": "version", + "type": "StringName", + "default_value": "&\"\"" + } + ] + }, + { + "name": "get_version_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_base_error", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "error", + "type": "String" + } + ] + }, + { + "name": "get_base_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "base_error", + "setter": "set_base_error", + "getter": "get_base_error", + "index": -1 + } + ] + }, + { + "name": "RDShaderSPIRV", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_stage_bytecode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "stage", + "type": "enum::RenderingDevice.ShaderStage" + }, + { + "name": "bytecode", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_stage_bytecode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "stage", + "type": "enum::RenderingDevice.ShaderStage" + } + ] + }, + { + "name": "set_stage_compile_error", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "stage", + "type": "enum::RenderingDevice.ShaderStage" + }, + { + "name": "compile_error", + "type": "String" + } + ] + }, + { + "name": "get_stage_compile_error", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "stage", + "type": "enum::RenderingDevice.ShaderStage" + } + ] + } + ], + "properties": [ + { + "type": "PackedByteArray", + "name": "bytecode_vertex", + "setter": "set_stage_bytecode", + "getter": "get_stage_bytecode", + "index": 0 + }, + { + "type": "PackedByteArray", + "name": "bytecode_fragment", + "setter": "set_stage_bytecode", + "getter": "get_stage_bytecode", + "index": 1 + }, + { + "type": "PackedByteArray", + "name": "bytecode_tesselation_control", + "setter": "set_stage_bytecode", + "getter": "get_stage_bytecode", + "index": 2 + }, + { + "type": "PackedByteArray", + "name": "bytecode_tesselation_evaluation", + "setter": "set_stage_bytecode", + "getter": "get_stage_bytecode", + "index": 3 + }, + { + "type": "PackedByteArray", + "name": "bytecode_compute", + "setter": "set_stage_bytecode", + "getter": "get_stage_bytecode", + "index": 4 + }, + { + "type": "String", + "name": "compile_error_vertex", + "setter": "set_stage_compile_error", + "getter": "get_stage_compile_error", + "index": 0 + }, + { + "type": "String", + "name": "compile_error_fragment", + "setter": "set_stage_compile_error", + "getter": "get_stage_compile_error", + "index": 1 + }, + { + "type": "String", + "name": "compile_error_tesselation_control", + "setter": "set_stage_compile_error", + "getter": "get_stage_compile_error", + "index": 2 + }, + { + "type": "String", + "name": "compile_error_tesselation_evaluation", + "setter": "set_stage_compile_error", + "getter": "get_stage_compile_error", + "index": 3 + }, + { + "type": "String", + "name": "compile_error_compute", + "setter": "set_stage_compile_error", + "getter": "get_stage_compile_error", + "index": 4 + } + ] + }, + { + "name": "RDShaderSource", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_stage_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "stage", + "type": "enum::RenderingDevice.ShaderStage" + }, + { + "name": "source", + "type": "String" + } + ] + }, + { + "name": "get_stage_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "stage", + "type": "enum::RenderingDevice.ShaderStage" + } + ] + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "enum::RenderingDevice.ShaderLanguage" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.ShaderLanguage" + } + } + ], + "properties": [ + { + "type": "String", + "name": "source_vertex", + "setter": "set_stage_source", + "getter": "get_stage_source", + "index": 0 + }, + { + "type": "String", + "name": "source_fragment", + "setter": "set_stage_source", + "getter": "get_stage_source", + "index": 1 + }, + { + "type": "String", + "name": "source_tesselation_control", + "setter": "set_stage_source", + "getter": "get_stage_source", + "index": 2 + }, + { + "type": "String", + "name": "source_tesselation_evaluation", + "setter": "set_stage_source", + "getter": "get_stage_source", + "index": 3 + }, + { + "type": "String", + "name": "source_compute", + "setter": "set_stage_source", + "getter": "get_stage_source", + "index": 4 + }, + { + "type": "int", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + } + ] + }, + { + "name": "RDTextureFormat", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.DataFormat" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.DataFormat" + } + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_array_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_array_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_texture_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureType" + } + ] + }, + { + "name": "get_texture_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureType" + } + }, + { + "name": "set_samples", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSamples" + } + ] + }, + { + "name": "get_samples", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSamples" + } + }, + { + "name": "set_usage_bits", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_usage_bits", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "add_shareable_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "format", + "type": "enum::RenderingDevice.DataFormat" + } + ] + }, + { + "name": "remove_shareable_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "format", + "type": "enum::RenderingDevice.DataFormat" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "format", + "setter": "set_format", + "getter": "get_format", + "index": -1 + }, + { + "type": "int", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "int", + "name": "depth", + "setter": "set_depth", + "getter": "get_depth", + "index": -1 + }, + { + "type": "int", + "name": "array_layers", + "setter": "set_array_layers", + "getter": "get_array_layers", + "index": -1 + }, + { + "type": "int", + "name": "mipmaps", + "setter": "set_mipmaps", + "getter": "get_mipmaps", + "index": -1 + }, + { + "type": "int", + "name": "texture_type", + "setter": "set_texture_type", + "getter": "get_texture_type", + "index": -1 + }, + { + "type": "int", + "name": "samples", + "setter": "set_samples", + "getter": "get_samples", + "index": -1 + }, + { + "type": "int", + "name": "usage_bits", + "setter": "set_usage_bits", + "getter": "get_usage_bits", + "index": -1 + } + ] + }, + { + "name": "RDTextureView", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_format_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.DataFormat" + } + ] + }, + { + "name": "get_format_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.DataFormat" + } + }, + { + "name": "set_swizzle_r", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSwizzle" + } + ] + }, + { + "name": "get_swizzle_r", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSwizzle" + } + }, + { + "name": "set_swizzle_g", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSwizzle" + } + ] + }, + { + "name": "get_swizzle_g", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSwizzle" + } + }, + { + "name": "set_swizzle_b", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSwizzle" + } + ] + }, + { + "name": "get_swizzle_b", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSwizzle" + } + }, + { + "name": "set_swizzle_a", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.TextureSwizzle" + } + ] + }, + { + "name": "get_swizzle_a", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.TextureSwizzle" + } + } + ], + "properties": [ + { + "type": "int", + "name": "format_override", + "setter": "set_format_override", + "getter": "get_format_override", + "index": -1 + }, + { + "type": "int", + "name": "swizzle_r", + "setter": "set_swizzle_r", + "getter": "get_swizzle_r", + "index": -1 + }, + { + "type": "int", + "name": "swizzle_g", + "setter": "set_swizzle_g", + "getter": "get_swizzle_g", + "index": -1 + }, + { + "type": "int", + "name": "swizzle_b", + "setter": "set_swizzle_b", + "getter": "get_swizzle_b", + "index": -1 + }, + { + "type": "int", + "name": "swizzle_a", + "setter": "set_swizzle_a", + "getter": "get_swizzle_a", + "index": -1 + } + ] + }, + { + "name": "RDUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_uniform_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.UniformType" + } + ] + }, + { + "name": "get_uniform_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.UniformType" + } + }, + { + "name": "set_binding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_binding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "RID" + } + ] + }, + { + "name": "clear_ids", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_ids", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "properties": [ + { + "type": "int", + "name": "uniform_type", + "setter": "set_uniform_type", + "getter": "get_uniform_type", + "index": -1 + }, + { + "type": "int", + "name": "binding", + "setter": "set_binding", + "getter": "get_binding", + "index": -1 + } + ] + }, + { + "name": "RDVertexAttribute", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_location", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_location", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.DataFormat" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.DataFormat" + } + }, + { + "name": "set_stride", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_stride", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_frequency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "p_member", + "type": "enum::RenderingDevice.VertexFrequency" + } + ] + }, + { + "name": "get_frequency", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.VertexFrequency" + } + } + ], + "properties": [ + { + "type": "int", + "name": "location", + "setter": "set_location", + "getter": "get_location", + "index": -1 + }, + { + "type": "int", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "int", + "name": "format", + "setter": "set_format", + "getter": "get_format", + "index": -1 + }, + { + "type": "int", + "name": "stride", + "setter": "set_stride", + "getter": "get_stride", + "index": -1 + }, + { + "type": "int", + "name": "frequency", + "setter": "set_frequency", + "getter": "get_frequency", + "index": -1 + } + ] + }, + { + "name": "RandomNumberGenerator", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_seed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "seed", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "get_seed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "set_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "state", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "get_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "randi", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "randf", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "randfn", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 437865044, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "mean", + "type": "float", + "meta": "float", + "default_value": "0.0" + }, + { + "name": "deviation", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "randf_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "from", + "type": "float", + "meta": "float" + }, + { + "name": "to", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "randi_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "from", + "type": "int", + "meta": "int32" + }, + { + "name": "to", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "randomize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "int", + "name": "seed", + "setter": "set_seed", + "getter": "get_seed", + "index": -1 + }, + { + "type": "int", + "name": "state", + "setter": "set_state", + "getter": "get_state", + "index": -1 + } + ] + }, + { + "name": "Range", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "methods": [ + { + "name": "_value_changed", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "new_value", + "type": "float" + } + ] + }, + { + "name": "get_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_page", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_as_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "minimum", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "maximum", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "step", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_page", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pagesize", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_as_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "set_use_rounded_values", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_using_rounded_values", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_exp_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_ratio_exp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_allow_greater", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "is_greater_allowed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_allow_lesser", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "is_lesser_allowed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "share", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "with", + "type": "Node" + } + ] + }, + { + "name": "unshare", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "signals": [ + { + "name": "value_changed", + "arguments": [ + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "changed" + } + ], + "properties": [ + { + "type": "float", + "name": "min_value", + "setter": "set_min", + "getter": "get_min", + "index": -1 + }, + { + "type": "float", + "name": "max_value", + "setter": "set_max", + "getter": "get_max", + "index": -1 + }, + { + "type": "float", + "name": "step", + "setter": "set_step", + "getter": "get_step", + "index": -1 + }, + { + "type": "float", + "name": "page", + "setter": "set_page", + "getter": "get_page", + "index": -1 + }, + { + "type": "float", + "name": "value", + "setter": "set_value", + "getter": "get_value", + "index": -1 + }, + { + "type": "float", + "name": "ratio", + "setter": "set_as_ratio", + "getter": "get_as_ratio", + "index": -1 + }, + { + "type": "bool", + "name": "exp_edit", + "setter": "set_exp_ratio", + "getter": "is_ratio_exp", + "index": -1 + }, + { + "type": "bool", + "name": "rounded", + "setter": "set_use_rounded_values", + "getter": "is_using_rounded_values", + "index": -1 + }, + { + "type": "bool", + "name": "allow_greater", + "setter": "set_allow_greater", + "getter": "is_greater_allowed", + "index": -1 + }, + { + "type": "bool", + "name": "allow_lesser", + "setter": "set_allow_lesser", + "getter": "is_lesser_allowed", + "index": -1 + } + ] + }, + { + "name": "RayCast2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_target_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "local_point", + "type": "Vector2" + } + ] + }, + { + "name": "get_target_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "is_colliding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "force_raycast_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_collision_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_collision_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "add_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "add_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "CollisionObject2D" + } + ] + }, + { + "name": "remove_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "remove_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "CollisionObject2D" + } + ] + }, + { + "name": "clear_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_exclude_parent_body", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_parent_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hit_from_inside", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hit_from_inside_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "exclude_parent", + "setter": "set_exclude_parent_body", + "getter": "get_exclude_parent_body", + "index": -1 + }, + { + "type": "Vector2", + "name": "target_position", + "setter": "set_target_position", + "getter": "get_target_position", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "bool", + "name": "hit_from_inside", + "setter": "set_hit_from_inside", + "getter": "is_hit_from_inside_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + } + ] + }, + { + "name": "RayCast3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_target_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "local_point", + "type": "Vector3" + } + ] + }, + { + "name": "get_target_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "is_colliding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "force_raycast_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Object" + } + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_collision_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_collision_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "add_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "add_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "CollisionObject3D" + } + ] + }, + { + "name": "remove_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "remove_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "CollisionObject3D" + } + ] + }, + { + "name": "clear_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_exclude_parent_body", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_parent_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hit_from_inside", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hit_from_inside_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_debug_shape_custom_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "debug_shape_custom_color", + "type": "Color" + } + ] + }, + { + "name": "get_debug_shape_custom_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_debug_shape_thickness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "debug_shape_thickness", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_debug_shape_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "exclude_parent", + "setter": "set_exclude_parent_body", + "getter": "get_exclude_parent_body", + "index": -1 + }, + { + "type": "Vector3", + "name": "target_position", + "setter": "set_target_position", + "getter": "get_target_position", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "bool", + "name": "hit_from_inside", + "setter": "set_hit_from_inside", + "getter": "is_hit_from_inside_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "Color", + "name": "debug_shape_custom_color", + "setter": "set_debug_shape_custom_color", + "getter": "get_debug_shape_custom_color", + "index": -1 + }, + { + "type": "int", + "name": "debug_shape_thickness", + "setter": "set_debug_shape_thickness", + "getter": "get_debug_shape_thickness", + "index": -1 + } + ] + }, + { + "name": "RectangleShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "RefCounted", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "init_ref", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "reference", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "unreference", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "ReferenceRect", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "methods": [ + { + "name": "get_border_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_border_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_border_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_border_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_editor_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_editor_only", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "Color", + "name": "border_color", + "setter": "set_border_color", + "getter": "get_border_color", + "index": -1 + }, + { + "type": "float", + "name": "border_width", + "setter": "set_border_width", + "getter": "get_border_width", + "index": -1 + }, + { + "type": "bool", + "name": "editor_only", + "setter": "set_editor_only", + "getter": "get_editor_only", + "index": -1 + } + ] + }, + { + "name": "ReflectionProbe", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "enums": [ + { + "name": "UpdateMode", + "values": [ + { + "name": "UPDATE_ONCE", + "value": 0 + }, + { + "name": "UPDATE_ALWAYS", + "value": 1 + } + ] + }, + { + "name": "AmbientMode", + "values": [ + { + "name": "AMBIENT_DISABLED", + "value": 0 + }, + { + "name": "AMBIENT_ENVIRONMENT", + "value": 1 + }, + { + "name": "AMBIENT_COLOR", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_intensity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_ambient_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ambient", + "type": "enum::ReflectionProbe.AmbientMode" + } + ] + }, + { + "name": "get_ambient_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ReflectionProbe.AmbientMode" + } + }, + { + "name": "set_ambient_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ambient", + "type": "Color" + } + ] + }, + { + "name": "get_ambient_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_ambient_color_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ambient_energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ambient_color_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mesh_lod_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mesh_lod_threshold", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_origin_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "origin_offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_origin_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_as_interior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_set_as_interior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_enable_box_projection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_box_projection_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_enable_shadows", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "are_shadows_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_cull_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::ReflectionProbe.UpdateMode" + } + ] + }, + { + "name": "get_update_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ReflectionProbe.UpdateMode" + } + } + ], + "properties": [ + { + "type": "int", + "name": "update_mode", + "setter": "set_update_mode", + "getter": "get_update_mode", + "index": -1 + }, + { + "type": "float", + "name": "intensity", + "setter": "set_intensity", + "getter": "get_intensity", + "index": -1 + }, + { + "type": "float", + "name": "max_distance", + "setter": "set_max_distance", + "getter": "get_max_distance", + "index": -1 + }, + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "Vector3", + "name": "origin_offset", + "setter": "set_origin_offset", + "getter": "get_origin_offset", + "index": -1 + }, + { + "type": "bool", + "name": "box_projection", + "setter": "set_enable_box_projection", + "getter": "is_box_projection_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "interior", + "setter": "set_as_interior", + "getter": "is_set_as_interior", + "index": -1 + }, + { + "type": "bool", + "name": "enable_shadows", + "setter": "set_enable_shadows", + "getter": "are_shadows_enabled", + "index": -1 + }, + { + "type": "int", + "name": "cull_mask", + "setter": "set_cull_mask", + "getter": "get_cull_mask", + "index": -1 + }, + { + "type": "float", + "name": "mesh_lod_threshold", + "setter": "set_mesh_lod_threshold", + "getter": "get_mesh_lod_threshold", + "index": -1 + }, + { + "type": "int", + "name": "ambient_mode", + "setter": "set_ambient_mode", + "getter": "get_ambient_mode", + "index": -1 + }, + { + "type": "Color", + "name": "ambient_color", + "setter": "set_ambient_color", + "getter": "get_ambient_color", + "index": -1 + }, + { + "type": "float", + "name": "ambient_color_energy", + "setter": "set_ambient_color_energy", + "getter": "get_ambient_color_energy", + "index": -1 + } + ] + }, + { + "name": "RegEx", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "compile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "pattern", + "type": "String" + } + ] + }, + { + "name": "search", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3892018839, + "return_value": { + "type": "RegExMatch" + }, + "arguments": [ + { + "name": "subject", + "type": "String" + }, + { + "name": "offset", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "end", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "search_all", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3892018839, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "subject", + "type": "String" + }, + { + "name": "offset", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "end", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "sub", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4023896239, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "subject", + "type": "String" + }, + { + "name": "replacement", + "type": "String" + }, + { + "name": "all", + "type": "bool", + "default_value": "false" + }, + { + "name": "offset", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "end", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "is_valid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_pattern", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_group_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_names", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "RegExMatch", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_subject", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_group_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_names", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_strings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "name", + "type": "Variant", + "default_value": "0" + } + ] + }, + { + "name": "get_start", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "Variant", + "default_value": "0" + } + ] + }, + { + "name": "get_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "Variant", + "default_value": "0" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "subject", + "setter": "", + "getter": "get_subject", + "index": -1 + }, + { + "type": "Dictionary", + "name": "names", + "setter": "", + "getter": "get_names", + "index": -1 + }, + { + "type": "Array", + "name": "strings", + "setter": "", + "getter": "get_strings", + "index": -1 + } + ] + }, + { + "name": "RemoteTransform2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_remote_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_remote_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "force_update_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_use_global_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_global_coordinates", + "type": "bool" + } + ] + }, + { + "name": "get_use_global_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_remote_position", + "type": "bool" + } + ] + }, + { + "name": "get_update_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_remote_rotation", + "type": "bool" + } + ] + }, + { + "name": "get_update_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_remote_scale", + "type": "bool" + } + ] + }, + { + "name": "get_update_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "remote_path", + "setter": "set_remote_node", + "getter": "get_remote_node", + "index": -1 + }, + { + "type": "bool", + "name": "use_global_coordinates", + "setter": "set_use_global_coordinates", + "getter": "get_use_global_coordinates", + "index": -1 + }, + { + "type": "bool", + "name": "update_position", + "setter": "set_update_position", + "getter": "get_update_position", + "index": -1 + }, + { + "type": "bool", + "name": "update_rotation", + "setter": "set_update_rotation", + "getter": "get_update_rotation", + "index": -1 + }, + { + "type": "bool", + "name": "update_scale", + "setter": "set_update_scale", + "getter": "get_update_scale", + "index": -1 + } + ] + }, + { + "name": "RemoteTransform3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_remote_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_remote_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "force_update_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_use_global_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_global_coordinates", + "type": "bool" + } + ] + }, + { + "name": "get_use_global_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_remote_position", + "type": "bool" + } + ] + }, + { + "name": "get_update_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_remote_rotation", + "type": "bool" + } + ] + }, + { + "name": "get_update_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "update_remote_scale", + "type": "bool" + } + ] + }, + { + "name": "get_update_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "remote_path", + "setter": "set_remote_node", + "getter": "get_remote_node", + "index": -1 + }, + { + "type": "bool", + "name": "use_global_coordinates", + "setter": "set_use_global_coordinates", + "getter": "get_use_global_coordinates", + "index": -1 + }, + { + "type": "bool", + "name": "update_position", + "setter": "set_update_position", + "getter": "get_update_position", + "index": -1 + }, + { + "type": "bool", + "name": "update_rotation", + "setter": "set_update_rotation", + "getter": "get_update_rotation", + "index": -1 + }, + { + "type": "bool", + "name": "update_scale", + "setter": "set_update_scale", + "getter": "get_update_scale", + "index": -1 + } + ] + }, + { + "name": "RenderingDevice", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "BARRIER_MASK_RASTER", + "value": 1 + }, + { + "name": "BARRIER_MASK_COMPUTE", + "value": 2 + }, + { + "name": "BARRIER_MASK_TRANSFER", + "value": 4 + }, + { + "name": "BARRIER_MASK_ALL", + "value": 7 + }, + { + "name": "BARRIER_MASK_NO_BARRIER", + "value": 8 + }, + { + "name": "INVALID_ID", + "value": -1 + }, + { + "name": "INVALID_FORMAT_ID", + "value": -1 + } + ], + "enums": [ + { + "name": "DeviceType", + "values": [ + { + "name": "DEVICE_TYPE_OTHER", + "value": 0 + }, + { + "name": "DEVICE_TYPE_INTEGRATED_GPU", + "value": 1 + }, + { + "name": "DEVICE_TYPE_DISCRETE_GPU", + "value": 2 + }, + { + "name": "DEVICE_TYPE_VIRTUAL_GPU", + "value": 3 + }, + { + "name": "DEVICE_TYPE_CPU", + "value": 4 + }, + { + "name": "DEVICE_TYPE_MAX", + "value": 5 + } + ] + }, + { + "name": "DriverResource", + "values": [ + { + "name": "DRIVER_RESOURCE_VULKAN_DEVICE", + "value": 0 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_PHYSICAL_DEVICE", + "value": 1 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_INSTANCE", + "value": 2 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_QUEUE", + "value": 3 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_QUEUE_FAMILY_INDEX", + "value": 4 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_IMAGE", + "value": 5 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_IMAGE_VIEW", + "value": 6 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_IMAGE_NATIVE_TEXTURE_FORMAT", + "value": 7 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_SAMPLER", + "value": 8 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_DESCRIPTOR_SET", + "value": 9 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_BUFFER", + "value": 10 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_COMPUTE_PIPELINE", + "value": 11 + }, + { + "name": "DRIVER_RESOURCE_VULKAN_RENDER_PIPELINE", + "value": 12 + } + ] + }, + { + "name": "DataFormat", + "values": [ + { + "name": "DATA_FORMAT_R4G4_UNORM_PACK8", + "value": 0 + }, + { + "name": "DATA_FORMAT_R4G4B4A4_UNORM_PACK16", + "value": 1 + }, + { + "name": "DATA_FORMAT_B4G4R4A4_UNORM_PACK16", + "value": 2 + }, + { + "name": "DATA_FORMAT_R5G6B5_UNORM_PACK16", + "value": 3 + }, + { + "name": "DATA_FORMAT_B5G6R5_UNORM_PACK16", + "value": 4 + }, + { + "name": "DATA_FORMAT_R5G5B5A1_UNORM_PACK16", + "value": 5 + }, + { + "name": "DATA_FORMAT_B5G5R5A1_UNORM_PACK16", + "value": 6 + }, + { + "name": "DATA_FORMAT_A1R5G5B5_UNORM_PACK16", + "value": 7 + }, + { + "name": "DATA_FORMAT_R8_UNORM", + "value": 8 + }, + { + "name": "DATA_FORMAT_R8_SNORM", + "value": 9 + }, + { + "name": "DATA_FORMAT_R8_USCALED", + "value": 10 + }, + { + "name": "DATA_FORMAT_R8_SSCALED", + "value": 11 + }, + { + "name": "DATA_FORMAT_R8_UINT", + "value": 12 + }, + { + "name": "DATA_FORMAT_R8_SINT", + "value": 13 + }, + { + "name": "DATA_FORMAT_R8_SRGB", + "value": 14 + }, + { + "name": "DATA_FORMAT_R8G8_UNORM", + "value": 15 + }, + { + "name": "DATA_FORMAT_R8G8_SNORM", + "value": 16 + }, + { + "name": "DATA_FORMAT_R8G8_USCALED", + "value": 17 + }, + { + "name": "DATA_FORMAT_R8G8_SSCALED", + "value": 18 + }, + { + "name": "DATA_FORMAT_R8G8_UINT", + "value": 19 + }, + { + "name": "DATA_FORMAT_R8G8_SINT", + "value": 20 + }, + { + "name": "DATA_FORMAT_R8G8_SRGB", + "value": 21 + }, + { + "name": "DATA_FORMAT_R8G8B8_UNORM", + "value": 22 + }, + { + "name": "DATA_FORMAT_R8G8B8_SNORM", + "value": 23 + }, + { + "name": "DATA_FORMAT_R8G8B8_USCALED", + "value": 24 + }, + { + "name": "DATA_FORMAT_R8G8B8_SSCALED", + "value": 25 + }, + { + "name": "DATA_FORMAT_R8G8B8_UINT", + "value": 26 + }, + { + "name": "DATA_FORMAT_R8G8B8_SINT", + "value": 27 + }, + { + "name": "DATA_FORMAT_R8G8B8_SRGB", + "value": 28 + }, + { + "name": "DATA_FORMAT_B8G8R8_UNORM", + "value": 29 + }, + { + "name": "DATA_FORMAT_B8G8R8_SNORM", + "value": 30 + }, + { + "name": "DATA_FORMAT_B8G8R8_USCALED", + "value": 31 + }, + { + "name": "DATA_FORMAT_B8G8R8_SSCALED", + "value": 32 + }, + { + "name": "DATA_FORMAT_B8G8R8_UINT", + "value": 33 + }, + { + "name": "DATA_FORMAT_B8G8R8_SINT", + "value": 34 + }, + { + "name": "DATA_FORMAT_B8G8R8_SRGB", + "value": 35 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_UNORM", + "value": 36 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_SNORM", + "value": 37 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_USCALED", + "value": 38 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_SSCALED", + "value": 39 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_UINT", + "value": 40 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_SINT", + "value": 41 + }, + { + "name": "DATA_FORMAT_R8G8B8A8_SRGB", + "value": 42 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_UNORM", + "value": 43 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_SNORM", + "value": 44 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_USCALED", + "value": 45 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_SSCALED", + "value": 46 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_UINT", + "value": 47 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_SINT", + "value": 48 + }, + { + "name": "DATA_FORMAT_B8G8R8A8_SRGB", + "value": 49 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_UNORM_PACK32", + "value": 50 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_SNORM_PACK32", + "value": 51 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_USCALED_PACK32", + "value": 52 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_SSCALED_PACK32", + "value": 53 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_UINT_PACK32", + "value": 54 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_SINT_PACK32", + "value": 55 + }, + { + "name": "DATA_FORMAT_A8B8G8R8_SRGB_PACK32", + "value": 56 + }, + { + "name": "DATA_FORMAT_A2R10G10B10_UNORM_PACK32", + "value": 57 + }, + { + "name": "DATA_FORMAT_A2R10G10B10_SNORM_PACK32", + "value": 58 + }, + { + "name": "DATA_FORMAT_A2R10G10B10_USCALED_PACK32", + "value": 59 + }, + { + "name": "DATA_FORMAT_A2R10G10B10_SSCALED_PACK32", + "value": 60 + }, + { + "name": "DATA_FORMAT_A2R10G10B10_UINT_PACK32", + "value": 61 + }, + { + "name": "DATA_FORMAT_A2R10G10B10_SINT_PACK32", + "value": 62 + }, + { + "name": "DATA_FORMAT_A2B10G10R10_UNORM_PACK32", + "value": 63 + }, + { + "name": "DATA_FORMAT_A2B10G10R10_SNORM_PACK32", + "value": 64 + }, + { + "name": "DATA_FORMAT_A2B10G10R10_USCALED_PACK32", + "value": 65 + }, + { + "name": "DATA_FORMAT_A2B10G10R10_SSCALED_PACK32", + "value": 66 + }, + { + "name": "DATA_FORMAT_A2B10G10R10_UINT_PACK32", + "value": 67 + }, + { + "name": "DATA_FORMAT_A2B10G10R10_SINT_PACK32", + "value": 68 + }, + { + "name": "DATA_FORMAT_R16_UNORM", + "value": 69 + }, + { + "name": "DATA_FORMAT_R16_SNORM", + "value": 70 + }, + { + "name": "DATA_FORMAT_R16_USCALED", + "value": 71 + }, + { + "name": "DATA_FORMAT_R16_SSCALED", + "value": 72 + }, + { + "name": "DATA_FORMAT_R16_UINT", + "value": 73 + }, + { + "name": "DATA_FORMAT_R16_SINT", + "value": 74 + }, + { + "name": "DATA_FORMAT_R16_SFLOAT", + "value": 75 + }, + { + "name": "DATA_FORMAT_R16G16_UNORM", + "value": 76 + }, + { + "name": "DATA_FORMAT_R16G16_SNORM", + "value": 77 + }, + { + "name": "DATA_FORMAT_R16G16_USCALED", + "value": 78 + }, + { + "name": "DATA_FORMAT_R16G16_SSCALED", + "value": 79 + }, + { + "name": "DATA_FORMAT_R16G16_UINT", + "value": 80 + }, + { + "name": "DATA_FORMAT_R16G16_SINT", + "value": 81 + }, + { + "name": "DATA_FORMAT_R16G16_SFLOAT", + "value": 82 + }, + { + "name": "DATA_FORMAT_R16G16B16_UNORM", + "value": 83 + }, + { + "name": "DATA_FORMAT_R16G16B16_SNORM", + "value": 84 + }, + { + "name": "DATA_FORMAT_R16G16B16_USCALED", + "value": 85 + }, + { + "name": "DATA_FORMAT_R16G16B16_SSCALED", + "value": 86 + }, + { + "name": "DATA_FORMAT_R16G16B16_UINT", + "value": 87 + }, + { + "name": "DATA_FORMAT_R16G16B16_SINT", + "value": 88 + }, + { + "name": "DATA_FORMAT_R16G16B16_SFLOAT", + "value": 89 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_UNORM", + "value": 90 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_SNORM", + "value": 91 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_USCALED", + "value": 92 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_SSCALED", + "value": 93 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_UINT", + "value": 94 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_SINT", + "value": 95 + }, + { + "name": "DATA_FORMAT_R16G16B16A16_SFLOAT", + "value": 96 + }, + { + "name": "DATA_FORMAT_R32_UINT", + "value": 97 + }, + { + "name": "DATA_FORMAT_R32_SINT", + "value": 98 + }, + { + "name": "DATA_FORMAT_R32_SFLOAT", + "value": 99 + }, + { + "name": "DATA_FORMAT_R32G32_UINT", + "value": 100 + }, + { + "name": "DATA_FORMAT_R32G32_SINT", + "value": 101 + }, + { + "name": "DATA_FORMAT_R32G32_SFLOAT", + "value": 102 + }, + { + "name": "DATA_FORMAT_R32G32B32_UINT", + "value": 103 + }, + { + "name": "DATA_FORMAT_R32G32B32_SINT", + "value": 104 + }, + { + "name": "DATA_FORMAT_R32G32B32_SFLOAT", + "value": 105 + }, + { + "name": "DATA_FORMAT_R32G32B32A32_UINT", + "value": 106 + }, + { + "name": "DATA_FORMAT_R32G32B32A32_SINT", + "value": 107 + }, + { + "name": "DATA_FORMAT_R32G32B32A32_SFLOAT", + "value": 108 + }, + { + "name": "DATA_FORMAT_R64_UINT", + "value": 109 + }, + { + "name": "DATA_FORMAT_R64_SINT", + "value": 110 + }, + { + "name": "DATA_FORMAT_R64_SFLOAT", + "value": 111 + }, + { + "name": "DATA_FORMAT_R64G64_UINT", + "value": 112 + }, + { + "name": "DATA_FORMAT_R64G64_SINT", + "value": 113 + }, + { + "name": "DATA_FORMAT_R64G64_SFLOAT", + "value": 114 + }, + { + "name": "DATA_FORMAT_R64G64B64_UINT", + "value": 115 + }, + { + "name": "DATA_FORMAT_R64G64B64_SINT", + "value": 116 + }, + { + "name": "DATA_FORMAT_R64G64B64_SFLOAT", + "value": 117 + }, + { + "name": "DATA_FORMAT_R64G64B64A64_UINT", + "value": 118 + }, + { + "name": "DATA_FORMAT_R64G64B64A64_SINT", + "value": 119 + }, + { + "name": "DATA_FORMAT_R64G64B64A64_SFLOAT", + "value": 120 + }, + { + "name": "DATA_FORMAT_B10G11R11_UFLOAT_PACK32", + "value": 121 + }, + { + "name": "DATA_FORMAT_E5B9G9R9_UFLOAT_PACK32", + "value": 122 + }, + { + "name": "DATA_FORMAT_D16_UNORM", + "value": 123 + }, + { + "name": "DATA_FORMAT_X8_D24_UNORM_PACK32", + "value": 124 + }, + { + "name": "DATA_FORMAT_D32_SFLOAT", + "value": 125 + }, + { + "name": "DATA_FORMAT_S8_UINT", + "value": 126 + }, + { + "name": "DATA_FORMAT_D16_UNORM_S8_UINT", + "value": 127 + }, + { + "name": "DATA_FORMAT_D24_UNORM_S8_UINT", + "value": 128 + }, + { + "name": "DATA_FORMAT_D32_SFLOAT_S8_UINT", + "value": 129 + }, + { + "name": "DATA_FORMAT_BC1_RGB_UNORM_BLOCK", + "value": 130 + }, + { + "name": "DATA_FORMAT_BC1_RGB_SRGB_BLOCK", + "value": 131 + }, + { + "name": "DATA_FORMAT_BC1_RGBA_UNORM_BLOCK", + "value": 132 + }, + { + "name": "DATA_FORMAT_BC1_RGBA_SRGB_BLOCK", + "value": 133 + }, + { + "name": "DATA_FORMAT_BC2_UNORM_BLOCK", + "value": 134 + }, + { + "name": "DATA_FORMAT_BC2_SRGB_BLOCK", + "value": 135 + }, + { + "name": "DATA_FORMAT_BC3_UNORM_BLOCK", + "value": 136 + }, + { + "name": "DATA_FORMAT_BC3_SRGB_BLOCK", + "value": 137 + }, + { + "name": "DATA_FORMAT_BC4_UNORM_BLOCK", + "value": 138 + }, + { + "name": "DATA_FORMAT_BC4_SNORM_BLOCK", + "value": 139 + }, + { + "name": "DATA_FORMAT_BC5_UNORM_BLOCK", + "value": 140 + }, + { + "name": "DATA_FORMAT_BC5_SNORM_BLOCK", + "value": 141 + }, + { + "name": "DATA_FORMAT_BC6H_UFLOAT_BLOCK", + "value": 142 + }, + { + "name": "DATA_FORMAT_BC6H_SFLOAT_BLOCK", + "value": 143 + }, + { + "name": "DATA_FORMAT_BC7_UNORM_BLOCK", + "value": 144 + }, + { + "name": "DATA_FORMAT_BC7_SRGB_BLOCK", + "value": 145 + }, + { + "name": "DATA_FORMAT_ETC2_R8G8B8_UNORM_BLOCK", + "value": 146 + }, + { + "name": "DATA_FORMAT_ETC2_R8G8B8_SRGB_BLOCK", + "value": 147 + }, + { + "name": "DATA_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK", + "value": 148 + }, + { + "name": "DATA_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK", + "value": 149 + }, + { + "name": "DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK", + "value": 150 + }, + { + "name": "DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK", + "value": 151 + }, + { + "name": "DATA_FORMAT_EAC_R11_UNORM_BLOCK", + "value": 152 + }, + { + "name": "DATA_FORMAT_EAC_R11_SNORM_BLOCK", + "value": 153 + }, + { + "name": "DATA_FORMAT_EAC_R11G11_UNORM_BLOCK", + "value": 154 + }, + { + "name": "DATA_FORMAT_EAC_R11G11_SNORM_BLOCK", + "value": 155 + }, + { + "name": "DATA_FORMAT_ASTC_4x4_UNORM_BLOCK", + "value": 156 + }, + { + "name": "DATA_FORMAT_ASTC_4x4_SRGB_BLOCK", + "value": 157 + }, + { + "name": "DATA_FORMAT_ASTC_5x4_UNORM_BLOCK", + "value": 158 + }, + { + "name": "DATA_FORMAT_ASTC_5x4_SRGB_BLOCK", + "value": 159 + }, + { + "name": "DATA_FORMAT_ASTC_5x5_UNORM_BLOCK", + "value": 160 + }, + { + "name": "DATA_FORMAT_ASTC_5x5_SRGB_BLOCK", + "value": 161 + }, + { + "name": "DATA_FORMAT_ASTC_6x5_UNORM_BLOCK", + "value": 162 + }, + { + "name": "DATA_FORMAT_ASTC_6x5_SRGB_BLOCK", + "value": 163 + }, + { + "name": "DATA_FORMAT_ASTC_6x6_UNORM_BLOCK", + "value": 164 + }, + { + "name": "DATA_FORMAT_ASTC_6x6_SRGB_BLOCK", + "value": 165 + }, + { + "name": "DATA_FORMAT_ASTC_8x5_UNORM_BLOCK", + "value": 166 + }, + { + "name": "DATA_FORMAT_ASTC_8x5_SRGB_BLOCK", + "value": 167 + }, + { + "name": "DATA_FORMAT_ASTC_8x6_UNORM_BLOCK", + "value": 168 + }, + { + "name": "DATA_FORMAT_ASTC_8x6_SRGB_BLOCK", + "value": 169 + }, + { + "name": "DATA_FORMAT_ASTC_8x8_UNORM_BLOCK", + "value": 170 + }, + { + "name": "DATA_FORMAT_ASTC_8x8_SRGB_BLOCK", + "value": 171 + }, + { + "name": "DATA_FORMAT_ASTC_10x5_UNORM_BLOCK", + "value": 172 + }, + { + "name": "DATA_FORMAT_ASTC_10x5_SRGB_BLOCK", + "value": 173 + }, + { + "name": "DATA_FORMAT_ASTC_10x6_UNORM_BLOCK", + "value": 174 + }, + { + "name": "DATA_FORMAT_ASTC_10x6_SRGB_BLOCK", + "value": 175 + }, + { + "name": "DATA_FORMAT_ASTC_10x8_UNORM_BLOCK", + "value": 176 + }, + { + "name": "DATA_FORMAT_ASTC_10x8_SRGB_BLOCK", + "value": 177 + }, + { + "name": "DATA_FORMAT_ASTC_10x10_UNORM_BLOCK", + "value": 178 + }, + { + "name": "DATA_FORMAT_ASTC_10x10_SRGB_BLOCK", + "value": 179 + }, + { + "name": "DATA_FORMAT_ASTC_12x10_UNORM_BLOCK", + "value": 180 + }, + { + "name": "DATA_FORMAT_ASTC_12x10_SRGB_BLOCK", + "value": 181 + }, + { + "name": "DATA_FORMAT_ASTC_12x12_UNORM_BLOCK", + "value": 182 + }, + { + "name": "DATA_FORMAT_ASTC_12x12_SRGB_BLOCK", + "value": 183 + }, + { + "name": "DATA_FORMAT_G8B8G8R8_422_UNORM", + "value": 184 + }, + { + "name": "DATA_FORMAT_B8G8R8G8_422_UNORM", + "value": 185 + }, + { + "name": "DATA_FORMAT_G8_B8_R8_3PLANE_420_UNORM", + "value": 186 + }, + { + "name": "DATA_FORMAT_G8_B8R8_2PLANE_420_UNORM", + "value": 187 + }, + { + "name": "DATA_FORMAT_G8_B8_R8_3PLANE_422_UNORM", + "value": 188 + }, + { + "name": "DATA_FORMAT_G8_B8R8_2PLANE_422_UNORM", + "value": 189 + }, + { + "name": "DATA_FORMAT_G8_B8_R8_3PLANE_444_UNORM", + "value": 190 + }, + { + "name": "DATA_FORMAT_R10X6_UNORM_PACK16", + "value": 191 + }, + { + "name": "DATA_FORMAT_R10X6G10X6_UNORM_2PACK16", + "value": 192 + }, + { + "name": "DATA_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16", + "value": 193 + }, + { + "name": "DATA_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16", + "value": 194 + }, + { + "name": "DATA_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16", + "value": 195 + }, + { + "name": "DATA_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16", + "value": 196 + }, + { + "name": "DATA_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16", + "value": 197 + }, + { + "name": "DATA_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16", + "value": 198 + }, + { + "name": "DATA_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16", + "value": 199 + }, + { + "name": "DATA_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16", + "value": 200 + }, + { + "name": "DATA_FORMAT_R12X4_UNORM_PACK16", + "value": 201 + }, + { + "name": "DATA_FORMAT_R12X4G12X4_UNORM_2PACK16", + "value": 202 + }, + { + "name": "DATA_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16", + "value": 203 + }, + { + "name": "DATA_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16", + "value": 204 + }, + { + "name": "DATA_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16", + "value": 205 + }, + { + "name": "DATA_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16", + "value": 206 + }, + { + "name": "DATA_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16", + "value": 207 + }, + { + "name": "DATA_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16", + "value": 208 + }, + { + "name": "DATA_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16", + "value": 209 + }, + { + "name": "DATA_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16", + "value": 210 + }, + { + "name": "DATA_FORMAT_G16B16G16R16_422_UNORM", + "value": 211 + }, + { + "name": "DATA_FORMAT_B16G16R16G16_422_UNORM", + "value": 212 + }, + { + "name": "DATA_FORMAT_G16_B16_R16_3PLANE_420_UNORM", + "value": 213 + }, + { + "name": "DATA_FORMAT_G16_B16R16_2PLANE_420_UNORM", + "value": 214 + }, + { + "name": "DATA_FORMAT_G16_B16_R16_3PLANE_422_UNORM", + "value": 215 + }, + { + "name": "DATA_FORMAT_G16_B16R16_2PLANE_422_UNORM", + "value": 216 + }, + { + "name": "DATA_FORMAT_G16_B16_R16_3PLANE_444_UNORM", + "value": 217 + }, + { + "name": "DATA_FORMAT_MAX", + "value": 218 + } + ] + }, + { + "name": "TextureType", + "values": [ + { + "name": "TEXTURE_TYPE_1D", + "value": 0 + }, + { + "name": "TEXTURE_TYPE_2D", + "value": 1 + }, + { + "name": "TEXTURE_TYPE_3D", + "value": 2 + }, + { + "name": "TEXTURE_TYPE_CUBE", + "value": 3 + }, + { + "name": "TEXTURE_TYPE_1D_ARRAY", + "value": 4 + }, + { + "name": "TEXTURE_TYPE_2D_ARRAY", + "value": 5 + }, + { + "name": "TEXTURE_TYPE_CUBE_ARRAY", + "value": 6 + }, + { + "name": "TEXTURE_TYPE_MAX", + "value": 7 + } + ] + }, + { + "name": "TextureSamples", + "values": [ + { + "name": "TEXTURE_SAMPLES_1", + "value": 0 + }, + { + "name": "TEXTURE_SAMPLES_2", + "value": 1 + }, + { + "name": "TEXTURE_SAMPLES_4", + "value": 2 + }, + { + "name": "TEXTURE_SAMPLES_8", + "value": 3 + }, + { + "name": "TEXTURE_SAMPLES_16", + "value": 4 + }, + { + "name": "TEXTURE_SAMPLES_32", + "value": 5 + }, + { + "name": "TEXTURE_SAMPLES_64", + "value": 6 + }, + { + "name": "TEXTURE_SAMPLES_MAX", + "value": 7 + } + ] + }, + { + "name": "TextureUsageBits", + "values": [ + { + "name": "TEXTURE_USAGE_SAMPLING_BIT", + "value": 1 + }, + { + "name": "TEXTURE_USAGE_COLOR_ATTACHMENT_BIT", + "value": 2 + }, + { + "name": "TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT", + "value": 4 + }, + { + "name": "TEXTURE_USAGE_STORAGE_BIT", + "value": 8 + }, + { + "name": "TEXTURE_USAGE_STORAGE_ATOMIC_BIT", + "value": 16 + }, + { + "name": "TEXTURE_USAGE_CPU_READ_BIT", + "value": 32 + }, + { + "name": "TEXTURE_USAGE_CAN_UPDATE_BIT", + "value": 64 + }, + { + "name": "TEXTURE_USAGE_CAN_COPY_FROM_BIT", + "value": 128 + }, + { + "name": "TEXTURE_USAGE_CAN_COPY_TO_BIT", + "value": 256 + }, + { + "name": "TEXTURE_USAGE_INPUT_ATTACHMENT_BIT", + "value": 512 + } + ] + }, + { + "name": "TextureSwizzle", + "values": [ + { + "name": "TEXTURE_SWIZZLE_IDENTITY", + "value": 0 + }, + { + "name": "TEXTURE_SWIZZLE_ZERO", + "value": 1 + }, + { + "name": "TEXTURE_SWIZZLE_ONE", + "value": 2 + }, + { + "name": "TEXTURE_SWIZZLE_R", + "value": 3 + }, + { + "name": "TEXTURE_SWIZZLE_G", + "value": 4 + }, + { + "name": "TEXTURE_SWIZZLE_B", + "value": 5 + }, + { + "name": "TEXTURE_SWIZZLE_A", + "value": 6 + }, + { + "name": "TEXTURE_SWIZZLE_MAX", + "value": 7 + } + ] + }, + { + "name": "TextureSliceType", + "values": [ + { + "name": "TEXTURE_SLICE_2D", + "value": 0 + }, + { + "name": "TEXTURE_SLICE_CUBEMAP", + "value": 1 + }, + { + "name": "TEXTURE_SLICE_3D", + "value": 2 + } + ] + }, + { + "name": "SamplerFilter", + "values": [ + { + "name": "SAMPLER_FILTER_NEAREST", + "value": 0 + }, + { + "name": "SAMPLER_FILTER_LINEAR", + "value": 1 + } + ] + }, + { + "name": "SamplerRepeatMode", + "values": [ + { + "name": "SAMPLER_REPEAT_MODE_REPEAT", + "value": 0 + }, + { + "name": "SAMPLER_REPEAT_MODE_MIRRORED_REPEAT", + "value": 1 + }, + { + "name": "SAMPLER_REPEAT_MODE_CLAMP_TO_EDGE", + "value": 2 + }, + { + "name": "SAMPLER_REPEAT_MODE_CLAMP_TO_BORDER", + "value": 3 + }, + { + "name": "SAMPLER_REPEAT_MODE_MIRROR_CLAMP_TO_EDGE", + "value": 4 + }, + { + "name": "SAMPLER_REPEAT_MODE_MAX", + "value": 5 + } + ] + }, + { + "name": "SamplerBorderColor", + "values": [ + { + "name": "SAMPLER_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK", + "value": 0 + }, + { + "name": "SAMPLER_BORDER_COLOR_INT_TRANSPARENT_BLACK", + "value": 1 + }, + { + "name": "SAMPLER_BORDER_COLOR_FLOAT_OPAQUE_BLACK", + "value": 2 + }, + { + "name": "SAMPLER_BORDER_COLOR_INT_OPAQUE_BLACK", + "value": 3 + }, + { + "name": "SAMPLER_BORDER_COLOR_FLOAT_OPAQUE_WHITE", + "value": 4 + }, + { + "name": "SAMPLER_BORDER_COLOR_INT_OPAQUE_WHITE", + "value": 5 + }, + { + "name": "SAMPLER_BORDER_COLOR_MAX", + "value": 6 + } + ] + }, + { + "name": "VertexFrequency", + "values": [ + { + "name": "VERTEX_FREQUENCY_VERTEX", + "value": 0 + }, + { + "name": "VERTEX_FREQUENCY_INSTANCE", + "value": 1 + } + ] + }, + { + "name": "IndexBufferFormat", + "values": [ + { + "name": "INDEX_BUFFER_FORMAT_UINT16", + "value": 0 + }, + { + "name": "INDEX_BUFFER_FORMAT_UINT32", + "value": 1 + } + ] + }, + { + "name": "StorageBufferUsage", + "values": [ + { + "name": "STORAGE_BUFFER_USAGE_DISPATCH_INDIRECT", + "value": 1 + } + ] + }, + { + "name": "UniformType", + "values": [ + { + "name": "UNIFORM_TYPE_SAMPLER", + "value": 0 + }, + { + "name": "UNIFORM_TYPE_SAMPLER_WITH_TEXTURE", + "value": 1 + }, + { + "name": "UNIFORM_TYPE_TEXTURE", + "value": 2 + }, + { + "name": "UNIFORM_TYPE_IMAGE", + "value": 3 + }, + { + "name": "UNIFORM_TYPE_TEXTURE_BUFFER", + "value": 4 + }, + { + "name": "UNIFORM_TYPE_SAMPLER_WITH_TEXTURE_BUFFER", + "value": 5 + }, + { + "name": "UNIFORM_TYPE_IMAGE_BUFFER", + "value": 6 + }, + { + "name": "UNIFORM_TYPE_UNIFORM_BUFFER", + "value": 7 + }, + { + "name": "UNIFORM_TYPE_STORAGE_BUFFER", + "value": 8 + }, + { + "name": "UNIFORM_TYPE_INPUT_ATTACHMENT", + "value": 9 + }, + { + "name": "UNIFORM_TYPE_MAX", + "value": 10 + } + ] + }, + { + "name": "RenderPrimitive", + "values": [ + { + "name": "RENDER_PRIMITIVE_POINTS", + "value": 0 + }, + { + "name": "RENDER_PRIMITIVE_LINES", + "value": 1 + }, + { + "name": "RENDER_PRIMITIVE_LINES_WITH_ADJACENCY", + "value": 2 + }, + { + "name": "RENDER_PRIMITIVE_LINESTRIPS", + "value": 3 + }, + { + "name": "RENDER_PRIMITIVE_LINESTRIPS_WITH_ADJACENCY", + "value": 4 + }, + { + "name": "RENDER_PRIMITIVE_TRIANGLES", + "value": 5 + }, + { + "name": "RENDER_PRIMITIVE_TRIANGLES_WITH_ADJACENCY", + "value": 6 + }, + { + "name": "RENDER_PRIMITIVE_TRIANGLE_STRIPS", + "value": 7 + }, + { + "name": "RENDER_PRIMITIVE_TRIANGLE_STRIPS_WITH_AJACENCY", + "value": 8 + }, + { + "name": "RENDER_PRIMITIVE_TRIANGLE_STRIPS_WITH_RESTART_INDEX", + "value": 9 + }, + { + "name": "RENDER_PRIMITIVE_TESSELATION_PATCH", + "value": 10 + }, + { + "name": "RENDER_PRIMITIVE_MAX", + "value": 11 + } + ] + }, + { + "name": "PolygonCullMode", + "values": [ + { + "name": "POLYGON_CULL_DISABLED", + "value": 0 + }, + { + "name": "POLYGON_CULL_FRONT", + "value": 1 + }, + { + "name": "POLYGON_CULL_BACK", + "value": 2 + } + ] + }, + { + "name": "PolygonFrontFace", + "values": [ + { + "name": "POLYGON_FRONT_FACE_CLOCKWISE", + "value": 0 + }, + { + "name": "POLYGON_FRONT_FACE_COUNTER_CLOCKWISE", + "value": 1 + } + ] + }, + { + "name": "StencilOperation", + "values": [ + { + "name": "STENCIL_OP_KEEP", + "value": 0 + }, + { + "name": "STENCIL_OP_ZERO", + "value": 1 + }, + { + "name": "STENCIL_OP_REPLACE", + "value": 2 + }, + { + "name": "STENCIL_OP_INCREMENT_AND_CLAMP", + "value": 3 + }, + { + "name": "STENCIL_OP_DECREMENT_AND_CLAMP", + "value": 4 + }, + { + "name": "STENCIL_OP_INVERT", + "value": 5 + }, + { + "name": "STENCIL_OP_INCREMENT_AND_WRAP", + "value": 6 + }, + { + "name": "STENCIL_OP_DECREMENT_AND_WRAP", + "value": 7 + }, + { + "name": "STENCIL_OP_MAX", + "value": 8 + } + ] + }, + { + "name": "CompareOperator", + "values": [ + { + "name": "COMPARE_OP_NEVER", + "value": 0 + }, + { + "name": "COMPARE_OP_LESS", + "value": 1 + }, + { + "name": "COMPARE_OP_EQUAL", + "value": 2 + }, + { + "name": "COMPARE_OP_LESS_OR_EQUAL", + "value": 3 + }, + { + "name": "COMPARE_OP_GREATER", + "value": 4 + }, + { + "name": "COMPARE_OP_NOT_EQUAL", + "value": 5 + }, + { + "name": "COMPARE_OP_GREATER_OR_EQUAL", + "value": 6 + }, + { + "name": "COMPARE_OP_ALWAYS", + "value": 7 + }, + { + "name": "COMPARE_OP_MAX", + "value": 8 + } + ] + }, + { + "name": "LogicOperation", + "values": [ + { + "name": "LOGIC_OP_CLEAR", + "value": 0 + }, + { + "name": "LOGIC_OP_AND", + "value": 1 + }, + { + "name": "LOGIC_OP_AND_REVERSE", + "value": 2 + }, + { + "name": "LOGIC_OP_COPY", + "value": 3 + }, + { + "name": "LOGIC_OP_AND_INVERTED", + "value": 4 + }, + { + "name": "LOGIC_OP_NO_OP", + "value": 5 + }, + { + "name": "LOGIC_OP_XOR", + "value": 6 + }, + { + "name": "LOGIC_OP_OR", + "value": 7 + }, + { + "name": "LOGIC_OP_NOR", + "value": 8 + }, + { + "name": "LOGIC_OP_EQUIVALENT", + "value": 9 + }, + { + "name": "LOGIC_OP_INVERT", + "value": 10 + }, + { + "name": "LOGIC_OP_OR_REVERSE", + "value": 11 + }, + { + "name": "LOGIC_OP_COPY_INVERTED", + "value": 12 + }, + { + "name": "LOGIC_OP_OR_INVERTED", + "value": 13 + }, + { + "name": "LOGIC_OP_NAND", + "value": 14 + }, + { + "name": "LOGIC_OP_SET", + "value": 15 + }, + { + "name": "LOGIC_OP_MAX", + "value": 16 + } + ] + }, + { + "name": "BlendFactor", + "values": [ + { + "name": "BLEND_FACTOR_ZERO", + "value": 0 + }, + { + "name": "BLEND_FACTOR_ONE", + "value": 1 + }, + { + "name": "BLEND_FACTOR_SRC_COLOR", + "value": 2 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_SRC_COLOR", + "value": 3 + }, + { + "name": "BLEND_FACTOR_DST_COLOR", + "value": 4 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_DST_COLOR", + "value": 5 + }, + { + "name": "BLEND_FACTOR_SRC_ALPHA", + "value": 6 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_SRC_ALPHA", + "value": 7 + }, + { + "name": "BLEND_FACTOR_DST_ALPHA", + "value": 8 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_DST_ALPHA", + "value": 9 + }, + { + "name": "BLEND_FACTOR_CONSTANT_COLOR", + "value": 10 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR", + "value": 11 + }, + { + "name": "BLEND_FACTOR_CONSTANT_ALPHA", + "value": 12 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA", + "value": 13 + }, + { + "name": "BLEND_FACTOR_SRC_ALPHA_SATURATE", + "value": 14 + }, + { + "name": "BLEND_FACTOR_SRC1_COLOR", + "value": 15 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_SRC1_COLOR", + "value": 16 + }, + { + "name": "BLEND_FACTOR_SRC1_ALPHA", + "value": 17 + }, + { + "name": "BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA", + "value": 18 + }, + { + "name": "BLEND_FACTOR_MAX", + "value": 19 + } + ] + }, + { + "name": "BlendOperation", + "values": [ + { + "name": "BLEND_OP_ADD", + "value": 0 + }, + { + "name": "BLEND_OP_SUBTRACT", + "value": 1 + }, + { + "name": "BLEND_OP_REVERSE_SUBTRACT", + "value": 2 + }, + { + "name": "BLEND_OP_MINIMUM", + "value": 3 + }, + { + "name": "BLEND_OP_MAXIMUM", + "value": 4 + }, + { + "name": "BLEND_OP_MAX", + "value": 5 + } + ] + }, + { + "name": "PipelineDynamicStateFlags", + "values": [ + { + "name": "DYNAMIC_STATE_LINE_WIDTH", + "value": 1 + }, + { + "name": "DYNAMIC_STATE_DEPTH_BIAS", + "value": 2 + }, + { + "name": "DYNAMIC_STATE_BLEND_CONSTANTS", + "value": 4 + }, + { + "name": "DYNAMIC_STATE_DEPTH_BOUNDS", + "value": 8 + }, + { + "name": "DYNAMIC_STATE_STENCIL_COMPARE_MASK", + "value": 16 + }, + { + "name": "DYNAMIC_STATE_STENCIL_WRITE_MASK", + "value": 32 + }, + { + "name": "DYNAMIC_STATE_STENCIL_REFERENCE", + "value": 64 + } + ] + }, + { + "name": "InitialAction", + "values": [ + { + "name": "INITIAL_ACTION_CLEAR", + "value": 0 + }, + { + "name": "INITIAL_ACTION_CLEAR_REGION", + "value": 1 + }, + { + "name": "INITIAL_ACTION_CLEAR_REGION_CONTINUE", + "value": 2 + }, + { + "name": "INITIAL_ACTION_KEEP", + "value": 3 + }, + { + "name": "INITIAL_ACTION_DROP", + "value": 4 + }, + { + "name": "INITIAL_ACTION_CONTINUE", + "value": 5 + }, + { + "name": "INITIAL_ACTION_MAX", + "value": 6 + } + ] + }, + { + "name": "FinalAction", + "values": [ + { + "name": "FINAL_ACTION_READ", + "value": 0 + }, + { + "name": "FINAL_ACTION_DISCARD", + "value": 1 + }, + { + "name": "FINAL_ACTION_CONTINUE", + "value": 2 + }, + { + "name": "FINAL_ACTION_MAX", + "value": 3 + } + ] + }, + { + "name": "ShaderStage", + "values": [ + { + "name": "SHADER_STAGE_VERTEX", + "value": 0 + }, + { + "name": "SHADER_STAGE_FRAGMENT", + "value": 1 + }, + { + "name": "SHADER_STAGE_TESSELATION_CONTROL", + "value": 2 + }, + { + "name": "SHADER_STAGE_TESSELATION_EVALUATION", + "value": 3 + }, + { + "name": "SHADER_STAGE_COMPUTE", + "value": 4 + }, + { + "name": "SHADER_STAGE_MAX", + "value": 5 + }, + { + "name": "SHADER_STAGE_VERTEX_BIT", + "value": 1 + }, + { + "name": "SHADER_STAGE_FRAGMENT_BIT", + "value": 2 + }, + { + "name": "SHADER_STAGE_TESSELATION_CONTROL_BIT", + "value": 4 + }, + { + "name": "SHADER_STAGE_TESSELATION_EVALUATION_BIT", + "value": 8 + }, + { + "name": "SHADER_STAGE_COMPUTE_BIT", + "value": 16 + } + ] + }, + { + "name": "ShaderLanguage", + "values": [ + { + "name": "SHADER_LANGUAGE_GLSL", + "value": 0 + }, + { + "name": "SHADER_LANGUAGE_HLSL", + "value": 1 + } + ] + }, + { + "name": "PipelineSpecializationConstantType", + "values": [ + { + "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_BOOL", + "value": 0 + }, + { + "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_INT", + "value": 1 + }, + { + "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_FLOAT", + "value": 2 + } + ] + }, + { + "name": "Limit", + "values": [ + { + "name": "LIMIT_MAX_BOUND_UNIFORM_SETS", + "value": 0 + }, + { + "name": "LIMIT_MAX_FRAMEBUFFER_COLOR_ATTACHMENTS", + "value": 1 + }, + { + "name": "LIMIT_MAX_TEXTURES_PER_UNIFORM_SET", + "value": 2 + }, + { + "name": "LIMIT_MAX_SAMPLERS_PER_UNIFORM_SET", + "value": 3 + }, + { + "name": "LIMIT_MAX_STORAGE_BUFFERS_PER_UNIFORM_SET", + "value": 4 + }, + { + "name": "LIMIT_MAX_STORAGE_IMAGES_PER_UNIFORM_SET", + "value": 5 + }, + { + "name": "LIMIT_MAX_UNIFORM_BUFFERS_PER_UNIFORM_SET", + "value": 6 + }, + { + "name": "LIMIT_MAX_DRAW_INDEXED_INDEX", + "value": 7 + }, + { + "name": "LIMIT_MAX_FRAMEBUFFER_HEIGHT", + "value": 8 + }, + { + "name": "LIMIT_MAX_FRAMEBUFFER_WIDTH", + "value": 9 + }, + { + "name": "LIMIT_MAX_TEXTURE_ARRAY_LAYERS", + "value": 10 + }, + { + "name": "LIMIT_MAX_TEXTURE_SIZE_1D", + "value": 11 + }, + { + "name": "LIMIT_MAX_TEXTURE_SIZE_2D", + "value": 12 + }, + { + "name": "LIMIT_MAX_TEXTURE_SIZE_3D", + "value": 13 + }, + { + "name": "LIMIT_MAX_TEXTURE_SIZE_CUBE", + "value": 14 + }, + { + "name": "LIMIT_MAX_TEXTURES_PER_SHADER_STAGE", + "value": 15 + }, + { + "name": "LIMIT_MAX_SAMPLERS_PER_SHADER_STAGE", + "value": 16 + }, + { + "name": "LIMIT_MAX_STORAGE_BUFFERS_PER_SHADER_STAGE", + "value": 17 + }, + { + "name": "LIMIT_MAX_STORAGE_IMAGES_PER_SHADER_STAGE", + "value": 18 + }, + { + "name": "LIMIT_MAX_UNIFORM_BUFFERS_PER_SHADER_STAGE", + "value": 19 + }, + { + "name": "LIMIT_MAX_PUSH_CONSTANT_SIZE", + "value": 20 + }, + { + "name": "LIMIT_MAX_UNIFORM_BUFFER_SIZE", + "value": 21 + }, + { + "name": "LIMIT_MAX_VERTEX_INPUT_ATTRIBUTE_OFFSET", + "value": 22 + }, + { + "name": "LIMIT_MAX_VERTEX_INPUT_ATTRIBUTES", + "value": 23 + }, + { + "name": "LIMIT_MAX_VERTEX_INPUT_BINDINGS", + "value": 24 + }, + { + "name": "LIMIT_MAX_VERTEX_INPUT_BINDING_STRIDE", + "value": 25 + }, + { + "name": "LIMIT_MIN_UNIFORM_BUFFER_OFFSET_ALIGNMENT", + "value": 26 + }, + { + "name": "LIMIT_MAX_COMPUTE_SHARED_MEMORY_SIZE", + "value": 27 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_COUNT_X", + "value": 28 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_COUNT_Y", + "value": 29 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_COUNT_Z", + "value": 30 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_INVOCATIONS", + "value": 31 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_SIZE_X", + "value": 32 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_SIZE_Y", + "value": 33 + }, + { + "name": "LIMIT_MAX_COMPUTE_WORKGROUP_SIZE_Z", + "value": 34 + } + ] + }, + { + "name": "MemoryType", + "values": [ + { + "name": "MEMORY_TEXTURES", + "value": 0 + }, + { + "name": "MEMORY_BUFFERS", + "value": 1 + }, + { + "name": "MEMORY_TOTAL", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "texture_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "format", + "type": "RDTextureFormat" + }, + { + "name": "view", + "type": "RDTextureView" + }, + { + "name": "data", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "texture_create_shared", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "view", + "type": "RDTextureView" + }, + { + "name": "with_texture", + "type": "RID" + } + ] + }, + { + "name": "texture_create_shared_from_slice", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1591541486, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "view", + "type": "RDTextureView" + }, + { + "name": "with_texture", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + }, + { + "name": "mipmap", + "type": "int", + "meta": "uint32" + }, + { + "name": "mipmaps", + "type": "int", + "meta": "uint32", + "default_value": "1" + }, + { + "name": "slice_type", + "type": "enum::RenderingDevice.TextureSliceType", + "default_value": "0" + } + ] + }, + { + "name": "texture_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + }, + { + "name": "data", + "type": "PackedByteArray" + }, + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "texture_get_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "texture_is_format_supported_for_usage", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "format", + "type": "enum::RenderingDevice.DataFormat" + }, + { + "name": "usage_flags", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "texture_is_shared", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "texture_is_valid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "texture_copy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 183086801, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "from_texture", + "type": "RID" + }, + { + "name": "to_texture", + "type": "RID" + }, + { + "name": "from_pos", + "type": "Vector3" + }, + { + "name": "to_pos", + "type": "Vector3" + }, + { + "name": "size", + "type": "Vector3" + }, + { + "name": "src_mipmap", + "type": "int", + "meta": "uint32" + }, + { + "name": "dst_mipmap", + "type": "int", + "meta": "uint32" + }, + { + "name": "src_layer", + "type": "int", + "meta": "uint32" + }, + { + "name": "dst_layer", + "type": "int", + "meta": "uint32" + }, + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "texture_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 179529038, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "base_mipmap", + "type": "int", + "meta": "uint32" + }, + { + "name": "mipmap_count", + "type": "int", + "meta": "uint32" + }, + { + "name": "base_layer", + "type": "int", + "meta": "uint32" + }, + { + "name": "layer_count", + "type": "int", + "meta": "uint32" + }, + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "texture_resolve_multisample", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "from_texture", + "type": "RID" + }, + { + "name": "to_texture", + "type": "RID" + }, + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "framebuffer_format_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "attachments", + "type": "Array" + }, + { + "name": "view_count", + "type": "int", + "meta": "uint32", + "default_value": "1" + } + ] + }, + { + "name": "framebuffer_format_create_multipass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "attachments", + "type": "Array" + }, + { + "name": "passes", + "type": "Array" + }, + { + "name": "view_count", + "type": "int", + "meta": "uint32", + "default_value": "1" + } + ] + }, + { + "name": "framebuffer_format_create_empty", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297011, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "samples", + "type": "enum::RenderingDevice.TextureSamples", + "default_value": "0" + } + ] + }, + { + "name": "framebuffer_format_get_texture_samples", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::RenderingDevice.TextureSamples" + }, + "arguments": [ + { + "name": "format", + "type": "int", + "meta": "int64" + }, + { + "name": "render_pass", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "framebuffer_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1450926197, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "textures", + "type": "Array" + }, + { + "name": "validate_with_format", + "type": "int", + "meta": "int64", + "default_value": "-1" + }, + { + "name": "view_count", + "type": "int", + "meta": "uint32", + "default_value": "1" + } + ] + }, + { + "name": "framebuffer_create_multipass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "textures", + "type": "Array" + }, + { + "name": "passes", + "type": "Array" + }, + { + "name": "validate_with_format", + "type": "int", + "meta": "int64", + "default_value": "-1" + }, + { + "name": "view_count", + "type": "int", + "meta": "uint32", + "default_value": "1" + } + ] + }, + { + "name": "framebuffer_create_empty", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3892018806, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "samples", + "type": "enum::RenderingDevice.TextureSamples", + "default_value": "0" + }, + { + "name": "validate_with_format", + "type": "int", + "meta": "int64", + "default_value": "-1" + } + ] + }, + { + "name": "framebuffer_get_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "framebuffer", + "type": "RID" + } + ] + }, + { + "name": "sampler_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "state", + "type": "RDSamplerState" + } + ] + }, + { + "name": "vertex_buffer_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1667512304, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + }, + { + "name": "data", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + }, + { + "name": "use_as_storage", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "vertex_format_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "vertex_descriptions", + "type": "Array" + } + ] + }, + { + "name": "index_buffer_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "size_indices", + "type": "int", + "meta": "uint32" + }, + { + "name": "format", + "type": "enum::RenderingDevice.IndexBufferFormat" + }, + { + "name": "data", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + }, + { + "name": "use_restart_indices", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "index_array_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "index_buffer", + "type": "RID" + }, + { + "name": "index_offset", + "type": "int", + "meta": "uint32" + }, + { + "name": "index_count", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "shader_compile_spirv_from_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "RDShaderSPIRV" + }, + "arguments": [ + { + "name": "shader_source", + "type": "RDShaderSource" + }, + { + "name": "allow_cache", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "shader_compile_binary_from_spirv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "spirv_data", + "type": "RDShaderSPIRV" + }, + { + "name": "name", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "shader_create_from_spirv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "spirv_data", + "type": "RDShaderSPIRV" + }, + { + "name": "name", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "shader_create_from_bytecode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "binary_data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "shader_get_vertex_input_attribute_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + } + ] + }, + { + "name": "uniform_buffer_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + }, + { + "name": "data", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + } + ] + }, + { + "name": "storage_buffer_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1667512304, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + }, + { + "name": "data", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + }, + { + "name": "usage", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "texture_buffer_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + }, + { + "name": "format", + "type": "enum::RenderingDevice.DataFormat" + }, + { + "name": "data", + "type": "PackedByteArray", + "default_value": "PackedByteArray()" + } + ] + }, + { + "name": "uniform_set_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "uniforms", + "type": "Array" + }, + { + "name": "shader", + "type": "RID" + }, + { + "name": "shader_set", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "uniform_set_is_valid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "uniform_set", + "type": "RID" + } + ] + }, + { + "name": "buffer_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 177157196, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "RID" + }, + { + "name": "offset", + "type": "int", + "meta": "uint32" + }, + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + }, + { + "name": "data", + "type": "PackedByteArray" + }, + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "buffer_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "RID" + }, + { + "name": "offset", + "type": "int", + "meta": "uint32" + }, + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + }, + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "buffer_get_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "buffer", + "type": "RID" + } + ] + }, + { + "name": "render_pipeline_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3182769428, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "framebuffer_format", + "type": "int", + "meta": "int64" + }, + { + "name": "vertex_format", + "type": "int", + "meta": "int64" + }, + { + "name": "primitive", + "type": "enum::RenderingDevice.RenderPrimitive" + }, + { + "name": "rasterization_state", + "type": "RDPipelineRasterizationState" + }, + { + "name": "multisample_state", + "type": "RDPipelineMultisampleState" + }, + { + "name": "stencil_state", + "type": "RDPipelineDepthStencilState" + }, + { + "name": "color_blend_state", + "type": "RDPipelineColorBlendState" + }, + { + "name": "dynamic_state_flags", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "for_render_pass", + "type": "int", + "meta": "uint32", + "default_value": "0" + }, + { + "name": "specialization_constants", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "render_pipeline_is_valid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "render_pipeline", + "type": "RID" + } + ] + }, + { + "name": "compute_pipeline_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "specialization_constants", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "compute_pipeline_is_valid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "compute_pieline", + "type": "RID" + } + ] + }, + { + "name": "screen_get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "screen_get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297044, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "screen_get_framebuffer_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "draw_list_begin_for_screen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1026930992, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "clear_color", + "type": "Color", + "default_value": "Color(0, 0, 0, 1)" + } + ] + }, + { + "name": "draw_list_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1675494101, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "framebuffer", + "type": "RID" + }, + { + "name": "initial_color_action", + "type": "enum::RenderingDevice.InitialAction" + }, + { + "name": "final_color_action", + "type": "enum::RenderingDevice.FinalAction" + }, + { + "name": "initial_depth_action", + "type": "enum::RenderingDevice.InitialAction" + }, + { + "name": "final_depth_action", + "type": "enum::RenderingDevice.FinalAction" + }, + { + "name": "clear_color_values", + "type": "PackedColorArray", + "default_value": "PackedColorArray()" + }, + { + "name": "clear_depth", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "clear_stencil", + "type": "int", + "meta": "uint32", + "default_value": "0" + }, + { + "name": "region", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + }, + { + "name": "storage_textures", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "draw_list_begin_split", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3629806550, + "return_value": { + "type": "PackedInt64Array" + }, + "arguments": [ + { + "name": "framebuffer", + "type": "RID" + }, + { + "name": "splits", + "type": "int", + "meta": "uint32" + }, + { + "name": "initial_color_action", + "type": "enum::RenderingDevice.InitialAction" + }, + { + "name": "final_color_action", + "type": "enum::RenderingDevice.FinalAction" + }, + { + "name": "initial_depth_action", + "type": "enum::RenderingDevice.InitialAction" + }, + { + "name": "final_depth_action", + "type": "enum::RenderingDevice.FinalAction" + }, + { + "name": "clear_color_values", + "type": "PackedColorArray", + "default_value": "PackedColorArray()" + }, + { + "name": "clear_depth", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "clear_stencil", + "type": "int", + "meta": "uint32", + "default_value": "0" + }, + { + "name": "region", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + }, + { + "name": "storage_textures", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "draw_list_bind_render_pipeline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "render_pipeline", + "type": "RID" + } + ] + }, + { + "name": "draw_list_bind_uniform_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "uniform_set", + "type": "RID" + }, + { + "name": "set_index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "draw_list_bind_vertex_array", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "vertex_array", + "type": "RID" + } + ] + }, + { + "name": "draw_list_bind_index_array", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "index_array", + "type": "RID" + } + ] + }, + { + "name": "draw_list_set_push_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "buffer", + "type": "PackedByteArray" + }, + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "draw_list_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "use_indices", + "type": "bool" + }, + { + "name": "instances", + "type": "int", + "meta": "uint32" + }, + { + "name": "procedural_vertex_count", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "draw_list_enable_scissor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + }, + { + "name": "rect", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + } + ] + }, + { + "name": "draw_list_disable_scissor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "draw_list", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "draw_list_switch_to_next_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "draw_list_switch_to_next_pass_split", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt64Array" + }, + "arguments": [ + { + "name": "splits", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "draw_list_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3497074714, + "arguments": [ + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "compute_list_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "allow_draw_overlap", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "compute_list_bind_compute_pipeline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "compute_list", + "type": "int", + "meta": "int64" + }, + { + "name": "compute_pipeline", + "type": "RID" + } + ] + }, + { + "name": "compute_list_set_push_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "compute_list", + "type": "int", + "meta": "int64" + }, + { + "name": "buffer", + "type": "PackedByteArray" + }, + { + "name": "size_bytes", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "compute_list_bind_uniform_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "compute_list", + "type": "int", + "meta": "int64" + }, + { + "name": "uniform_set", + "type": "RID" + }, + { + "name": "set_index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "compute_list_dispatch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "compute_list", + "type": "int", + "meta": "int64" + }, + { + "name": "x_groups", + "type": "int", + "meta": "uint32" + }, + { + "name": "y_groups", + "type": "int", + "meta": "uint32" + }, + { + "name": "z_groups", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "compute_list_add_barrier", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "compute_list", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "compute_list_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3497074714, + "arguments": [ + { + "name": "post_barrier", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "free_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "capture_timestamp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_captured_timestamps_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_captured_timestamps_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_captured_timestamp_gpu_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_captured_timestamp_cpu_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_captured_timestamp_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "limit_get", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "limit", + "type": "enum::RenderingDevice.Limit" + } + ] + }, + { + "name": "get_frame_delay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "submit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "barrier", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2843466479, + "arguments": [ + { + "name": "from", + "type": "int", + "meta": "uint32", + "default_value": "7" + }, + { + "name": "to", + "type": "int", + "meta": "uint32", + "default_value": "7" + } + ] + }, + { + "name": "full_barrier", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create_local_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RenderingDevice" + } + }, + { + "name": "set_resource_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "RID" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "draw_command_begin_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "draw_command_insert_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "draw_command_end_label", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_device_vendor_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_device_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_device_pipeline_cache_uuid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_memory_usage", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "type", + "type": "enum::RenderingDevice.MemoryType" + } + ] + }, + { + "name": "get_driver_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "resource", + "type": "enum::RenderingDevice.DriverResource" + }, + { + "name": "rid", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "uint64" + } + ] + } + ] + }, + { + "name": "RenderingServer", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "NO_INDEX_ARRAY", + "value": -1 + }, + { + "name": "ARRAY_WEIGHTS_SIZE", + "value": 4 + }, + { + "name": "CANVAS_ITEM_Z_MIN", + "value": -4096 + }, + { + "name": "CANVAS_ITEM_Z_MAX", + "value": 4096 + }, + { + "name": "MAX_GLOW_LEVELS", + "value": 7 + }, + { + "name": "MAX_CURSORS", + "value": 8 + }, + { + "name": "MAX_2D_DIRECTIONAL_LIGHTS", + "value": 8 + }, + { + "name": "MATERIAL_RENDER_PRIORITY_MIN", + "value": -128 + }, + { + "name": "MATERIAL_RENDER_PRIORITY_MAX", + "value": 127 + }, + { + "name": "ARRAY_CUSTOM_COUNT", + "value": 4 + }, + { + "name": "PARTICLES_EMIT_FLAG_POSITION", + "value": 1 + }, + { + "name": "PARTICLES_EMIT_FLAG_ROTATION_SCALE", + "value": 2 + }, + { + "name": "PARTICLES_EMIT_FLAG_VELOCITY", + "value": 4 + }, + { + "name": "PARTICLES_EMIT_FLAG_COLOR", + "value": 8 + }, + { + "name": "PARTICLES_EMIT_FLAG_CUSTOM", + "value": 16 + } + ], + "enums": [ + { + "name": "TextureLayeredType", + "values": [ + { + "name": "TEXTURE_LAYERED_2D_ARRAY", + "value": 0 + }, + { + "name": "TEXTURE_LAYERED_CUBEMAP", + "value": 1 + }, + { + "name": "TEXTURE_LAYERED_CUBEMAP_ARRAY", + "value": 2 + } + ] + }, + { + "name": "CubeMapLayer", + "values": [ + { + "name": "CUBEMAP_LAYER_LEFT", + "value": 0 + }, + { + "name": "CUBEMAP_LAYER_RIGHT", + "value": 1 + }, + { + "name": "CUBEMAP_LAYER_BOTTOM", + "value": 2 + }, + { + "name": "CUBEMAP_LAYER_TOP", + "value": 3 + }, + { + "name": "CUBEMAP_LAYER_FRONT", + "value": 4 + }, + { + "name": "CUBEMAP_LAYER_BACK", + "value": 5 + } + ] + }, + { + "name": "ShaderMode", + "values": [ + { + "name": "SHADER_SPATIAL", + "value": 0 + }, + { + "name": "SHADER_CANVAS_ITEM", + "value": 1 + }, + { + "name": "SHADER_PARTICLES", + "value": 2 + }, + { + "name": "SHADER_SKY", + "value": 3 + }, + { + "name": "SHADER_FOG", + "value": 4 + }, + { + "name": "SHADER_MAX", + "value": 5 + } + ] + }, + { + "name": "ArrayType", + "values": [ + { + "name": "ARRAY_VERTEX", + "value": 0 + }, + { + "name": "ARRAY_NORMAL", + "value": 1 + }, + { + "name": "ARRAY_TANGENT", + "value": 2 + }, + { + "name": "ARRAY_COLOR", + "value": 3 + }, + { + "name": "ARRAY_TEX_UV", + "value": 4 + }, + { + "name": "ARRAY_TEX_UV2", + "value": 5 + }, + { + "name": "ARRAY_CUSTOM0", + "value": 6 + }, + { + "name": "ARRAY_CUSTOM1", + "value": 7 + }, + { + "name": "ARRAY_CUSTOM2", + "value": 8 + }, + { + "name": "ARRAY_CUSTOM3", + "value": 9 + }, + { + "name": "ARRAY_BONES", + "value": 10 + }, + { + "name": "ARRAY_WEIGHTS", + "value": 11 + }, + { + "name": "ARRAY_INDEX", + "value": 12 + }, + { + "name": "ARRAY_MAX", + "value": 13 + } + ] + }, + { + "name": "ArrayCustomFormat", + "values": [ + { + "name": "ARRAY_CUSTOM_RGBA8_UNORM", + "value": 0 + }, + { + "name": "ARRAY_CUSTOM_RGBA8_SNORM", + "value": 1 + }, + { + "name": "ARRAY_CUSTOM_RG_HALF", + "value": 2 + }, + { + "name": "ARRAY_CUSTOM_RGBA_HALF", + "value": 3 + }, + { + "name": "ARRAY_CUSTOM_R_FLOAT", + "value": 4 + }, + { + "name": "ARRAY_CUSTOM_RG_FLOAT", + "value": 5 + }, + { + "name": "ARRAY_CUSTOM_RGB_FLOAT", + "value": 6 + }, + { + "name": "ARRAY_CUSTOM_RGBA_FLOAT", + "value": 7 + }, + { + "name": "ARRAY_CUSTOM_MAX", + "value": 8 + } + ] + }, + { + "name": "ArrayFormat", + "values": [ + { + "name": "ARRAY_FORMAT_VERTEX", + "value": 1 + }, + { + "name": "ARRAY_FORMAT_NORMAL", + "value": 2 + }, + { + "name": "ARRAY_FORMAT_TANGENT", + "value": 4 + }, + { + "name": "ARRAY_FORMAT_COLOR", + "value": 8 + }, + { + "name": "ARRAY_FORMAT_TEX_UV", + "value": 16 + }, + { + "name": "ARRAY_FORMAT_TEX_UV2", + "value": 32 + }, + { + "name": "ARRAY_FORMAT_CUSTOM0", + "value": 64 + }, + { + "name": "ARRAY_FORMAT_CUSTOM1", + "value": 128 + }, + { + "name": "ARRAY_FORMAT_CUSTOM2", + "value": 256 + }, + { + "name": "ARRAY_FORMAT_CUSTOM3", + "value": 512 + }, + { + "name": "ARRAY_FORMAT_BONES", + "value": 1024 + }, + { + "name": "ARRAY_FORMAT_WEIGHTS", + "value": 2048 + }, + { + "name": "ARRAY_FORMAT_INDEX", + "value": 4096 + }, + { + "name": "ARRAY_FORMAT_BLEND_SHAPE_MASK", + "value": 7 + }, + { + "name": "ARRAY_FORMAT_CUSTOM_BASE", + "value": 13 + }, + { + "name": "ARRAY_FORMAT_CUSTOM_BITS", + "value": 3 + }, + { + "name": "ARRAY_FORMAT_CUSTOM0_SHIFT", + "value": 13 + }, + { + "name": "ARRAY_FORMAT_CUSTOM1_SHIFT", + "value": 16 + }, + { + "name": "ARRAY_FORMAT_CUSTOM2_SHIFT", + "value": 19 + }, + { + "name": "ARRAY_FORMAT_CUSTOM3_SHIFT", + "value": 22 + }, + { + "name": "ARRAY_FORMAT_CUSTOM_MASK", + "value": 7 + }, + { + "name": "ARRAY_COMPRESS_FLAGS_BASE", + "value": 25 + }, + { + "name": "ARRAY_FLAG_USE_2D_VERTICES", + "value": 33554432 + }, + { + "name": "ARRAY_FLAG_USE_DYNAMIC_UPDATE", + "value": 67108864 + }, + { + "name": "ARRAY_FLAG_USE_8_BONE_WEIGHTS", + "value": 134217728 + } + ] + }, + { + "name": "PrimitiveType", + "values": [ + { + "name": "PRIMITIVE_POINTS", + "value": 0 + }, + { + "name": "PRIMITIVE_LINES", + "value": 1 + }, + { + "name": "PRIMITIVE_LINE_STRIP", + "value": 2 + }, + { + "name": "PRIMITIVE_TRIANGLES", + "value": 3 + }, + { + "name": "PRIMITIVE_TRIANGLE_STRIP", + "value": 4 + }, + { + "name": "PRIMITIVE_MAX", + "value": 5 + } + ] + }, + { + "name": "BlendShapeMode", + "values": [ + { + "name": "BLEND_SHAPE_MODE_NORMALIZED", + "value": 0 + }, + { + "name": "BLEND_SHAPE_MODE_RELATIVE", + "value": 1 + } + ] + }, + { + "name": "MultimeshTransformFormat", + "values": [ + { + "name": "MULTIMESH_TRANSFORM_2D", + "value": 0 + }, + { + "name": "MULTIMESH_TRANSFORM_3D", + "value": 1 + } + ] + }, + { + "name": "LightProjectorFilter", + "values": [ + { + "name": "LIGHT_PROJECTOR_FILTER_NEAREST", + "value": 0 + }, + { + "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS", + "value": 1 + }, + { + "name": "LIGHT_PROJECTOR_FILTER_LINEAR", + "value": 2 + }, + { + "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS", + "value": 3 + }, + { + "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "value": 4 + } + ] + }, + { + "name": "LightType", + "values": [ + { + "name": "LIGHT_DIRECTIONAL", + "value": 0 + }, + { + "name": "LIGHT_OMNI", + "value": 1 + }, + { + "name": "LIGHT_SPOT", + "value": 2 + } + ] + }, + { + "name": "LightParam", + "values": [ + { + "name": "LIGHT_PARAM_ENERGY", + "value": 0 + }, + { + "name": "LIGHT_PARAM_INDIRECT_ENERGY", + "value": 1 + }, + { + "name": "LIGHT_PARAM_SPECULAR", + "value": 2 + }, + { + "name": "LIGHT_PARAM_RANGE", + "value": 3 + }, + { + "name": "LIGHT_PARAM_SIZE", + "value": 4 + }, + { + "name": "LIGHT_PARAM_ATTENUATION", + "value": 5 + }, + { + "name": "LIGHT_PARAM_SPOT_ANGLE", + "value": 6 + }, + { + "name": "LIGHT_PARAM_SPOT_ATTENUATION", + "value": 7 + }, + { + "name": "LIGHT_PARAM_SHADOW_MAX_DISTANCE", + "value": 8 + }, + { + "name": "LIGHT_PARAM_SHADOW_SPLIT_1_OFFSET", + "value": 9 + }, + { + "name": "LIGHT_PARAM_SHADOW_SPLIT_2_OFFSET", + "value": 10 + }, + { + "name": "LIGHT_PARAM_SHADOW_SPLIT_3_OFFSET", + "value": 11 + }, + { + "name": "LIGHT_PARAM_SHADOW_FADE_START", + "value": 12 + }, + { + "name": "LIGHT_PARAM_SHADOW_NORMAL_BIAS", + "value": 13 + }, + { + "name": "LIGHT_PARAM_SHADOW_BIAS", + "value": 14 + }, + { + "name": "LIGHT_PARAM_SHADOW_PANCAKE_SIZE", + "value": 15 + }, + { + "name": "LIGHT_PARAM_SHADOW_BLUR", + "value": 16 + }, + { + "name": "LIGHT_PARAM_SHADOW_VOLUMETRIC_FOG_FADE", + "value": 17 + }, + { + "name": "LIGHT_PARAM_TRANSMITTANCE_BIAS", + "value": 18 + }, + { + "name": "LIGHT_PARAM_MAX", + "value": 19 + } + ] + }, + { + "name": "LightBakeMode", + "values": [ + { + "name": "LIGHT_BAKE_DISABLED", + "value": 0 + }, + { + "name": "LIGHT_BAKE_STATIC", + "value": 1 + }, + { + "name": "LIGHT_BAKE_DYNAMIC", + "value": 2 + } + ] + }, + { + "name": "LightOmniShadowMode", + "values": [ + { + "name": "LIGHT_OMNI_SHADOW_DUAL_PARABOLOID", + "value": 0 + }, + { + "name": "LIGHT_OMNI_SHADOW_CUBE", + "value": 1 + } + ] + }, + { + "name": "LightDirectionalShadowMode", + "values": [ + { + "name": "LIGHT_DIRECTIONAL_SHADOW_ORTHOGONAL", + "value": 0 + }, + { + "name": "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_2_SPLITS", + "value": 1 + }, + { + "name": "LIGHT_DIRECTIONAL_SHADOW_PARALLEL_4_SPLITS", + "value": 2 + } + ] + }, + { + "name": "LightDirectionalSkyMode", + "values": [ + { + "name": "LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_AND_SKY", + "value": 0 + }, + { + "name": "LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_ONLY", + "value": 1 + }, + { + "name": "LIGHT_DIRECTIONAL_SKY_MODE_SKY_ONLY", + "value": 2 + } + ] + }, + { + "name": "ShadowQuality", + "values": [ + { + "name": "SHADOW_QUALITY_HARD", + "value": 0 + }, + { + "name": "SHADOW_QUALITY_SOFT_VERY_LOW", + "value": 1 + }, + { + "name": "SHADOW_QUALITY_SOFT_LOW", + "value": 2 + }, + { + "name": "SHADOW_QUALITY_SOFT_MEDIUM", + "value": 3 + }, + { + "name": "SHADOW_QUALITY_SOFT_HIGH", + "value": 4 + }, + { + "name": "SHADOW_QUALITY_SOFT_ULTRA", + "value": 5 + }, + { + "name": "SHADOW_QUALITY_MAX", + "value": 6 + } + ] + }, + { + "name": "ReflectionProbeUpdateMode", + "values": [ + { + "name": "REFLECTION_PROBE_UPDATE_ONCE", + "value": 0 + }, + { + "name": "REFLECTION_PROBE_UPDATE_ALWAYS", + "value": 1 + } + ] + }, + { + "name": "ReflectionProbeAmbientMode", + "values": [ + { + "name": "REFLECTION_PROBE_AMBIENT_DISABLED", + "value": 0 + }, + { + "name": "REFLECTION_PROBE_AMBIENT_ENVIRONMENT", + "value": 1 + }, + { + "name": "REFLECTION_PROBE_AMBIENT_COLOR", + "value": 2 + } + ] + }, + { + "name": "DecalTexture", + "values": [ + { + "name": "DECAL_TEXTURE_ALBEDO", + "value": 0 + }, + { + "name": "DECAL_TEXTURE_NORMAL", + "value": 1 + }, + { + "name": "DECAL_TEXTURE_ORM", + "value": 2 + }, + { + "name": "DECAL_TEXTURE_EMISSION", + "value": 3 + }, + { + "name": "DECAL_TEXTURE_MAX", + "value": 4 + } + ] + }, + { + "name": "DecalFilter", + "values": [ + { + "name": "DECAL_FILTER_NEAREST", + "value": 0 + }, + { + "name": "DECAL_FILTER_NEAREST_MIPMAPS", + "value": 1 + }, + { + "name": "DECAL_FILTER_LINEAR", + "value": 2 + }, + { + "name": "DECAL_FILTER_LINEAR_MIPMAPS", + "value": 3 + }, + { + "name": "DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "value": 4 + } + ] + }, + { + "name": "VoxelGIQuality", + "values": [ + { + "name": "VOXEL_GI_QUALITY_LOW", + "value": 0 + }, + { + "name": "VOXEL_GI_QUALITY_HIGH", + "value": 1 + } + ] + }, + { + "name": "ParticlesMode", + "values": [ + { + "name": "PARTICLES_MODE_2D", + "value": 0 + }, + { + "name": "PARTICLES_MODE_3D", + "value": 1 + } + ] + }, + { + "name": "ParticlesTransformAlign", + "values": [ + { + "name": "PARTICLES_TRANSFORM_ALIGN_DISABLED", + "value": 0 + }, + { + "name": "PARTICLES_TRANSFORM_ALIGN_Z_BILLBOARD", + "value": 1 + }, + { + "name": "PARTICLES_TRANSFORM_ALIGN_Y_TO_VELOCITY", + "value": 2 + }, + { + "name": "PARTICLES_TRANSFORM_ALIGN_Z_BILLBOARD_Y_TO_VELOCITY", + "value": 3 + } + ] + }, + { + "name": "ParticlesDrawOrder", + "values": [ + { + "name": "PARTICLES_DRAW_ORDER_INDEX", + "value": 0 + }, + { + "name": "PARTICLES_DRAW_ORDER_LIFETIME", + "value": 1 + }, + { + "name": "PARTICLES_DRAW_ORDER_REVERSE_LIFETIME", + "value": 2 + }, + { + "name": "PARTICLES_DRAW_ORDER_VIEW_DEPTH", + "value": 3 + } + ] + }, + { + "name": "ParticlesCollisionType", + "values": [ + { + "name": "PARTICLES_COLLISION_TYPE_SPHERE_ATTRACT", + "value": 0 + }, + { + "name": "PARTICLES_COLLISION_TYPE_BOX_ATTRACT", + "value": 1 + }, + { + "name": "PARTICLES_COLLISION_TYPE_VECTOR_FIELD_ATTRACT", + "value": 2 + }, + { + "name": "PARTICLES_COLLISION_TYPE_SPHERE_COLLIDE", + "value": 3 + }, + { + "name": "PARTICLES_COLLISION_TYPE_BOX_COLLIDE", + "value": 4 + }, + { + "name": "PARTICLES_COLLISION_TYPE_SDF_COLLIDE", + "value": 5 + }, + { + "name": "PARTICLES_COLLISION_TYPE_HEIGHTFIELD_COLLIDE", + "value": 6 + } + ] + }, + { + "name": "ParticlesCollisionHeightfieldResolution", + "values": [ + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_256", + "value": 0 + }, + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_512", + "value": 1 + }, + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_1024", + "value": 2 + }, + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_2048", + "value": 3 + }, + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_4096", + "value": 4 + }, + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_8192", + "value": 5 + }, + { + "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_MAX", + "value": 6 + } + ] + }, + { + "name": "FogVolumeShape", + "values": [ + { + "name": "FOG_VOLUME_SHAPE_ELLIPSOID", + "value": 0 + }, + { + "name": "FOG_VOLUME_SHAPE_CONE", + "value": 1 + }, + { + "name": "FOG_VOLUME_SHAPE_CYLINDER", + "value": 2 + }, + { + "name": "FOG_VOLUME_SHAPE_BOX", + "value": 3 + }, + { + "name": "FOG_VOLUME_SHAPE_WORLD", + "value": 4 + }, + { + "name": "FOG_VOLUME_SHAPE_MAX", + "value": 5 + } + ] + }, + { + "name": "ViewportScaling3DMode", + "values": [ + { + "name": "VIEWPORT_SCALING_3D_MODE_BILINEAR", + "value": 0 + }, + { + "name": "VIEWPORT_SCALING_3D_MODE_FSR", + "value": 1 + }, + { + "name": "VIEWPORT_SCALING_3D_MODE_MAX", + "value": 2 + } + ] + }, + { + "name": "ViewportUpdateMode", + "values": [ + { + "name": "VIEWPORT_UPDATE_DISABLED", + "value": 0 + }, + { + "name": "VIEWPORT_UPDATE_ONCE", + "value": 1 + }, + { + "name": "VIEWPORT_UPDATE_WHEN_VISIBLE", + "value": 2 + }, + { + "name": "VIEWPORT_UPDATE_WHEN_PARENT_VISIBLE", + "value": 3 + }, + { + "name": "VIEWPORT_UPDATE_ALWAYS", + "value": 4 + } + ] + }, + { + "name": "ViewportClearMode", + "values": [ + { + "name": "VIEWPORT_CLEAR_ALWAYS", + "value": 0 + }, + { + "name": "VIEWPORT_CLEAR_NEVER", + "value": 1 + }, + { + "name": "VIEWPORT_CLEAR_ONLY_NEXT_FRAME", + "value": 2 + } + ] + }, + { + "name": "ViewportSDFOversize", + "values": [ + { + "name": "VIEWPORT_SDF_OVERSIZE_100_PERCENT", + "value": 0 + }, + { + "name": "VIEWPORT_SDF_OVERSIZE_120_PERCENT", + "value": 1 + }, + { + "name": "VIEWPORT_SDF_OVERSIZE_150_PERCENT", + "value": 2 + }, + { + "name": "VIEWPORT_SDF_OVERSIZE_200_PERCENT", + "value": 3 + }, + { + "name": "VIEWPORT_SDF_OVERSIZE_MAX", + "value": 4 + } + ] + }, + { + "name": "ViewportSDFScale", + "values": [ + { + "name": "VIEWPORT_SDF_SCALE_100_PERCENT", + "value": 0 + }, + { + "name": "VIEWPORT_SDF_SCALE_50_PERCENT", + "value": 1 + }, + { + "name": "VIEWPORT_SDF_SCALE_25_PERCENT", + "value": 2 + }, + { + "name": "VIEWPORT_SDF_SCALE_MAX", + "value": 3 + } + ] + }, + { + "name": "ViewportMSAA", + "values": [ + { + "name": "VIEWPORT_MSAA_DISABLED", + "value": 0 + }, + { + "name": "VIEWPORT_MSAA_2X", + "value": 1 + }, + { + "name": "VIEWPORT_MSAA_4X", + "value": 2 + }, + { + "name": "VIEWPORT_MSAA_8X", + "value": 3 + }, + { + "name": "VIEWPORT_MSAA_MAX", + "value": 4 + } + ] + }, + { + "name": "ViewportScreenSpaceAA", + "values": [ + { + "name": "VIEWPORT_SCREEN_SPACE_AA_DISABLED", + "value": 0 + }, + { + "name": "VIEWPORT_SCREEN_SPACE_AA_FXAA", + "value": 1 + }, + { + "name": "VIEWPORT_SCREEN_SPACE_AA_MAX", + "value": 2 + } + ] + }, + { + "name": "ViewportOcclusionCullingBuildQuality", + "values": [ + { + "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_LOW", + "value": 0 + }, + { + "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_MEDIUM", + "value": 1 + }, + { + "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_HIGH", + "value": 2 + } + ] + }, + { + "name": "ViewportRenderInfo", + "values": [ + { + "name": "VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME", + "value": 0 + }, + { + "name": "VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME", + "value": 1 + }, + { + "name": "VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME", + "value": 2 + }, + { + "name": "VIEWPORT_RENDER_INFO_MAX", + "value": 3 + } + ] + }, + { + "name": "ViewportRenderInfoType", + "values": [ + { + "name": "VIEWPORT_RENDER_INFO_TYPE_VISIBLE", + "value": 0 + }, + { + "name": "VIEWPORT_RENDER_INFO_TYPE_SHADOW", + "value": 1 + }, + { + "name": "VIEWPORT_RENDER_INFO_TYPE_MAX", + "value": 2 + } + ] + }, + { + "name": "ViewportDebugDraw", + "values": [ + { + "name": "VIEWPORT_DEBUG_DRAW_DISABLED", + "value": 0 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_UNSHADED", + "value": 1 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_LIGHTING", + "value": 2 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_OVERDRAW", + "value": 3 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_WIREFRAME", + "value": 4 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_NORMAL_BUFFER", + "value": 5 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_VOXEL_GI_ALBEDO", + "value": 6 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_VOXEL_GI_LIGHTING", + "value": 7 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_VOXEL_GI_EMISSION", + "value": 8 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_SHADOW_ATLAS", + "value": 9 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_DIRECTIONAL_SHADOW_ATLAS", + "value": 10 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_SCENE_LUMINANCE", + "value": 11 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_SSAO", + "value": 12 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_SSIL", + "value": 13 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_PSSM_SPLITS", + "value": 14 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_DECAL_ATLAS", + "value": 15 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_SDFGI", + "value": 16 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_SDFGI_PROBES", + "value": 17 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_GI_BUFFER", + "value": 18 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_DISABLE_LOD", + "value": 19 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_OMNI_LIGHTS", + "value": 20 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_SPOT_LIGHTS", + "value": 21 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_DECALS", + "value": 22 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_CLUSTER_REFLECTION_PROBES", + "value": 23 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_OCCLUDERS", + "value": 24 + }, + { + "name": "VIEWPORT_DEBUG_DRAW_MOTION_VECTORS", + "value": 25 + } + ] + }, + { + "name": "SkyMode", + "values": [ + { + "name": "SKY_MODE_AUTOMATIC", + "value": 0 + }, + { + "name": "SKY_MODE_QUALITY", + "value": 1 + }, + { + "name": "SKY_MODE_INCREMENTAL", + "value": 2 + }, + { + "name": "SKY_MODE_REALTIME", + "value": 3 + } + ] + }, + { + "name": "EnvironmentBG", + "values": [ + { + "name": "ENV_BG_CLEAR_COLOR", + "value": 0 + }, + { + "name": "ENV_BG_COLOR", + "value": 1 + }, + { + "name": "ENV_BG_SKY", + "value": 2 + }, + { + "name": "ENV_BG_CANVAS", + "value": 3 + }, + { + "name": "ENV_BG_KEEP", + "value": 4 + }, + { + "name": "ENV_BG_CAMERA_FEED", + "value": 5 + }, + { + "name": "ENV_BG_MAX", + "value": 6 + } + ] + }, + { + "name": "EnvironmentAmbientSource", + "values": [ + { + "name": "ENV_AMBIENT_SOURCE_BG", + "value": 0 + }, + { + "name": "ENV_AMBIENT_SOURCE_DISABLED", + "value": 1 + }, + { + "name": "ENV_AMBIENT_SOURCE_COLOR", + "value": 2 + }, + { + "name": "ENV_AMBIENT_SOURCE_SKY", + "value": 3 + } + ] + }, + { + "name": "EnvironmentReflectionSource", + "values": [ + { + "name": "ENV_REFLECTION_SOURCE_BG", + "value": 0 + }, + { + "name": "ENV_REFLECTION_SOURCE_DISABLED", + "value": 1 + }, + { + "name": "ENV_REFLECTION_SOURCE_SKY", + "value": 2 + } + ] + }, + { + "name": "EnvironmentGlowBlendMode", + "values": [ + { + "name": "ENV_GLOW_BLEND_MODE_ADDITIVE", + "value": 0 + }, + { + "name": "ENV_GLOW_BLEND_MODE_SCREEN", + "value": 1 + }, + { + "name": "ENV_GLOW_BLEND_MODE_SOFTLIGHT", + "value": 2 + }, + { + "name": "ENV_GLOW_BLEND_MODE_REPLACE", + "value": 3 + }, + { + "name": "ENV_GLOW_BLEND_MODE_MIX", + "value": 4 + } + ] + }, + { + "name": "EnvironmentToneMapper", + "values": [ + { + "name": "ENV_TONE_MAPPER_LINEAR", + "value": 0 + }, + { + "name": "ENV_TONE_MAPPER_REINHARD", + "value": 1 + }, + { + "name": "ENV_TONE_MAPPER_FILMIC", + "value": 2 + }, + { + "name": "ENV_TONE_MAPPER_ACES", + "value": 3 + } + ] + }, + { + "name": "EnvironmentSSRRoughnessQuality", + "values": [ + { + "name": "ENV_SSR_ROUGHNESS_QUALITY_DISABLED", + "value": 0 + }, + { + "name": "ENV_SSR_ROUGHNESS_QUALITY_LOW", + "value": 1 + }, + { + "name": "ENV_SSR_ROUGHNESS_QUALITY_MEDIUM", + "value": 2 + }, + { + "name": "ENV_SSR_ROUGHNESS_QUALITY_HIGH", + "value": 3 + } + ] + }, + { + "name": "EnvironmentSSAOQuality", + "values": [ + { + "name": "ENV_SSAO_QUALITY_VERY_LOW", + "value": 0 + }, + { + "name": "ENV_SSAO_QUALITY_LOW", + "value": 1 + }, + { + "name": "ENV_SSAO_QUALITY_MEDIUM", + "value": 2 + }, + { + "name": "ENV_SSAO_QUALITY_HIGH", + "value": 3 + }, + { + "name": "ENV_SSAO_QUALITY_ULTRA", + "value": 4 + } + ] + }, + { + "name": "EnvironmentSSILQuality", + "values": [ + { + "name": "ENV_SSIL_QUALITY_VERY_LOW", + "value": 0 + }, + { + "name": "ENV_SSIL_QUALITY_LOW", + "value": 1 + }, + { + "name": "ENV_SSIL_QUALITY_MEDIUM", + "value": 2 + }, + { + "name": "ENV_SSIL_QUALITY_HIGH", + "value": 3 + }, + { + "name": "ENV_SSIL_QUALITY_ULTRA", + "value": 4 + } + ] + }, + { + "name": "EnvironmentSDFGIYScale", + "values": [ + { + "name": "ENV_SDFGI_Y_SCALE_50_PERCENT", + "value": 0 + }, + { + "name": "ENV_SDFGI_Y_SCALE_75_PERCENT", + "value": 1 + }, + { + "name": "ENV_SDFGI_Y_SCALE_100_PERCENT", + "value": 2 + } + ] + }, + { + "name": "EnvironmentSDFGIRayCount", + "values": [ + { + "name": "ENV_SDFGI_RAY_COUNT_4", + "value": 0 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_8", + "value": 1 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_16", + "value": 2 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_32", + "value": 3 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_64", + "value": 4 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_96", + "value": 5 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_128", + "value": 6 + }, + { + "name": "ENV_SDFGI_RAY_COUNT_MAX", + "value": 7 + } + ] + }, + { + "name": "EnvironmentSDFGIFramesToConverge", + "values": [ + { + "name": "ENV_SDFGI_CONVERGE_IN_5_FRAMES", + "value": 0 + }, + { + "name": "ENV_SDFGI_CONVERGE_IN_10_FRAMES", + "value": 1 + }, + { + "name": "ENV_SDFGI_CONVERGE_IN_15_FRAMES", + "value": 2 + }, + { + "name": "ENV_SDFGI_CONVERGE_IN_20_FRAMES", + "value": 3 + }, + { + "name": "ENV_SDFGI_CONVERGE_IN_25_FRAMES", + "value": 4 + }, + { + "name": "ENV_SDFGI_CONVERGE_IN_30_FRAMES", + "value": 5 + }, + { + "name": "ENV_SDFGI_CONVERGE_MAX", + "value": 6 + } + ] + }, + { + "name": "EnvironmentSDFGIFramesToUpdateLight", + "values": [ + { + "name": "ENV_SDFGI_UPDATE_LIGHT_IN_1_FRAME", + "value": 0 + }, + { + "name": "ENV_SDFGI_UPDATE_LIGHT_IN_2_FRAMES", + "value": 1 + }, + { + "name": "ENV_SDFGI_UPDATE_LIGHT_IN_4_FRAMES", + "value": 2 + }, + { + "name": "ENV_SDFGI_UPDATE_LIGHT_IN_8_FRAMES", + "value": 3 + }, + { + "name": "ENV_SDFGI_UPDATE_LIGHT_IN_16_FRAMES", + "value": 4 + }, + { + "name": "ENV_SDFGI_UPDATE_LIGHT_MAX", + "value": 5 + } + ] + }, + { + "name": "SubSurfaceScatteringQuality", + "values": [ + { + "name": "SUB_SURFACE_SCATTERING_QUALITY_DISABLED", + "value": 0 + }, + { + "name": "SUB_SURFACE_SCATTERING_QUALITY_LOW", + "value": 1 + }, + { + "name": "SUB_SURFACE_SCATTERING_QUALITY_MEDIUM", + "value": 2 + }, + { + "name": "SUB_SURFACE_SCATTERING_QUALITY_HIGH", + "value": 3 + } + ] + }, + { + "name": "DOFBokehShape", + "values": [ + { + "name": "DOF_BOKEH_BOX", + "value": 0 + }, + { + "name": "DOF_BOKEH_HEXAGON", + "value": 1 + }, + { + "name": "DOF_BOKEH_CIRCLE", + "value": 2 + } + ] + }, + { + "name": "DOFBlurQuality", + "values": [ + { + "name": "DOF_BLUR_QUALITY_VERY_LOW", + "value": 0 + }, + { + "name": "DOF_BLUR_QUALITY_LOW", + "value": 1 + }, + { + "name": "DOF_BLUR_QUALITY_MEDIUM", + "value": 2 + }, + { + "name": "DOF_BLUR_QUALITY_HIGH", + "value": 3 + } + ] + }, + { + "name": "InstanceType", + "values": [ + { + "name": "INSTANCE_NONE", + "value": 0 + }, + { + "name": "INSTANCE_MESH", + "value": 1 + }, + { + "name": "INSTANCE_MULTIMESH", + "value": 2 + }, + { + "name": "INSTANCE_PARTICLES", + "value": 3 + }, + { + "name": "INSTANCE_PARTICLES_COLLISION", + "value": 4 + }, + { + "name": "INSTANCE_LIGHT", + "value": 5 + }, + { + "name": "INSTANCE_REFLECTION_PROBE", + "value": 6 + }, + { + "name": "INSTANCE_DECAL", + "value": 7 + }, + { + "name": "INSTANCE_VOXEL_GI", + "value": 8 + }, + { + "name": "INSTANCE_LIGHTMAP", + "value": 9 + }, + { + "name": "INSTANCE_OCCLUDER", + "value": 10 + }, + { + "name": "INSTANCE_VISIBLITY_NOTIFIER", + "value": 11 + }, + { + "name": "INSTANCE_FOG_VOLUME", + "value": 12 + }, + { + "name": "INSTANCE_MAX", + "value": 13 + }, + { + "name": "INSTANCE_GEOMETRY_MASK", + "value": 14 + } + ] + }, + { + "name": "InstanceFlags", + "values": [ + { + "name": "INSTANCE_FLAG_USE_BAKED_LIGHT", + "value": 0 + }, + { + "name": "INSTANCE_FLAG_USE_DYNAMIC_GI", + "value": 1 + }, + { + "name": "INSTANCE_FLAG_DRAW_NEXT_FRAME_IF_VISIBLE", + "value": 2 + }, + { + "name": "INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING", + "value": 3 + }, + { + "name": "INSTANCE_FLAG_MAX", + "value": 4 + } + ] + }, + { + "name": "ShadowCastingSetting", + "values": [ + { + "name": "SHADOW_CASTING_SETTING_OFF", + "value": 0 + }, + { + "name": "SHADOW_CASTING_SETTING_ON", + "value": 1 + }, + { + "name": "SHADOW_CASTING_SETTING_DOUBLE_SIDED", + "value": 2 + }, + { + "name": "SHADOW_CASTING_SETTING_SHADOWS_ONLY", + "value": 3 + } + ] + }, + { + "name": "VisibilityRangeFadeMode", + "values": [ + { + "name": "VISIBILITY_RANGE_FADE_DISABLED", + "value": 0 + }, + { + "name": "VISIBILITY_RANGE_FADE_SELF", + "value": 1 + }, + { + "name": "VISIBILITY_RANGE_FADE_DEPENDENCIES", + "value": 2 + } + ] + }, + { + "name": "BakeChannels", + "values": [ + { + "name": "BAKE_CHANNEL_ALBEDO_ALPHA", + "value": 0 + }, + { + "name": "BAKE_CHANNEL_NORMAL", + "value": 1 + }, + { + "name": "BAKE_CHANNEL_ORM", + "value": 2 + }, + { + "name": "BAKE_CHANNEL_EMISSION", + "value": 3 + } + ] + }, + { + "name": "CanvasTextureChannel", + "values": [ + { + "name": "CANVAS_TEXTURE_CHANNEL_DIFFUSE", + "value": 0 + }, + { + "name": "CANVAS_TEXTURE_CHANNEL_NORMAL", + "value": 1 + }, + { + "name": "CANVAS_TEXTURE_CHANNEL_SPECULAR", + "value": 2 + } + ] + }, + { + "name": "NinePatchAxisMode", + "values": [ + { + "name": "NINE_PATCH_STRETCH", + "value": 0 + }, + { + "name": "NINE_PATCH_TILE", + "value": 1 + }, + { + "name": "NINE_PATCH_TILE_FIT", + "value": 2 + } + ] + }, + { + "name": "CanvasItemTextureFilter", + "values": [ + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_DEFAULT", + "value": 0 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_NEAREST", + "value": 1 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_LINEAR", + "value": 2 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", + "value": 3 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", + "value": 4 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC", + "value": 5 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC", + "value": 6 + }, + { + "name": "CANVAS_ITEM_TEXTURE_FILTER_MAX", + "value": 7 + } + ] + }, + { + "name": "CanvasItemTextureRepeat", + "values": [ + { + "name": "CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT", + "value": 0 + }, + { + "name": "CANVAS_ITEM_TEXTURE_REPEAT_DISABLED", + "value": 1 + }, + { + "name": "CANVAS_ITEM_TEXTURE_REPEAT_ENABLED", + "value": 2 + }, + { + "name": "CANVAS_ITEM_TEXTURE_REPEAT_MIRROR", + "value": 3 + }, + { + "name": "CANVAS_ITEM_TEXTURE_REPEAT_MAX", + "value": 4 + } + ] + }, + { + "name": "CanvasGroupMode", + "values": [ + { + "name": "CANVAS_GROUP_MODE_DISABLED", + "value": 0 + }, + { + "name": "CANVAS_GROUP_MODE_OPAQUE", + "value": 1 + }, + { + "name": "CANVAS_GROUP_MODE_TRANSPARENT", + "value": 2 + } + ] + }, + { + "name": "CanvasLightMode", + "values": [ + { + "name": "CANVAS_LIGHT_MODE_POINT", + "value": 0 + }, + { + "name": "CANVAS_LIGHT_MODE_DIRECTIONAL", + "value": 1 + } + ] + }, + { + "name": "CanvasLightBlendMode", + "values": [ + { + "name": "CANVAS_LIGHT_BLEND_MODE_ADD", + "value": 0 + }, + { + "name": "CANVAS_LIGHT_BLEND_MODE_SUB", + "value": 1 + }, + { + "name": "CANVAS_LIGHT_BLEND_MODE_MIX", + "value": 2 + } + ] + }, + { + "name": "CanvasLightShadowFilter", + "values": [ + { + "name": "CANVAS_LIGHT_FILTER_NONE", + "value": 0 + }, + { + "name": "CANVAS_LIGHT_FILTER_PCF5", + "value": 1 + }, + { + "name": "CANVAS_LIGHT_FILTER_PCF13", + "value": 2 + }, + { + "name": "CANVAS_LIGHT_FILTER_MAX", + "value": 3 + } + ] + }, + { + "name": "CanvasOccluderPolygonCullMode", + "values": [ + { + "name": "CANVAS_OCCLUDER_POLYGON_CULL_DISABLED", + "value": 0 + }, + { + "name": "CANVAS_OCCLUDER_POLYGON_CULL_CLOCKWISE", + "value": 1 + }, + { + "name": "CANVAS_OCCLUDER_POLYGON_CULL_COUNTER_CLOCKWISE", + "value": 2 + } + ] + }, + { + "name": "GlobalVariableType", + "values": [ + { + "name": "GLOBAL_VAR_TYPE_BOOL", + "value": 0 + }, + { + "name": "GLOBAL_VAR_TYPE_BVEC2", + "value": 1 + }, + { + "name": "GLOBAL_VAR_TYPE_BVEC3", + "value": 2 + }, + { + "name": "GLOBAL_VAR_TYPE_BVEC4", + "value": 3 + }, + { + "name": "GLOBAL_VAR_TYPE_INT", + "value": 4 + }, + { + "name": "GLOBAL_VAR_TYPE_IVEC2", + "value": 5 + }, + { + "name": "GLOBAL_VAR_TYPE_IVEC3", + "value": 6 + }, + { + "name": "GLOBAL_VAR_TYPE_IVEC4", + "value": 7 + }, + { + "name": "GLOBAL_VAR_TYPE_RECT2I", + "value": 8 + }, + { + "name": "GLOBAL_VAR_TYPE_UINT", + "value": 9 + }, + { + "name": "GLOBAL_VAR_TYPE_UVEC2", + "value": 10 + }, + { + "name": "GLOBAL_VAR_TYPE_UVEC3", + "value": 11 + }, + { + "name": "GLOBAL_VAR_TYPE_UVEC4", + "value": 12 + }, + { + "name": "GLOBAL_VAR_TYPE_FLOAT", + "value": 13 + }, + { + "name": "GLOBAL_VAR_TYPE_VEC2", + "value": 14 + }, + { + "name": "GLOBAL_VAR_TYPE_VEC3", + "value": 15 + }, + { + "name": "GLOBAL_VAR_TYPE_VEC4", + "value": 16 + }, + { + "name": "GLOBAL_VAR_TYPE_COLOR", + "value": 17 + }, + { + "name": "GLOBAL_VAR_TYPE_RECT2", + "value": 18 + }, + { + "name": "GLOBAL_VAR_TYPE_MAT2", + "value": 19 + }, + { + "name": "GLOBAL_VAR_TYPE_MAT3", + "value": 20 + }, + { + "name": "GLOBAL_VAR_TYPE_MAT4", + "value": 21 + }, + { + "name": "GLOBAL_VAR_TYPE_TRANSFORM_2D", + "value": 22 + }, + { + "name": "GLOBAL_VAR_TYPE_TRANSFORM", + "value": 23 + }, + { + "name": "GLOBAL_VAR_TYPE_SAMPLER2D", + "value": 24 + }, + { + "name": "GLOBAL_VAR_TYPE_SAMPLER2DARRAY", + "value": 25 + }, + { + "name": "GLOBAL_VAR_TYPE_SAMPLER3D", + "value": 26 + }, + { + "name": "GLOBAL_VAR_TYPE_SAMPLERCUBE", + "value": 27 + }, + { + "name": "GLOBAL_VAR_TYPE_MAX", + "value": 28 + } + ] + }, + { + "name": "RenderingInfo", + "values": [ + { + "name": "RENDERING_INFO_TOTAL_OBJECTS_IN_FRAME", + "value": 0 + }, + { + "name": "RENDERING_INFO_TOTAL_PRIMITIVES_IN_FRAME", + "value": 1 + }, + { + "name": "RENDERING_INFO_TOTAL_DRAW_CALLS_IN_FRAME", + "value": 2 + }, + { + "name": "RENDERING_INFO_TEXTURE_MEM_USED", + "value": 3 + }, + { + "name": "RENDERING_INFO_BUFFER_MEM_USED", + "value": 4 + }, + { + "name": "RENDERING_INFO_VIDEO_MEM_USED", + "value": 5 + } + ] + }, + { + "name": "Features", + "values": [ + { + "name": "FEATURE_SHADERS", + "value": 0 + }, + { + "name": "FEATURE_MULTITHREADED", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "texture_2d_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "texture_2d_layered_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "layers", + "type": "Array" + }, + { + "name": "layered_type", + "type": "enum::RenderingServer.TextureLayeredType" + } + ] + }, + { + "name": "texture_3d_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135553772, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "format", + "type": "enum::Image.Format" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + }, + { + "name": "depth", + "type": "int", + "meta": "int32" + }, + { + "name": "mipmaps", + "type": "bool" + }, + { + "name": "data", + "type": "Array" + } + ] + }, + { + "name": "texture_proxy_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "base", + "type": "RID" + } + ] + }, + { + "name": "texture_2d_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "image", + "type": "Image" + }, + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "texture_3d_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "data", + "type": "Array" + } + ] + }, + { + "name": "texture_proxy_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "proxy_to", + "type": "RID" + } + ] + }, + { + "name": "texture_2d_placeholder_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "texture_2d_layered_placeholder_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "layered_type", + "type": "enum::RenderingServer.TextureLayeredType" + } + ] + }, + { + "name": "texture_3d_placeholder_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "texture_2d_get", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "texture_2d_layer_get", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "texture_3d_get", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "texture_replace", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "by_texture", + "type": "RID" + } + ] + }, + { + "name": "texture_set_size_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "texture_set_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "texture_get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "texture_set_force_redraw_if_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "texture", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "shader_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "shader_get_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + } + ] + }, + { + "name": "shader_get_param_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + } + ] + }, + { + "name": "shader_get_param_default", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "param", + "type": "StringName" + } + ] + }, + { + "name": "shader_set_default_texture_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "param", + "type": "StringName" + }, + { + "name": "texture", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "shader_get_default_texture_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "param", + "type": "StringName" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "material_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "material_set_shader", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shader_material", + "type": "RID" + }, + { + "name": "shader", + "type": "RID" + } + ] + }, + { + "name": "material_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "material", + "type": "RID" + }, + { + "name": "parameter", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "material_get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "material", + "type": "RID" + }, + { + "name": "parameter", + "type": "StringName" + } + ] + }, + { + "name": "material_set_render_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "material", + "type": "RID" + }, + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "material_set_next_pass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "material", + "type": "RID" + }, + { + "name": "next_material", + "type": "RID" + } + ] + }, + { + "name": "mesh_create_from_surfaces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "surfaces", + "type": "Array" + }, + { + "name": "blend_shape_count", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "mesh_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "mesh_surface_get_format_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "format", + "type": "int", + "meta": "uint32" + }, + { + "name": "vertex_count", + "type": "int", + "meta": "int32" + }, + { + "name": "array_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_surface_get_format_vertex_stride", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "format", + "type": "int", + "meta": "uint32" + }, + { + "name": "vertex_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_surface_get_format_attribute_stride", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "format", + "type": "int", + "meta": "uint32" + }, + { + "name": "vertex_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_surface_get_format_skin_stride", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "format", + "type": "int", + "meta": "uint32" + }, + { + "name": "vertex_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_add_surface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "Dictionary" + } + ] + }, + { + "name": "mesh_add_surface_from_arrays", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626862, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "primitive", + "type": "enum::RenderingServer.PrimitiveType" + }, + { + "name": "arrays", + "type": "Array" + }, + { + "name": "blend_shapes", + "type": "Array", + "default_value": "[]" + }, + { + "name": "lods", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "compress_format", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "mesh_get_blend_shape_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "mesh_set_blend_shape_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.BlendShapeMode" + } + ] + }, + { + "name": "mesh_get_blend_shape_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::RenderingServer.BlendShapeMode" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "mesh_surface_set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "mesh_surface_get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_get_surface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_surface_get_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_surface_get_blend_shape_arrays", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "mesh_get_surface_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "mesh_set_custom_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "mesh_get_custom_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AABB" + }, + "arguments": [ + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "mesh_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "mesh_surface_update_vertex_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "mesh_surface_update_attribute_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "mesh_surface_update_skin_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "mesh_set_shadow_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "mesh", + "type": "RID" + }, + { + "name": "shadow_mesh", + "type": "RID" + } + ] + }, + { + "name": "multimesh_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "multimesh_allocate_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "instances", + "type": "int", + "meta": "int32" + }, + { + "name": "transform_format", + "type": "enum::RenderingServer.MultimeshTransformFormat" + }, + { + "name": "color_format", + "type": "bool", + "default_value": "false" + }, + { + "name": "custom_data_format", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "multimesh_get_instance_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + } + ] + }, + { + "name": "multimesh_set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "multimesh_instance_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "multimesh_instance_set_transform_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "multimesh_instance_set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "multimesh_instance_set_custom_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "custom_data", + "type": "Color" + } + ] + }, + { + "name": "multimesh_get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + } + ] + }, + { + "name": "multimesh_get_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "AABB" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + } + ] + }, + { + "name": "multimesh_instance_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "multimesh_instance_get_transform_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "multimesh_instance_get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "multimesh_instance_get_custom_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "multimesh_set_visible_instances", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "visible", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "multimesh_get_visible_instances", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + } + ] + }, + { + "name": "multimesh_set_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + }, + { + "name": "buffer", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "multimesh_get_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedFloat32Array" + }, + "arguments": [ + { + "name": "multimesh", + "type": "RID" + } + ] + }, + { + "name": "skeleton_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "skeleton_allocate_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + }, + { + "name": "bones", + "type": "int", + "meta": "int32" + }, + { + "name": "is_2d_skeleton", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "skeleton_get_bone_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + } + ] + }, + { + "name": "skeleton_bone_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + }, + { + "name": "bone", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "skeleton_bone_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + }, + { + "name": "bone", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "skeleton_bone_set_transform_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + }, + { + "name": "bone", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "skeleton_bone_get_transform_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + }, + { + "name": "bone", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "skeleton_set_base_transform_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "skeleton", + "type": "RID" + }, + { + "name": "base_transform", + "type": "Transform2D" + } + ] + }, + { + "name": "directional_light_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "omni_light_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "spot_light_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "light_set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "light_set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "param", + "type": "enum::RenderingServer.LightParam" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "light_set_shadow", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "light_set_projector", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "light_set_negative", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "light_set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "light_set_distance_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + }, + { + "name": "begin", + "type": "float", + "meta": "float" + }, + { + "name": "shadow", + "type": "float", + "meta": "float" + }, + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "light_set_reverse_cull_face_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "light_set_bake_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "bake_mode", + "type": "enum::RenderingServer.LightBakeMode" + } + ] + }, + { + "name": "light_set_max_sdfgi_cascade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "cascade", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "light_omni_set_shadow_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.LightOmniShadowMode" + } + ] + }, + { + "name": "light_directional_set_shadow_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.LightDirectionalShadowMode" + } + ] + }, + { + "name": "light_directional_set_blend_splits", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "light_directional_set_sky_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.LightDirectionalSkyMode" + } + ] + }, + { + "name": "light_projectors_set_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "enum::RenderingServer.LightProjectorFilter" + } + ] + }, + { + "name": "shadows_quality_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.ShadowQuality" + } + ] + }, + { + "name": "directional_shadow_quality_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.ShadowQuality" + } + ] + }, + { + "name": "directional_shadow_atlas_set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "is_16bits", + "type": "bool" + } + ] + }, + { + "name": "reflection_probe_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "reflection_probe_set_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.ReflectionProbeUpdateMode" + } + ] + }, + { + "name": "reflection_probe_set_intensity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "intensity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "reflection_probe_set_ambient_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.ReflectionProbeAmbientMode" + } + ] + }, + { + "name": "reflection_probe_set_ambient_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "reflection_probe_set_ambient_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "reflection_probe_set_max_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "reflection_probe_set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "reflection_probe_set_origin_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "offset", + "type": "Vector3" + } + ] + }, + { + "name": "reflection_probe_set_as_interior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "reflection_probe_set_enable_box_projection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "reflection_probe_set_enable_shadows", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "reflection_probe_set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "reflection_probe_set_resolution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "resolution", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "reflection_probe_set_mesh_lod_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "probe", + "type": "RID" + }, + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "decal_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "decal_set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "decal_set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "type", + "type": "enum::RenderingServer.DecalTexture" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "decal_set_emission_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "decal_set_albedo_mix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "albedo_mix", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "decal_set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "decal_set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "decal_set_distance_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + }, + { + "name": "begin", + "type": "float", + "meta": "float" + }, + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "decal_set_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "above", + "type": "float", + "meta": "float" + }, + { + "name": "below", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "decal_set_normal_fade", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "decal", + "type": "RID" + }, + { + "name": "fade", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "decals_set_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "enum::RenderingServer.DecalFilter" + } + ] + }, + { + "name": "gi_set_use_half_resolution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "half_resolution", + "type": "bool" + } + ] + }, + { + "name": "voxel_gi_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "voxel_gi_allocate_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134439725, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "to_cell_xform", + "type": "Transform3D" + }, + { + "name": "aabb", + "type": "AABB" + }, + { + "name": "octree_size", + "type": "Vector3i" + }, + { + "name": "octree_cells", + "type": "PackedByteArray" + }, + { + "name": "data_cells", + "type": "PackedByteArray" + }, + { + "name": "distance_field", + "type": "PackedByteArray" + }, + { + "name": "level_counts", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "voxel_gi_get_octree_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3i" + }, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + } + ] + }, + { + "name": "voxel_gi_get_octree_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + } + ] + }, + { + "name": "voxel_gi_get_data_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + } + ] + }, + { + "name": "voxel_gi_get_distance_field", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + } + ] + }, + { + "name": "voxel_gi_get_level_counts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + } + ] + }, + { + "name": "voxel_gi_get_to_cell_xform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + } + ] + }, + { + "name": "voxel_gi_set_dynamic_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "range", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "voxel_gi_set_propagation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "voxel_gi_set_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "voxel_gi_set_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "voxel_gi_set_normal_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "voxel_gi_set_interior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "voxel_gi_set_use_two_bounces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "voxel_gi", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "voxel_gi_set_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.VoxelGIQuality" + } + ] + }, + { + "name": "lightmap_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "lightmap_set_textures", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + }, + { + "name": "light", + "type": "RID" + }, + { + "name": "uses_sh", + "type": "bool" + } + ] + }, + { + "name": "lightmap_set_probe_bounds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + }, + { + "name": "bounds", + "type": "AABB" + } + ] + }, + { + "name": "lightmap_set_probe_interior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + }, + { + "name": "interior", + "type": "bool" + } + ] + }, + { + "name": "lightmap_set_probe_capture_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + }, + { + "name": "points", + "type": "PackedVector3Array" + }, + { + "name": "point_sh", + "type": "PackedColorArray" + }, + { + "name": "tetrahedra", + "type": "PackedInt32Array" + }, + { + "name": "bsp_tree", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "lightmap_get_probe_capture_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedVector3Array" + }, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + } + ] + }, + { + "name": "lightmap_get_probe_capture_sh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedColorArray" + }, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + } + ] + }, + { + "name": "lightmap_get_probe_capture_tetrahedra", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + } + ] + }, + { + "name": "lightmap_get_probe_capture_bsp_tree", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "lightmap", + "type": "RID" + } + ] + }, + { + "name": "lightmap_set_probe_capture_update_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "particles_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.ParticlesMode" + } + ] + }, + { + "name": "particles_set_emitting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "emitting", + "type": "bool" + } + ] + }, + { + "name": "particles_get_emitting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "particles", + "type": "RID" + } + ] + }, + { + "name": "particles_set_amount", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "particles_set_lifetime", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "lifetime", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "particles_set_one_shot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "one_shot", + "type": "bool" + } + ] + }, + { + "name": "particles_set_pre_process_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "time", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "particles_set_explosiveness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_set_randomness_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "ratio", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_set_custom_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "particles_set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "particles_set_use_local_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "particles_set_process_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "particles_set_fixed_fps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "fps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "particles_set_interpolate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "particles_set_fractional_delta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "particles_set_collision_base_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_set_transform_align", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "align", + "type": "enum::RenderingServer.ParticlesTransformAlign" + } + ] + }, + { + "name": "particles_set_trails", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "length_sec", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_set_trail_bind_poses", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "bind_poses", + "type": "Array" + } + ] + }, + { + "name": "particles_is_inactive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "particles", + "type": "RID" + } + ] + }, + { + "name": "particles_request_process", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "particles", + "type": "RID" + } + ] + }, + { + "name": "particles_restart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "particles", + "type": "RID" + } + ] + }, + { + "name": "particles_set_subemitter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "subemitter_particles", + "type": "RID" + } + ] + }, + { + "name": "particles_emit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "velocity", + "type": "Vector3" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "custom", + "type": "Color" + }, + { + "name": "emit_flags", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "particles_set_draw_order", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "order", + "type": "enum::RenderingServer.ParticlesDrawOrder" + } + ] + }, + { + "name": "particles_set_draw_passes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "particles_set_draw_pass_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "pass", + "type": "int", + "meta": "int32" + }, + { + "name": "mesh", + "type": "RID" + } + ] + }, + { + "name": "particles_get_current_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "AABB" + }, + "arguments": [ + { + "name": "particles", + "type": "RID" + } + ] + }, + { + "name": "particles_set_emission_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "particles_collision_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "particles_collision_set_collision_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "type", + "type": "enum::RenderingServer.ParticlesCollisionType" + } + ] + }, + { + "name": "particles_collision_set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "particles_collision_set_sphere_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_collision_set_box_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "particles_collision_set_attractor_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "setrngth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_collision_set_attractor_directionality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_collision_set_attractor_attenuation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "curve", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "particles_collision_set_field_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "particles_collision_height_field_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + } + ] + }, + { + "name": "particles_collision_set_height_field_resolution", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "particles_collision", + "type": "RID" + }, + { + "name": "resolution", + "type": "enum::RenderingServer.ParticlesCollisionHeightfieldResolution" + } + ] + }, + { + "name": "fog_volume_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "fog_volume_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "fog_volume", + "type": "RID" + }, + { + "name": "shape", + "type": "enum::RenderingServer.FogVolumeShape" + } + ] + }, + { + "name": "fog_volume_set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "fog_volume", + "type": "RID" + }, + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "fog_volume_set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "fog_volume", + "type": "RID" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "visibility_notifier_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "visibility_notifier_set_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "notifier", + "type": "RID" + }, + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "visibility_notifier_set_callbacks", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "notifier", + "type": "RID" + }, + { + "name": "enter_callable", + "type": "Callable" + }, + { + "name": "exit_callable", + "type": "Callable" + } + ] + }, + { + "name": "occluder_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "occluder_set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "vertices", + "type": "PackedVector3Array" + }, + { + "name": "indices", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "camera_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "camera_set_perspective", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "fovy_degrees", + "type": "float", + "meta": "float" + }, + { + "name": "z_near", + "type": "float", + "meta": "float" + }, + { + "name": "z_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "camera_set_orthogonal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "size", + "type": "float", + "meta": "float" + }, + { + "name": "z_near", + "type": "float", + "meta": "float" + }, + { + "name": "z_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "camera_set_frustum", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "size", + "type": "float", + "meta": "float" + }, + { + "name": "offset", + "type": "Vector2" + }, + { + "name": "z_near", + "type": "float", + "meta": "float" + }, + { + "name": "z_far", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "camera_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "camera_set_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "camera_set_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "env", + "type": "RID" + } + ] + }, + { + "name": "camera_set_camera_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "effects", + "type": "RID" + } + ] + }, + { + "name": "camera_set_use_vertical_aspect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "camera", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "viewport_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "viewport_set_use_xr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "use_xr", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + }, + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "viewport_set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_parent_viewport", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "parent_viewport", + "type": "RID" + } + ] + }, + { + "name": "viewport_attach_to_screen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1174500091, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + }, + { + "name": "screen", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "viewport_set_render_direct_to_screen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_scaling_3d_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "scaling_3d_mode", + "type": "enum::RenderingServer.ViewportScaling3DMode" + } + ] + }, + { + "name": "viewport_set_scaling_3d_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "viewport_set_fsr_sharpness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "sharpness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "viewport_set_fsr_mipmap_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "mipmap_bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "viewport_set_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "update_mode", + "type": "enum::RenderingServer.ViewportUpdateMode" + } + ] + }, + { + "name": "viewport_set_clear_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "clear_mode", + "type": "enum::RenderingServer.ViewportClearMode" + } + ] + }, + { + "name": "viewport_get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "viewport", + "type": "RID" + } + ] + }, + { + "name": "viewport_set_disable_3d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_disable_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_disable_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "viewport_attach_camera", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "camera", + "type": "RID" + } + ] + }, + { + "name": "viewport_set_scenario", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "scenario", + "type": "RID" + } + ] + }, + { + "name": "viewport_attach_canvas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + } + ] + }, + { + "name": "viewport_remove_canvas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + } + ] + }, + { + "name": "viewport_set_snap_2d_transforms_to_pixel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_snap_2d_vertices_to_pixel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_default_canvas_item_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "filter", + "type": "enum::RenderingServer.CanvasItemTextureFilter" + } + ] + }, + { + "name": "viewport_set_default_canvas_item_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "repeat", + "type": "enum::RenderingServer.CanvasItemTextureRepeat" + } + ] + }, + { + "name": "viewport_set_canvas_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "offset", + "type": "Transform2D" + } + ] + }, + { + "name": "viewport_set_canvas_stacking", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "sublayer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "viewport_set_transparent_background", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_global_canvas_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "viewport_set_sdf_oversize_and_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "oversize", + "type": "enum::RenderingServer.ViewportSDFOversize" + }, + { + "name": "scale", + "type": "enum::RenderingServer.ViewportSDFScale" + } + ] + }, + { + "name": "viewport_set_shadow_atlas_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "use_16_bits", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "viewport_set_shadow_atlas_quadrant_subdivision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "quadrant", + "type": "int", + "meta": "int32" + }, + { + "name": "subdivision", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "viewport_set_msaa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "msaa", + "type": "enum::RenderingServer.ViewportMSAA" + } + ] + }, + { + "name": "viewport_set_screen_space_aa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.ViewportScreenSpaceAA" + } + ] + }, + { + "name": "viewport_set_use_taa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_use_debanding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_use_occlusion_culling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "viewport_set_occlusion_rays_per_thread", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rays_per_thread", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "viewport_set_occlusion_culling_build_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.ViewportOcclusionCullingBuildQuality" + } + ] + }, + { + "name": "viewport_get_render_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "type", + "type": "enum::RenderingServer.ViewportRenderInfoType" + }, + { + "name": "info", + "type": "enum::RenderingServer.ViewportRenderInfo" + } + ] + }, + { + "name": "viewport_set_debug_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "draw", + "type": "enum::RenderingServer.ViewportDebugDraw" + } + ] + }, + { + "name": "viewport_set_measure_render_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "viewport_get_measured_render_time_cpu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "viewport", + "type": "RID" + } + ] + }, + { + "name": "viewport_get_measured_render_time_gpu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "viewport", + "type": "RID" + } + ] + }, + { + "name": "sky_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "sky_set_radiance_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "sky", + "type": "RID" + }, + { + "name": "radiance_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "sky_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "sky", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.SkyMode" + } + ] + }, + { + "name": "sky_set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "sky", + "type": "RID" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "sky_bake_panorama", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "sky", + "type": "RID" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + }, + { + "name": "bake_irradiance", + "type": "bool" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "environment_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "environment_set_background", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "bg", + "type": "enum::RenderingServer.EnvironmentBG" + } + ] + }, + { + "name": "environment_set_sky", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "sky", + "type": "RID" + } + ] + }, + { + "name": "environment_set_sky_custom_fov", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_sky_orientation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "orientation", + "type": "Basis" + } + ] + }, + { + "name": "environment_set_bg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "environment_set_bg_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_canvas_max_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "max_layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "environment_set_ambient_light", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4156840276, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "ambient", + "type": "enum::RenderingServer.EnvironmentAmbientSource", + "default_value": "0" + }, + { + "name": "energy", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "sky_contibution", + "type": "float", + "meta": "float", + "default_value": "0.0" + }, + { + "name": "reflection_source", + "type": "enum::RenderingServer.EnvironmentReflectionSource", + "default_value": "0" + } + ] + }, + { + "name": "environment_set_glow", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134619410, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "levels", + "type": "PackedFloat32Array" + }, + { + "name": "intensity", + "type": "float", + "meta": "float" + }, + { + "name": "strength", + "type": "float", + "meta": "float" + }, + { + "name": "mix", + "type": "float", + "meta": "float" + }, + { + "name": "bloom_threshold", + "type": "float", + "meta": "float" + }, + { + "name": "blend_mode", + "type": "enum::RenderingServer.EnvironmentGlowBlendMode" + }, + { + "name": "hdr_bleed_threshold", + "type": "float", + "meta": "float" + }, + { + "name": "hdr_bleed_scale", + "type": "float", + "meta": "float" + }, + { + "name": "hdr_luminance_cap", + "type": "float", + "meta": "float" + }, + { + "name": "glow_map_strength", + "type": "float", + "meta": "float" + }, + { + "name": "glow_map", + "type": "RID" + } + ] + }, + { + "name": "environment_set_tonemap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134475662, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "tone_mapper", + "type": "enum::RenderingServer.EnvironmentToneMapper" + }, + { + "name": "exposure", + "type": "float", + "meta": "float" + }, + { + "name": "white", + "type": "float", + "meta": "float" + }, + { + "name": "auto_exposure", + "type": "bool" + }, + { + "name": "min_luminance", + "type": "float", + "meta": "float" + }, + { + "name": "max_luminance", + "type": "float", + "meta": "float" + }, + { + "name": "auto_exp_speed", + "type": "float", + "meta": "float" + }, + { + "name": "auto_exp_grey", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_adjustment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134403788, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "brightness", + "type": "float", + "meta": "float" + }, + { + "name": "contrast", + "type": "float", + "meta": "float" + }, + { + "name": "saturation", + "type": "float", + "meta": "float" + }, + { + "name": "use_1d_color_correction", + "type": "bool" + }, + { + "name": "color_correction", + "type": "RID" + } + ] + }, + { + "name": "environment_set_ssr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "max_steps", + "type": "int", + "meta": "int32" + }, + { + "name": "fade_in", + "type": "float", + "meta": "float" + }, + { + "name": "fade_out", + "type": "float", + "meta": "float" + }, + { + "name": "depth_tolerance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_ssao", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134511599, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + }, + { + "name": "intensity", + "type": "float", + "meta": "float" + }, + { + "name": "power", + "type": "float", + "meta": "float" + }, + { + "name": "detail", + "type": "float", + "meta": "float" + }, + { + "name": "horizon", + "type": "float", + "meta": "float" + }, + { + "name": "sharpness", + "type": "float", + "meta": "float" + }, + { + "name": "light_affect", + "type": "float", + "meta": "float" + }, + { + "name": "ao_channel_affect", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_fog", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134475662, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "light_color", + "type": "Color" + }, + { + "name": "light_energy", + "type": "float", + "meta": "float" + }, + { + "name": "sun_scatter", + "type": "float", + "meta": "float" + }, + { + "name": "density", + "type": "float", + "meta": "float" + }, + { + "name": "height", + "type": "float", + "meta": "float" + }, + { + "name": "height_density", + "type": "float", + "meta": "float" + }, + { + "name": "aerial_perspective", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_sdfgi", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134547536, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "cascades", + "type": "int", + "meta": "int32" + }, + { + "name": "min_cell_size", + "type": "float", + "meta": "float" + }, + { + "name": "y_scale", + "type": "enum::RenderingServer.EnvironmentSDFGIYScale" + }, + { + "name": "use_occlusion", + "type": "bool" + }, + { + "name": "bounce_feedback", + "type": "float", + "meta": "float" + }, + { + "name": "read_sky", + "type": "bool" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + }, + { + "name": "normal_bias", + "type": "float", + "meta": "float" + }, + { + "name": "probe_bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_volumetric_fog", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134619410, + "arguments": [ + { + "name": "env", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "density", + "type": "float", + "meta": "float" + }, + { + "name": "albedo", + "type": "Color" + }, + { + "name": "emission", + "type": "Color" + }, + { + "name": "emission_energy", + "type": "float", + "meta": "float" + }, + { + "name": "anisotropy", + "type": "float", + "meta": "float" + }, + { + "name": "length", + "type": "float", + "meta": "float" + }, + { + "name": "p_detail_spread", + "type": "float", + "meta": "float" + }, + { + "name": "gi_inject", + "type": "float", + "meta": "float" + }, + { + "name": "temporal_reprojection", + "type": "bool" + }, + { + "name": "temporal_reprojection_amount", + "type": "float", + "meta": "float" + }, + { + "name": "ambient_inject", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_glow_set_use_bicubic_upscale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "environment_glow_set_use_high_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "environment_set_ssr_roughness_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.EnvironmentSSRRoughnessQuality" + } + ] + }, + { + "name": "environment_set_ssao_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.EnvironmentSSAOQuality" + }, + { + "name": "half_size", + "type": "bool" + }, + { + "name": "adaptive_target", + "type": "float", + "meta": "float" + }, + { + "name": "blur_passes", + "type": "int", + "meta": "int32" + }, + { + "name": "fadeout_from", + "type": "float", + "meta": "float" + }, + { + "name": "fadeout_to", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_ssil_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.EnvironmentSSILQuality" + }, + { + "name": "half_size", + "type": "bool" + }, + { + "name": "adaptive_target", + "type": "float", + "meta": "float" + }, + { + "name": "blur_passes", + "type": "int", + "meta": "int32" + }, + { + "name": "fadeout_from", + "type": "float", + "meta": "float" + }, + { + "name": "fadeout_to", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "environment_set_sdfgi_ray_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ray_count", + "type": "enum::RenderingServer.EnvironmentSDFGIRayCount" + } + ] + }, + { + "name": "environment_set_sdfgi_frames_to_converge", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "enum::RenderingServer.EnvironmentSDFGIFramesToConverge" + } + ] + }, + { + "name": "environment_set_sdfgi_frames_to_update_light", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frames", + "type": "enum::RenderingServer.EnvironmentSDFGIFramesToUpdateLight" + } + ] + }, + { + "name": "environment_set_volumetric_fog_volume_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "depth", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "environment_set_volumetric_fog_filter_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "environment_bake_panorama", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "environment", + "type": "RID" + }, + { + "name": "bake_irradiance", + "type": "bool" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "screen_space_roughness_limiter_set_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "enable", + "type": "bool" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + }, + { + "name": "limit", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "sub_surface_scattering_set_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.SubSurfaceScatteringQuality" + } + ] + }, + { + "name": "sub_surface_scattering_set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + }, + { + "name": "depth_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "camera_effects_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "camera_effects_set_dof_blur_quality", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "quality", + "type": "enum::RenderingServer.DOFBlurQuality" + }, + { + "name": "use_jitter", + "type": "bool" + } + ] + }, + { + "name": "camera_effects_set_dof_blur_bokeh_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::RenderingServer.DOFBokehShape" + } + ] + }, + { + "name": "camera_effects_set_dof_blur", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134439725, + "arguments": [ + { + "name": "camera_effects", + "type": "RID" + }, + { + "name": "far_enable", + "type": "bool" + }, + { + "name": "far_distance", + "type": "float", + "meta": "float" + }, + { + "name": "far_transition", + "type": "float", + "meta": "float" + }, + { + "name": "near_enable", + "type": "bool" + }, + { + "name": "near_distance", + "type": "float", + "meta": "float" + }, + { + "name": "near_transition", + "type": "float", + "meta": "float" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "camera_effects_set_custom_exposure", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "camera_effects", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "exposure", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "scenario_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "scenario_set_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "scenario", + "type": "RID" + }, + { + "name": "environment", + "type": "RID" + } + ] + }, + { + "name": "scenario_set_fallback_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "scenario", + "type": "RID" + }, + { + "name": "environment", + "type": "RID" + } + ] + }, + { + "name": "scenario_set_camera_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "scenario", + "type": "RID" + }, + { + "name": "effects", + "type": "RID" + } + ] + }, + { + "name": "instance_create2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "base", + "type": "RID" + }, + { + "name": "scenario", + "type": "RID" + } + ] + }, + { + "name": "instance_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "instance_set_base", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "base", + "type": "RID" + } + ] + }, + { + "name": "instance_set_scenario", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "scenario", + "type": "RID" + } + ] + }, + { + "name": "instance_set_layer_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "instance_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "instance_attach_object_instance_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "id", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "instance_set_blend_shape_weight", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "shape", + "type": "int", + "meta": "int32" + }, + { + "name": "weight", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "instance_set_surface_override_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "instance_set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "instance_geometry_set_transparency", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "transparency", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "instance_set_custom_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "instance_attach_skeleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "skeleton", + "type": "RID" + } + ] + }, + { + "name": "instance_set_extra_visibility_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "instance_set_visibility_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "parent", + "type": "RID" + } + ] + }, + { + "name": "instance_set_ignore_culling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "instance_geometry_set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "flag", + "type": "enum::RenderingServer.InstanceFlags" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "instance_geometry_set_cast_shadows_setting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "shadow_casting_setting", + "type": "enum::RenderingServer.ShadowCastingSetting" + } + ] + }, + { + "name": "instance_geometry_set_material_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "instance_geometry_set_material_overlay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "instance_geometry_set_visibility_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "min", + "type": "float", + "meta": "float" + }, + { + "name": "max", + "type": "float", + "meta": "float" + }, + { + "name": "min_margin", + "type": "float", + "meta": "float" + }, + { + "name": "max_margin", + "type": "float", + "meta": "float" + }, + { + "name": "fade_mode", + "type": "enum::RenderingServer.VisibilityRangeFadeMode" + } + ] + }, + { + "name": "instance_geometry_set_lightmap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "lightmap", + "type": "RID" + }, + { + "name": "lightmap_uv_scale", + "type": "Rect2" + }, + { + "name": "lightmap_slice", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "instance_geometry_set_lod_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "lod_bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "instance_geometry_set_shader_parameter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "parameter", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "instance_geometry_get_shader_parameter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "parameter", + "type": "StringName" + } + ] + }, + { + "name": "instance_geometry_get_shader_parameter_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "instance", + "type": "RID" + }, + { + "name": "parameter", + "type": "StringName" + } + ] + }, + { + "name": "instance_geometry_get_shader_parameter_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "instance", + "type": "RID" + } + ] + }, + { + "name": "instances_cull_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + }, + { + "name": "scenario", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "instances_cull_ray", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785387, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "scenario", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "instances_cull_convex", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "convex", + "type": "Array" + }, + { + "name": "scenario", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "bake_render_uv2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "base", + "type": "RID" + }, + { + "name": "material_overrides", + "type": "Array" + }, + { + "name": "image_size", + "type": "Vector2i" + } + ] + }, + { + "name": "canvas_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "canvas_set_item_mirroring", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "item", + "type": "RID" + }, + { + "name": "mirroring", + "type": "Vector2" + } + ] + }, + { + "name": "canvas_set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_set_disable_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "canvas_texture_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "canvas_texture_set_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "canvas_texture", + "type": "RID" + }, + { + "name": "channel", + "type": "enum::RenderingServer.CanvasTextureChannel" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "canvas_texture_set_shading_parameters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "canvas_texture", + "type": "RID" + }, + { + "name": "base_color", + "type": "Color" + }, + { + "name": "shininess", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "canvas_texture_set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "canvas_texture", + "type": "RID" + }, + { + "name": "filter", + "type": "enum::RenderingServer.CanvasItemTextureFilter" + } + ] + }, + { + "name": "canvas_texture_set_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "canvas_texture", + "type": "RID" + }, + { + "name": "repeat", + "type": "enum::RenderingServer.CanvasItemTextureRepeat" + } + ] + }, + { + "name": "canvas_item_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "canvas_item_set_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "parent", + "type": "RID" + } + ] + }, + { + "name": "canvas_item_set_default_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "filter", + "type": "enum::RenderingServer.CanvasItemTextureFilter" + } + ] + }, + { + "name": "canvas_item_set_default_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "repeat", + "type": "enum::RenderingServer.CanvasItemTextureRepeat" + } + ] + }, + { + "name": "canvas_item_set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_set_light_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_item_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "canvas_item_set_clip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "clip", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_set_distance_field_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_set_custom_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "use_custom_rect", + "type": "bool" + }, + { + "name": "rect", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + } + ] + }, + { + "name": "canvas_item_set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_item_set_self_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_item_set_draw_behind_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_add_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300073517, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "antialiased", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "canvas_item_add_polyline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + }, + { + "name": "antialiased", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "canvas_item_add_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_item_add_circle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_item_add_texture_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626862, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "texture", + "type": "RID" + }, + { + "name": "tile", + "type": "bool", + "default_value": "false" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "canvas_item_add_msdf_texture_rect_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2643094831, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "texture", + "type": "RID" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "px_range", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "canvas_item_add_texture_rect_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2643094831, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "texture", + "type": "RID" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + }, + { + "name": "clip_uv", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "canvas_item_add_nine_patch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1620561523, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "source", + "type": "Rect2" + }, + { + "name": "texture", + "type": "RID" + }, + { + "name": "topleft", + "type": "Vector2" + }, + { + "name": "bottomright", + "type": "Vector2" + }, + { + "name": "x_axis_mode", + "type": "enum::RenderingServer.NinePatchAxisMode", + "default_value": "0" + }, + { + "name": "y_axis_mode", + "type": "enum::RenderingServer.NinePatchAxisMode", + "default_value": "0" + }, + { + "name": "draw_center", + "type": "bool", + "default_value": "true" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "canvas_item_add_primitive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 139207724, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "uvs", + "type": "PackedVector2Array" + }, + { + "name": "texture", + "type": "RID" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "1.0" + } + ] + }, + { + "name": "canvas_item_add_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938124, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "uvs", + "type": "PackedVector2Array", + "default_value": "PackedVector2Array()" + }, + { + "name": "texture", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "canvas_item_add_triangle_array", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3954697530, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "indices", + "type": "PackedInt32Array" + }, + { + "name": "points", + "type": "PackedVector2Array" + }, + { + "name": "colors", + "type": "PackedColorArray" + }, + { + "name": "uvs", + "type": "PackedVector2Array", + "default_value": "PackedVector2Array()" + }, + { + "name": "bones", + "type": "PackedInt32Array", + "default_value": "PackedInt32Array()" + }, + { + "name": "weights", + "type": "PackedFloat32Array", + "default_value": "PackedFloat32Array()" + }, + { + "name": "texture", + "type": "RID", + "default_value": "" + }, + { + "name": "count", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "canvas_item_add_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 542376426, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "mesh", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D", + "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "texture", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "canvas_item_add_multimesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "mesh", + "type": "RID" + }, + { + "name": "texture", + "type": "RID", + "default_value": "" + } + ] + }, + { + "name": "canvas_item_add_particles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "particles", + "type": "RID" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "canvas_item_add_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "canvas_item_add_clip_ignore", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "ignore", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_add_animation_slice", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 138021803, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "animation_length", + "type": "float", + "meta": "double" + }, + { + "name": "slice_begin", + "type": "float", + "meta": "double" + }, + { + "name": "slice_end", + "type": "float", + "meta": "double" + }, + { + "name": "offset", + "type": "float", + "meta": "double", + "default_value": "0.0" + } + ] + }, + { + "name": "canvas_item_set_sort_children_by_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_set_z_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "z_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_item_set_z_as_relative_to_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_set_copy_to_backbuffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "canvas_item_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "item", + "type": "RID" + } + ] + }, + { + "name": "canvas_item_set_draw_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_item_set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "material", + "type": "RID" + } + ] + }, + { + "name": "canvas_item_set_use_parent_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_item_set_visibility_notifier", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + }, + { + "name": "area", + "type": "Rect2" + }, + { + "name": "enter_callable", + "type": "Callable" + }, + { + "name": "exit_callable", + "type": "Callable" + } + ] + }, + { + "name": "canvas_item_set_canvas_group_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 793705129, + "arguments": [ + { + "name": "item", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.CanvasGroupMode" + }, + { + "name": "clear_margin", + "type": "float", + "meta": "float", + "default_value": "5.0" + }, + { + "name": "fit_empty", + "type": "bool", + "default_value": "false" + }, + { + "name": "fit_margin", + "type": "float", + "meta": "float", + "default_value": "0.0" + }, + { + "name": "blur_mipmaps", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "canvas_light_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "canvas_light_attach_to_canvas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + } + ] + }, + { + "name": "canvas_light_set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_light_set_texture_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "canvas_light_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "canvas_light_set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, + { + "name": "canvas_light_set_texture_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "canvas_light_set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_light_set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "canvas_light_set_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "canvas_light_set_z_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "min_z", + "type": "int", + "meta": "int32" + }, + { + "name": "max_z", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_light_set_layer_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "min_layer", + "type": "int", + "meta": "int32" + }, + { + "name": "max_layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_light_set_item_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_light_set_item_shadow_cull_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_light_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.CanvasLightMode" + } + ] + }, + { + "name": "canvas_light_set_shadow_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_light_set_shadow_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "filter", + "type": "enum::RenderingServer.CanvasLightShadowFilter" + } + ] + }, + { + "name": "canvas_light_set_shadow_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "canvas_light_set_shadow_smooth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "light", + "type": "RID" + }, + { + "name": "smooth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "canvas_light_occluder_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "canvas_light_occluder_attach_to_canvas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + } + ] + }, + { + "name": "canvas_light_occluder_set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "canvas_light_occluder_set_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "polygon", + "type": "RID" + } + ] + }, + { + "name": "canvas_light_occluder_set_as_sdf_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "canvas_light_occluder_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "canvas_light_occluder_set_light_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder", + "type": "RID" + }, + { + "name": "mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "canvas_occluder_polygon_create", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "canvas_occluder_polygon_set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "occluder_polygon", + "type": "RID" + }, + { + "name": "shape", + "type": "PackedVector2Array" + }, + { + "name": "closed", + "type": "bool" + } + ] + }, + { + "name": "canvas_occluder_polygon_set_cull_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "occluder_polygon", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.CanvasOccluderPolygonCullMode" + } + ] + }, + { + "name": "canvas_set_shadow_texture_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_variable_add", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "type", + "type": "enum::RenderingServer.GlobalVariableType" + }, + { + "name": "default_value", + "type": "Variant" + } + ] + }, + { + "name": "global_variable_remove", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "global_variable_get_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "global_variable_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "global_variable_set_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "global_variable_get", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "global_variable_get_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::RenderingServer.GlobalVariableType" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "free_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "request_frame_drawn_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "callable", + "type": "Callable" + } + ] + }, + { + "name": "has_changed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_rendering_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "uint64" + }, + "arguments": [ + { + "name": "info", + "type": "enum::RenderingServer.RenderingInfo" + } + ] + }, + { + "name": "get_video_adapter_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_video_adapter_vendor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_video_adapter_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RenderingDevice.DeviceType" + } + }, + { + "name": "get_video_adapter_api_version", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "make_sphere_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "latitudes", + "type": "int", + "meta": "int32" + }, + { + "name": "longitudes", + "type": "int", + "meta": "int32" + }, + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_test_cube", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_test_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_white_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_boot_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "image", + "type": "Image" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "scale", + "type": "bool" + }, + { + "name": "use_filter", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_default_clear_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "has_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::RenderingServer.Features" + } + ] + }, + { + "name": "has_os_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "String" + } + ] + }, + { + "name": "set_debug_generate_wireframes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "generate", + "type": "bool" + } + ] + }, + { + "name": "is_render_loop_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_render_loop_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_frame_setup_time_cpu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "force_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "force_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2754828378, + "arguments": [ + { + "name": "swap_buffers", + "type": "bool", + "default_value": "true" + }, + { + "name": "frame_step", + "type": "float", + "meta": "double", + "default_value": "0.0" + } + ] + }, + { + "name": "get_rendering_device", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RenderingDevice" + } + }, + { + "name": "create_local_rendering_device", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RenderingDevice" + } + } + ], + "signals": [ + { + "name": "frame_pre_draw" + }, + { + "name": "frame_post_draw" + } + ], + "properties": [ + { + "type": "bool", + "name": "render_loop_enabled", + "setter": "set_render_loop_enabled", + "getter": "is_render_loop_enabled", + "index": -1 + } + ] + }, + { + "name": "Resource", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "take_over_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_local_to_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_local_to_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_local_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "setup_local_to_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "emit_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "duplicate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "Resource" + }, + "arguments": [ + { + "name": "subresources", + "type": "bool", + "default_value": "false" + } + ] + } + ], + "signals": [ + { + "name": "changed" + }, + { + "name": "setup_local_to_scene_requested" + } + ], + "properties": [ + { + "type": "bool", + "name": "resource_local_to_scene", + "setter": "set_local_to_scene", + "getter": "is_local_to_scene", + "index": -1 + }, + { + "type": "String", + "name": "resource_path", + "setter": "set_path", + "getter": "get_path", + "index": -1 + }, + { + "type": "StringName", + "name": "resource_name", + "setter": "set_name", + "getter": "get_name", + "index": -1 + } + ] + }, + { + "name": "ResourceFormatLoader", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "CacheMode", + "values": [ + { + "name": "CACHE_MODE_IGNORE", + "value": 0 + }, + { + "name": "CACHE_MODE_REUSE", + "value": 1 + }, + { + "name": "CACHE_MODE_REPLACE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_get_recognized_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_handles_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "type", + "type": "StringName" + } + ] + }, + { + "name": "_get_resource_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_get_resource_uid", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_get_dependencies", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "add_types", + "type": "bool" + } + ] + }, + { + "name": "_rename_dependencies", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "renames", + "type": "Dictionary" + } + ] + }, + { + "name": "_exists", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_load", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "original_path", + "type": "String" + }, + { + "name": "use_sub_threads", + "type": "bool" + }, + { + "name": "cache_mode", + "type": "int" + } + ] + } + ] + }, + { + "name": "ResourceFormatSaver", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "_save", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "resource", + "type": "Resource" + }, + { + "name": "flags", + "type": "int" + } + ] + }, + { + "name": "_recognize", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "_get_recognized_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + } + ] + }, + { + "name": "ResourceImporter", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "ImportOrder", + "values": [ + { + "name": "IMPORT_ORDER_DEFAULT", + "value": 0 + }, + { + "name": "IMPORT_ORDER_SCENE", + "value": 100 + } + ] + } + ] + }, + { + "name": "ResourceLoader", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "ThreadLoadStatus", + "values": [ + { + "name": "THREAD_LOAD_INVALID_RESOURCE", + "value": 0 + }, + { + "name": "THREAD_LOAD_IN_PROGRESS", + "value": 1 + }, + { + "name": "THREAD_LOAD_FAILED", + "value": 2 + }, + { + "name": "THREAD_LOAD_LOADED", + "value": 3 + } + ] + }, + { + "name": "CacheMode", + "values": [ + { + "name": "CACHE_MODE_IGNORE", + "value": 0 + }, + { + "name": "CACHE_MODE_REUSE", + "value": 1 + }, + { + "name": "CACHE_MODE_REPLACE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "load_threaded_request", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1479995216, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "type_hint", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "use_sub_threads", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "load_threaded_get_status", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::ResourceLoader.ThreadLoadStatus" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "progress", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "load_threaded_get", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Resource" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1479995216, + "return_value": { + "type": "Resource" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "type_hint", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "cache_mode", + "type": "enum::ResourceLoader.CacheMode", + "default_value": "1" + } + ] + }, + { + "name": "get_recognized_extensions_for_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "type", + "type": "String" + } + ] + }, + { + "name": "set_abort_on_missing_resources", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "abort", + "type": "bool" + } + ] + }, + { + "name": "get_dependencies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "has_cached", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "exists", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "type_hint", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_resource_uid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ] + }, + { + "name": "ResourcePreloader", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "add_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "remove_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_resource", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "newname", + "type": "StringName" + } + ] + }, + { + "name": "has_resource", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_resource", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Resource" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_resource_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + } + ], + "properties": [ + { + "type": "Array", + "name": "resources", + "setter": "_set_resources", + "getter": "_get_resources", + "index": -1 + } + ] + }, + { + "name": "ResourceSaver", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "SaverFlags", + "values": [ + { + "name": "FLAG_NONE", + "value": 0 + }, + { + "name": "FLAG_RELATIVE_PATHS", + "value": 1 + }, + { + "name": "FLAG_BUNDLE_RESOURCES", + "value": 2 + }, + { + "name": "FLAG_CHANGE_PATH", + "value": 4 + }, + { + "name": "FLAG_OMIT_EDITOR_PROPERTIES", + "value": 8 + }, + { + "name": "FLAG_SAVE_BIG_ENDIAN", + "value": 16 + }, + { + "name": "FLAG_COMPRESS", + "value": 32 + }, + { + "name": "FLAG_REPLACE_SUBRESOURCE_PATHS", + "value": 64 + } + ] + } + ], + "methods": [ + { + "name": "save", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "resource", + "type": "Resource" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "get_recognized_extensions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "type", + "type": "Resource" + } + ] + } + ] + }, + { + "name": "ResourceUID", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "constants": [ + { + "name": "INVALID_ID", + "value": -1 + } + ], + "methods": [ + { + "name": "id_to_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "text_to_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "text_id", + "type": "String" + } + ] + }, + { + "name": "create_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "has_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "add_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + }, + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "set_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + }, + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_id_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "remove_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int64" + } + ] + } + ] + }, + { + "name": "RibbonTrailMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "enums": [ + { + "name": "Shape", + "values": [ + { + "name": "SHAPE_FLAT", + "value": 0 + }, + { + "name": "SHAPE_CROSS", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sections", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_section_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "section_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_section_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_section_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "section_segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_section_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::RibbonTrailMesh.Shape" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RibbonTrailMesh.Shape" + } + } + ], + "properties": [ + { + "type": "int", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "float", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "int", + "name": "sections", + "setter": "set_sections", + "getter": "get_sections", + "index": -1 + }, + { + "type": "float", + "name": "section_length", + "setter": "set_section_length", + "getter": "get_section_length", + "index": -1 + }, + { + "type": "int", + "name": "section_segments", + "setter": "set_section_segments", + "getter": "get_section_segments", + "index": -1 + }, + { + "type": "Curve", + "name": "curve", + "setter": "set_curve", + "getter": "get_curve", + "index": -1 + } + ] + }, + { + "name": "RichTextEffect", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_process_custom_fx", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "char_fx", + "type": "CharFXTransform" + } + ] + } + ] + }, + { + "name": "RichTextLabel", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "AutowrapMode", + "values": [ + { + "name": "AUTOWRAP_OFF", + "value": 0 + }, + { + "name": "AUTOWRAP_ARBITRARY", + "value": 1 + }, + { + "name": "AUTOWRAP_WORD", + "value": 2 + }, + { + "name": "AUTOWRAP_WORD_SMART", + "value": 3 + } + ] + }, + { + "name": "ListType", + "values": [ + { + "name": "LIST_NUMBERS", + "value": 0 + }, + { + "name": "LIST_LETTERS", + "value": 1 + }, + { + "name": "LIST_ROMAN", + "value": 2 + }, + { + "name": "LIST_DOTS", + "value": 3 + } + ] + }, + { + "name": "ItemType", + "values": [ + { + "name": "ITEM_FRAME", + "value": 0 + }, + { + "name": "ITEM_TEXT", + "value": 1 + }, + { + "name": "ITEM_IMAGE", + "value": 2 + }, + { + "name": "ITEM_NEWLINE", + "value": 3 + }, + { + "name": "ITEM_FONT", + "value": 4 + }, + { + "name": "ITEM_FONT_SIZE", + "value": 5 + }, + { + "name": "ITEM_FONT_FEATURES", + "value": 6 + }, + { + "name": "ITEM_COLOR", + "value": 7 + }, + { + "name": "ITEM_OUTLINE_SIZE", + "value": 8 + }, + { + "name": "ITEM_OUTLINE_COLOR", + "value": 9 + }, + { + "name": "ITEM_UNDERLINE", + "value": 10 + }, + { + "name": "ITEM_STRIKETHROUGH", + "value": 11 + }, + { + "name": "ITEM_PARAGRAPH", + "value": 12 + }, + { + "name": "ITEM_INDENT", + "value": 13 + }, + { + "name": "ITEM_LIST", + "value": 14 + }, + { + "name": "ITEM_TABLE", + "value": 15 + }, + { + "name": "ITEM_FADE", + "value": 16 + }, + { + "name": "ITEM_SHAKE", + "value": 17 + }, + { + "name": "ITEM_WAVE", + "value": 18 + }, + { + "name": "ITEM_TORNADO", + "value": 19 + }, + { + "name": "ITEM_RAINBOW", + "value": 20 + }, + { + "name": "ITEM_BGCOLOR", + "value": 21 + }, + { + "name": "ITEM_FGCOLOR", + "value": 22 + }, + { + "name": "ITEM_META", + "value": 23 + }, + { + "name": "ITEM_HINT", + "value": 24 + }, + { + "name": "ITEM_DROPCAP", + "value": 25 + }, + { + "name": "ITEM_CUSTOMFX", + "value": 26 + } + ] + }, + { + "name": "VisibleCharactersBehavior", + "values": [ + { + "name": "VC_CHARS_BEFORE_SHAPING", + "value": 0 + }, + { + "name": "VC_CHARS_AFTER_SHAPING", + "value": 1 + }, + { + "name": "VC_GLYPHS_AUTO", + "value": 2 + }, + { + "name": "VC_GLYPHS_LTR", + "value": 3 + }, + { + "name": "VC_GLYPHS_RTL", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "get_parsed_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "add_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "add_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2960538717, + "arguments": [ + { + "name": "image", + "type": "Texture2D" + }, + { + "name": "width", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "height", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + } + ] + }, + { + "name": "newline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "remove_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "push_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "push_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "push_font_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "opentype_features", + "type": "Dictionary" + } + ] + }, + { + "name": "push_normal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_bold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_bold_italics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_italics", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_mono", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "push_outline_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "outline_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "push_outline_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "push_paragraph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1255294972, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + }, + { + "name": "base_direction", + "type": "enum::Control.TextDirection", + "default_value": "0" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "st_parser", + "type": "enum::TextServer.StructuredTextParser", + "default_value": "0" + } + ] + }, + { + "name": "push_indent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "level", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "push_list", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "level", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "enum::RichTextLabel.ListType" + }, + { + "name": "capitalize", + "type": "bool" + } + ] + }, + { + "name": "push_meta", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "Variant" + } + ] + }, + { + "name": "push_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "description", + "type": "String" + } + ] + }, + { + "name": "push_underline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_strikethrough", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_table", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "columns", + "type": "int", + "meta": "int32" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "0" + } + ] + }, + { + "name": "push_dropcap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3606084225, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "font", + "type": "Font" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "dropcap_margins", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "outline_color", + "type": "Color", + "default_value": "Color(0, 0, 0, 0)" + } + ] + }, + { + "name": "set_table_column_expand", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "expand", + "type": "bool" + }, + { + "name": "ratio", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_cell_row_background_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "odd_row_bg", + "type": "Color" + }, + { + "name": "even_row_bg", + "type": "Color" + } + ] + }, + { + "name": "set_cell_border_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "set_cell_size_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "min_size", + "type": "Vector2" + }, + { + "name": "max_size", + "type": "Vector2" + } + ] + }, + { + "name": "set_cell_padding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "padding", + "type": "Rect2" + } + ] + }, + { + "name": "push_cell", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "push_fgcolor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fgcolor", + "type": "Color" + } + ] + }, + { + "name": "push_bgcolor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bgcolor", + "type": "Color" + } + ] + }, + { + "name": "pop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_autowrap_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "autowrap_mode", + "type": "enum::RichTextLabel.AutowrapMode" + } + ] + }, + { + "name": "get_autowrap_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RichTextLabel.AutowrapMode" + } + }, + { + "name": "set_meta_underline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_meta_underlined", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hint_underline", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_hint_underlined", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_override_selected_font_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override", + "type": "bool" + } + ] + }, + { + "name": "is_overriding_selected_font_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_scroll_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "is_scroll_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_scroll_follow", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "follow", + "type": "bool" + } + ] + }, + { + "name": "is_scroll_following", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_v_scroll_bar", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "VScrollBar" + } + }, + { + "name": "scroll_to_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "scroll_to_paragraph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "paragraph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "spaces", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tab_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_fit_content_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_fit_content_height_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_selection_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_selection_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_context_menu_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_context_menu_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shortcut_keys_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_shortcut_keys_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_deselect_on_focus_loss_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_deselect_on_focus_loss_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_selection_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_to", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "select_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_selected_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "deselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "parse_bbcode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bbcode", + "type": "String" + } + ] + }, + { + "name": "append_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bbcode", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_ready", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_threaded", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "threaded", + "type": "bool" + } + ] + }, + { + "name": "is_threaded", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_progress_bar_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "delay_ms", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_progress_bar_delay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_visible_characters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_visible_characters", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_characters_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RichTextLabel.VisibleCharactersBehavior" + } + }, + { + "name": "set_visible_characters_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "behavior", + "type": "enum::RichTextLabel.VisibleCharactersBehavior" + } + ] + }, + { + "name": "set_percent_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "percent_visible", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_percent_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_character_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "character", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_character_paragraph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "character", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_total_character_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_bbcode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_bbcode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_paragraph_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_paragraph_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_content_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_content_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_line_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_paragraph_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "paragraph", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "parse_expressions_for_values", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "expressions", + "type": "PackedStringArray" + } + ] + }, + { + "name": "set_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "effects", + "type": "Array" + } + ] + }, + { + "name": "get_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "install_effect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "effect", + "type": "Variant" + } + ] + }, + { + "name": "get_menu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PopupMenu" + } + }, + { + "name": "is_menu_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "meta_clicked", + "arguments": [ + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "meta_hover_started", + "arguments": [ + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "meta_hover_ended", + "arguments": [ + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "finished" + } + ], + "properties": [ + { + "type": "bool", + "name": "bbcode_enabled", + "setter": "set_use_bbcode", + "getter": "is_using_bbcode", + "index": -1 + }, + { + "type": "bool", + "name": "threaded", + "setter": "set_threaded", + "getter": "is_threaded", + "index": -1 + }, + { + "type": "int", + "name": "progress_bar_delay", + "setter": "set_progress_bar_delay", + "getter": "get_progress_bar_delay", + "index": -1 + }, + { + "type": "int", + "name": "tab_size", + "setter": "set_tab_size", + "getter": "get_tab_size", + "index": -1 + }, + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "bool", + "name": "fit_content_height", + "setter": "set_fit_content_height", + "getter": "is_fit_content_height_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_active", + "setter": "set_scroll_active", + "getter": "is_scroll_active", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_following", + "setter": "set_scroll_follow", + "getter": "is_scroll_following", + "index": -1 + }, + { + "type": "bool", + "name": "selection_enabled", + "setter": "set_selection_enabled", + "getter": "is_selection_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "override_selected_font_color", + "setter": "set_override_selected_font_color", + "getter": "is_overriding_selected_font_color", + "index": -1 + }, + { + "type": "bool", + "name": "deselect_on_focus_loss_enabled", + "setter": "set_deselect_on_focus_loss_enabled", + "getter": "is_deselect_on_focus_loss_enabled", + "index": -1 + }, + { + "type": "Array", + "name": "custom_effects", + "setter": "set_effects", + "getter": "get_effects", + "index": -1 + }, + { + "type": "bool", + "name": "meta_underlined", + "setter": "set_meta_underline", + "getter": "is_meta_underlined", + "index": -1 + }, + { + "type": "bool", + "name": "hint_underlined", + "setter": "set_hint_underline", + "getter": "is_hint_underlined", + "index": -1 + }, + { + "type": "int", + "name": "autowrap_mode", + "setter": "set_autowrap_mode", + "getter": "get_autowrap_mode", + "index": -1 + }, + { + "type": "int", + "name": "visible_characters", + "setter": "set_visible_characters", + "getter": "get_visible_characters", + "index": -1 + }, + { + "type": "int", + "name": "visible_characters_behavior", + "setter": "set_visible_characters_behavior", + "getter": "get_visible_characters_behavior", + "index": -1 + }, + { + "type": "float", + "name": "percent_visible", + "setter": "set_percent_visible", + "getter": "get_percent_visible", + "index": -1 + }, + { + "type": "bool", + "name": "context_menu_enabled", + "setter": "set_context_menu_enabled", + "getter": "is_context_menu_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "shortcut_keys_enabled", + "setter": "set_shortcut_keys_enabled", + "getter": "is_shortcut_keys_enabled", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + } + ] + }, + { + "name": "RigidDynamicBody2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody2D", + "api_type": "core", + "enums": [ + { + "name": "FreezeMode", + "values": [ + { + "name": "FREEZE_MODE_STATIC", + "value": 0 + }, + { + "name": "FREEZE_MODE_KINEMATIC", + "value": 1 + } + ] + }, + { + "name": "CenterOfMassMode", + "values": [ + { + "name": "CENTER_OF_MASS_MODE_AUTO", + "value": 0 + }, + { + "name": "CENTER_OF_MASS_MODE_CUSTOM", + "value": 1 + } + ] + }, + { + "name": "DampMode", + "values": [ + { + "name": "DAMP_MODE_COMBINE", + "value": 0 + }, + { + "name": "DAMP_MODE_REPLACE", + "value": 1 + } + ] + }, + { + "name": "CCDMode", + "values": [ + { + "name": "CCD_MODE_DISABLED", + "value": 0 + }, + { + "name": "CCD_MODE_CAST_RAY", + "value": 1 + }, + { + "name": "CCD_MODE_CAST_SHAPE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_integrate_forces", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "state", + "type": "PhysicsDirectBodyState2D" + } + ] + }, + { + "name": "set_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_inertia", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_inertia", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inertia", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_center_of_mass_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::RigidDynamicBody2D.CenterOfMassMode" + } + ] + }, + { + "name": "get_center_of_mass_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody2D.CenterOfMassMode" + } + }, + { + "name": "set_center_of_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "center_of_mass", + "type": "Vector2" + } + ] + }, + { + "name": "get_center_of_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_physics_material_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physics_material_override", + "type": "PhysicsMaterial" + } + ] + }, + { + "name": "get_physics_material_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PhysicsMaterial" + } + }, + { + "name": "set_gravity_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_damp_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp_mode", + "type": "enum::RigidDynamicBody2D.DampMode" + } + ] + }, + { + "name": "get_linear_damp_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody2D.DampMode" + } + }, + { + "name": "set_angular_damp_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp_mode", + "type": "enum::RigidDynamicBody2D.DampMode" + } + ] + }, + { + "name": "get_angular_damp_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody2D.DampMode" + } + }, + { + "name": "set_linear_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_angular_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_velocity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_contacts_reported", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_contacts_reported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_custom_integrator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_custom_integrator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_contact_monitor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_contact_monitor_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_continuous_collision_detection_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::RigidDynamicBody2D.CCDMode" + } + ] + }, + { + "name": "get_continuous_collision_detection_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody2D.CCDMode" + } + }, + { + "name": "set_axis_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis_velocity", + "type": "Vector2" + } + ] + }, + { + "name": "apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2823412066, + "arguments": [ + { + "name": "impulse", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "impulse", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "apply_torque_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "apply_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "apply_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "apply_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "add_constant_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "add_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector2" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "add_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector2" + } + ] + }, + { + "name": "get_constant_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constant_torque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_sleeping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sleeping", + "type": "bool" + } + ] + }, + { + "name": "is_sleeping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_can_sleep", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "able_to_sleep", + "type": "bool" + } + ] + }, + { + "name": "is_able_to_sleep", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_lock_rotation_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lock_rotation", + "type": "bool" + } + ] + }, + { + "name": "is_lock_rotation_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_freeze_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "freeze_mode", + "type": "bool" + } + ] + }, + { + "name": "is_freeze_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_freeze_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "freeze_mode", + "type": "enum::RigidDynamicBody2D.FreezeMode" + } + ] + }, + { + "name": "get_freeze_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody2D.FreezeMode" + } + }, + { + "name": "get_colliding_bodies", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "signals": [ + { + "name": "body_shape_entered", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_shape_exited", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_entered", + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "body_exited", + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "sleeping_state_changed" + } + ], + "properties": [ + { + "type": "float", + "name": "mass", + "setter": "set_mass", + "getter": "get_mass", + "index": -1 + }, + { + "type": "float", + "name": "inertia", + "setter": "set_inertia", + "getter": "get_inertia", + "index": -1 + }, + { + "type": "int", + "name": "center_of_mass_mode", + "setter": "set_center_of_mass_mode", + "getter": "get_center_of_mass_mode", + "index": -1 + }, + { + "type": "Vector2", + "name": "center_of_mass", + "setter": "set_center_of_mass", + "getter": "get_center_of_mass", + "index": -1 + }, + { + "type": "PhysicsMaterial", + "name": "physics_material_override", + "setter": "set_physics_material_override", + "getter": "get_physics_material_override", + "index": -1 + }, + { + "type": "float", + "name": "gravity_scale", + "setter": "set_gravity_scale", + "getter": "get_gravity_scale", + "index": -1 + }, + { + "type": "bool", + "name": "custom_integrator", + "setter": "set_use_custom_integrator", + "getter": "is_using_custom_integrator", + "index": -1 + }, + { + "type": "int", + "name": "continuous_cd", + "setter": "set_continuous_collision_detection_mode", + "getter": "get_continuous_collision_detection_mode", + "index": -1 + }, + { + "type": "int", + "name": "contacts_reported", + "setter": "set_max_contacts_reported", + "getter": "get_max_contacts_reported", + "index": -1 + }, + { + "type": "bool", + "name": "contact_monitor", + "setter": "set_contact_monitor", + "getter": "is_contact_monitor_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "sleeping", + "setter": "set_sleeping", + "getter": "is_sleeping", + "index": -1 + }, + { + "type": "bool", + "name": "can_sleep", + "setter": "set_can_sleep", + "getter": "is_able_to_sleep", + "index": -1 + }, + { + "type": "bool", + "name": "lock_rotation", + "setter": "set_lock_rotation_enabled", + "getter": "is_lock_rotation_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "freeze", + "setter": "set_freeze_enabled", + "getter": "is_freeze_enabled", + "index": -1 + }, + { + "type": "int", + "name": "freeze_mode", + "setter": "set_freeze_mode", + "getter": "get_freeze_mode", + "index": -1 + }, + { + "type": "Vector2", + "name": "linear_velocity", + "setter": "set_linear_velocity", + "getter": "get_linear_velocity", + "index": -1 + }, + { + "type": "int", + "name": "linear_damp_mode", + "setter": "set_linear_damp_mode", + "getter": "get_linear_damp_mode", + "index": -1 + }, + { + "type": "float", + "name": "linear_damp", + "setter": "set_linear_damp", + "getter": "get_linear_damp", + "index": -1 + }, + { + "type": "float", + "name": "angular_velocity", + "setter": "set_angular_velocity", + "getter": "get_angular_velocity", + "index": -1 + }, + { + "type": "int", + "name": "angular_damp_mode", + "setter": "set_angular_damp_mode", + "getter": "get_angular_damp_mode", + "index": -1 + }, + { + "type": "float", + "name": "angular_damp", + "setter": "set_angular_damp", + "getter": "get_angular_damp", + "index": -1 + }, + { + "type": "Vector2", + "name": "constant_force", + "setter": "set_constant_force", + "getter": "get_constant_force", + "index": -1 + }, + { + "type": "float", + "name": "constant_torque", + "setter": "set_constant_torque", + "getter": "get_constant_torque", + "index": -1 + } + ] + }, + { + "name": "RigidDynamicBody3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody3D", + "api_type": "core", + "enums": [ + { + "name": "FreezeMode", + "values": [ + { + "name": "FREEZE_MODE_STATIC", + "value": 0 + }, + { + "name": "FREEZE_MODE_KINEMATIC", + "value": 1 + } + ] + }, + { + "name": "CenterOfMassMode", + "values": [ + { + "name": "CENTER_OF_MASS_MODE_AUTO", + "value": 0 + }, + { + "name": "CENTER_OF_MASS_MODE_CUSTOM", + "value": 1 + } + ] + }, + { + "name": "DampMode", + "values": [ + { + "name": "DAMP_MODE_COMBINE", + "value": 0 + }, + { + "name": "DAMP_MODE_REPLACE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "_integrate_forces", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "state", + "type": "PhysicsDirectBodyState3D" + } + ] + }, + { + "name": "set_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_inertia", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inertia", + "type": "Vector3" + } + ] + }, + { + "name": "get_inertia", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_center_of_mass_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::RigidDynamicBody3D.CenterOfMassMode" + } + ] + }, + { + "name": "get_center_of_mass_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody3D.CenterOfMassMode" + } + }, + { + "name": "set_center_of_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "center_of_mass", + "type": "Vector3" + } + ] + }, + { + "name": "get_center_of_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_physics_material_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physics_material_override", + "type": "PhysicsMaterial" + } + ] + }, + { + "name": "get_physics_material_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PhysicsMaterial" + } + }, + { + "name": "set_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_inverse_inertia_tensor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Basis" + } + }, + { + "name": "set_gravity_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_gravity_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_damp_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp_mode", + "type": "enum::RigidDynamicBody3D.DampMode" + } + ] + }, + { + "name": "get_linear_damp_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody3D.DampMode" + } + }, + { + "name": "set_angular_damp_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp_mode", + "type": "enum::RigidDynamicBody3D.DampMode" + } + ] + }, + { + "name": "get_angular_damp_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody3D.DampMode" + } + }, + { + "name": "set_linear_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_linear_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_angular_damp", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angular_damp", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_angular_damp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_contacts_reported", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_contacts_reported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_custom_integrator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_custom_integrator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_contact_monitor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_contact_monitor_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_continuous_collision_detection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_continuous_collision_detection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_axis_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis_velocity", + "type": "Vector3" + } + ] + }, + { + "name": "apply_central_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "apply_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "apply_torque_impulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "impulse", + "type": "Vector3" + } + ] + }, + { + "name": "apply_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "apply_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "apply_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "add_constant_central_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "add_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "force", + "type": "Vector3" + }, + { + "name": "position", + "type": "Vector3", + "default_value": "Vector3(0, 0, 0)" + } + ] + }, + { + "name": "add_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "set_constant_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "force", + "type": "Vector3" + } + ] + }, + { + "name": "get_constant_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_constant_torque", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "torque", + "type": "Vector3" + } + ] + }, + { + "name": "get_constant_torque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_sleeping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sleeping", + "type": "bool" + } + ] + }, + { + "name": "is_sleeping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_can_sleep", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "able_to_sleep", + "type": "bool" + } + ] + }, + { + "name": "is_able_to_sleep", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_lock_rotation_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lock_rotation", + "type": "bool" + } + ] + }, + { + "name": "is_lock_rotation_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_freeze_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "freeze_mode", + "type": "bool" + } + ] + }, + { + "name": "is_freeze_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_freeze_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "freeze_mode", + "type": "enum::RigidDynamicBody3D.FreezeMode" + } + ] + }, + { + "name": "get_freeze_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::RigidDynamicBody3D.FreezeMode" + } + }, + { + "name": "get_colliding_bodies", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "signals": [ + { + "name": "body_shape_entered", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_shape_exited", + "arguments": [ + { + "name": "body_rid", + "type": "RID" + }, + { + "name": "body", + "type": "Node" + }, + { + "name": "body_shape_index", + "type": "int" + }, + { + "name": "local_shape_index", + "type": "int" + } + ] + }, + { + "name": "body_entered", + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "body_exited", + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "sleeping_state_changed" + } + ], + "properties": [ + { + "type": "float", + "name": "mass", + "setter": "set_mass", + "getter": "get_mass", + "index": -1 + }, + { + "type": "Vector3", + "name": "inertia", + "setter": "set_inertia", + "getter": "get_inertia", + "index": -1 + }, + { + "type": "int", + "name": "center_of_mass_mode", + "setter": "set_center_of_mass_mode", + "getter": "get_center_of_mass_mode", + "index": -1 + }, + { + "type": "Vector3", + "name": "center_of_mass", + "setter": "set_center_of_mass", + "getter": "get_center_of_mass", + "index": -1 + }, + { + "type": "PhysicsMaterial", + "name": "physics_material_override", + "setter": "set_physics_material_override", + "getter": "get_physics_material_override", + "index": -1 + }, + { + "type": "float", + "name": "gravity_scale", + "setter": "set_gravity_scale", + "getter": "get_gravity_scale", + "index": -1 + }, + { + "type": "bool", + "name": "custom_integrator", + "setter": "set_use_custom_integrator", + "getter": "is_using_custom_integrator", + "index": -1 + }, + { + "type": "bool", + "name": "continuous_cd", + "setter": "set_use_continuous_collision_detection", + "getter": "is_using_continuous_collision_detection", + "index": -1 + }, + { + "type": "int", + "name": "contacts_reported", + "setter": "set_max_contacts_reported", + "getter": "get_max_contacts_reported", + "index": -1 + }, + { + "type": "bool", + "name": "contact_monitor", + "setter": "set_contact_monitor", + "getter": "is_contact_monitor_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "sleeping", + "setter": "set_sleeping", + "getter": "is_sleeping", + "index": -1 + }, + { + "type": "bool", + "name": "can_sleep", + "setter": "set_can_sleep", + "getter": "is_able_to_sleep", + "index": -1 + }, + { + "type": "bool", + "name": "lock_rotation", + "setter": "set_lock_rotation_enabled", + "getter": "is_lock_rotation_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "freeze", + "setter": "set_freeze_enabled", + "getter": "is_freeze_enabled", + "index": -1 + }, + { + "type": "int", + "name": "freeze_mode", + "setter": "set_freeze_mode", + "getter": "get_freeze_mode", + "index": -1 + }, + { + "type": "Vector3", + "name": "linear_velocity", + "setter": "set_linear_velocity", + "getter": "get_linear_velocity", + "index": -1 + }, + { + "type": "int", + "name": "linear_damp_mode", + "setter": "set_linear_damp_mode", + "getter": "get_linear_damp_mode", + "index": -1 + }, + { + "type": "float", + "name": "linear_damp", + "setter": "set_linear_damp", + "getter": "get_linear_damp", + "index": -1 + }, + { + "type": "Vector3", + "name": "angular_velocity", + "setter": "set_angular_velocity", + "getter": "get_angular_velocity", + "index": -1 + }, + { + "type": "int", + "name": "angular_damp_mode", + "setter": "set_angular_damp_mode", + "getter": "get_angular_damp_mode", + "index": -1 + }, + { + "type": "float", + "name": "angular_damp", + "setter": "set_angular_damp", + "getter": "get_angular_damp", + "index": -1 + }, + { + "type": "Vector3", + "name": "constant_force", + "setter": "set_constant_force", + "getter": "get_constant_force", + "index": -1 + }, + { + "type": "Vector3", + "name": "constant_torque", + "setter": "set_constant_torque", + "getter": "get_constant_torque", + "index": -1 + } + ] + }, + { + "name": "RootMotionView", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "VisualInstance3D", + "api_type": "core", + "properties": [ + { + "type": "NodePath", + "name": "animation_path", + "setter": "set_animation_path", + "getter": "get_animation_path", + "index": -1 + }, + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "float", + "name": "cell_size", + "setter": "set_cell_size", + "getter": "get_cell_size", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "bool", + "name": "zero_y", + "setter": "set_zero_y", + "getter": "get_zero_y", + "index": -1 + } + ] + }, + { + "name": "SceneReplicationConfig", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_properties", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "has_property", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "remove_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "property_get_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "property_get_spawn", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "property_set_spawn", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "property_get_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "property_set_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "path", + "type": "NodePath" + }, + { + "name": "enabled", + "type": "bool" + } + ] + } + ] + }, + { + "name": "SceneState", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "GenEditState", + "values": [ + { + "name": "GEN_EDIT_STATE_DISABLED", + "value": 0 + }, + { + "name": "GEN_EDIT_STATE_INSTANCE", + "value": 1 + }, + { + "name": "GEN_EDIT_STATE_MAIN", + "value": 2 + }, + { + "name": "GEN_EDIT_STATE_MAIN_INHERITED", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "get_node_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_node_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "for_parent", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_node_owner_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_node_instance_placeholder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_instance_placeholder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_instance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedScene" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_groups", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_property_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_property_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "prop_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_property_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "prop_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_connection_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_target", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_method", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_binds", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_connection_unbinds", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "SceneTree", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "MainLoop", + "api_type": "core", + "enums": [ + { + "name": "GroupCallFlags", + "values": [ + { + "name": "GROUP_CALL_DEFAULT", + "value": 0 + }, + { + "name": "GROUP_CALL_REVERSE", + "value": 1 + }, + { + "name": "GROUP_CALL_DEFERRED", + "value": 2 + }, + { + "name": "GROUP_CALL_UNIQUE", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "get_root", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Window" + } + }, + { + "name": "has_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "is_auto_accept_quit", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_accept_quit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_quit_on_go_back", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_quit_on_go_back", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_debug_collisions_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_debugging_collisions_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_debug_navigation_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_debugging_navigation_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_edited_scene_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scene", + "type": "Node" + } + ] + }, + { + "name": "get_edited_scene_root", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "set_pause", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "create_timer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "SceneTreeTimer" + }, + "arguments": [ + { + "name": "time_sec", + "type": "float", + "meta": "double" + }, + { + "name": "process_always", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "create_tween", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Tween" + } + }, + { + "name": "get_processed_tweens", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_node_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "quit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2551161618, + "arguments": [ + { + "name": "exit_code", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "queue_delete", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "obj", + "type": "Object" + } + ] + }, + { + "name": "call_group_flags", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134260041, + "arguments": [ + { + "name": "flags", + "type": "int" + }, + { + "name": "group", + "type": "StringName" + }, + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "notify_group_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "call_flags", + "type": "int", + "meta": "uint32" + }, + { + "name": "group", + "type": "StringName" + }, + { + "name": "notification", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_group_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "call_flags", + "type": "int", + "meta": "uint32" + }, + { + "name": "group", + "type": "StringName" + }, + { + "name": "property", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "call_group", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134224104, + "arguments": [ + { + "name": "group", + "type": "StringName" + }, + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "notify_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "group", + "type": "StringName" + }, + { + "name": "notification", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "group", + "type": "StringName" + }, + { + "name": "property", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_nodes_in_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "group", + "type": "StringName" + } + ] + }, + { + "name": "get_first_node_in_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Node" + }, + "arguments": [ + { + "name": "group", + "type": "StringName" + } + ] + }, + { + "name": "set_current_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "child_node", + "type": "Node" + } + ] + }, + { + "name": "get_current_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node" + } + }, + { + "name": "change_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "change_scene_to", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "packed_scene", + "type": "PackedScene" + } + ] + }, + { + "name": "reload_current_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "set_multiplayer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "multiplayer", + "type": "MultiplayerAPI" + }, + { + "name": "root_path", + "type": "NodePath", + "default_value": "NodePath(\"\")" + } + ] + }, + { + "name": "get_multiplayer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "MultiplayerAPI" + }, + "arguments": [ + { + "name": "for_path", + "type": "NodePath", + "default_value": "NodePath(\"\")" + } + ] + }, + { + "name": "set_multiplayer_poll_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_multiplayer_poll_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "tree_changed" + }, + { + "name": "tree_process_mode_changed" + }, + { + "name": "node_added", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "node_removed", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "node_renamed", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "node_configuration_warning_changed", + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "process_frame" + }, + { + "name": "physics_frame" + } + ], + "properties": [ + { + "type": "bool", + "name": "auto_accept_quit", + "setter": "set_auto_accept_quit", + "getter": "is_auto_accept_quit", + "index": -1 + }, + { + "type": "bool", + "name": "quit_on_go_back", + "setter": "set_quit_on_go_back", + "getter": "is_quit_on_go_back", + "index": -1 + }, + { + "type": "bool", + "name": "debug_collisions_hint", + "setter": "set_debug_collisions_hint", + "getter": "is_debugging_collisions_hint", + "index": -1 + }, + { + "type": "bool", + "name": "debug_navigation_hint", + "setter": "set_debug_navigation_hint", + "getter": "is_debugging_navigation_hint", + "index": -1 + }, + { + "type": "bool", + "name": "paused", + "setter": "set_pause", + "getter": "is_paused", + "index": -1 + }, + { + "type": "Node", + "name": "edited_scene_root", + "setter": "set_edited_scene_root", + "getter": "get_edited_scene_root", + "index": -1 + }, + { + "type": "Node", + "name": "current_scene", + "setter": "set_current_scene", + "getter": "get_current_scene", + "index": -1 + }, + { + "type": "Node", + "name": "root", + "setter": "", + "getter": "get_root", + "index": -1 + }, + { + "type": "bool", + "name": "multiplayer_poll", + "setter": "set_multiplayer_poll_enabled", + "getter": "is_multiplayer_poll_enabled", + "index": -1 + } + ] + }, + { + "name": "SceneTreeTimer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_time_left", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_time_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + } + ], + "signals": [ + { + "name": "timeout" + } + ], + "properties": [ + { + "type": "float", + "name": "time_left", + "setter": "set_time_left", + "getter": "get_time_left", + "index": -1 + } + ] + }, + { + "name": "Script", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "can_instantiate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "instance_has", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "base_object", + "type": "Object" + } + ] + }, + { + "name": "has_source_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_source_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_source_code", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "source", + "type": "String" + } + ] + }, + { + "name": "reload", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "keep_state", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_base_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Script" + } + }, + { + "name": "get_instance_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "has_script_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "signal_name", + "type": "StringName" + } + ] + }, + { + "name": "get_script_property_list", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_script_method_list", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_script_signal_list", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_script_constant_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_property_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "is_tool", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "source_code", + "setter": "set_source_code", + "getter": "get_source_code", + "index": -1 + } + ] + }, + { + "name": "ScriptCreateDialog", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "ConfirmationDialog", + "api_type": "editor", + "methods": [ + { + "name": "config", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802731, + "arguments": [ + { + "name": "inherits", + "type": "String" + }, + { + "name": "path", + "type": "String" + }, + { + "name": "built_in_enabled", + "type": "bool", + "default_value": "true" + }, + { + "name": "load_enabled", + "type": "bool", + "default_value": "true" + } + ] + } + ], + "signals": [ + { + "name": "script_created", + "arguments": [ + { + "name": "script", + "type": "Script" + } + ] + } + ] + }, + { + "name": "ScriptEditor", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "PanelContainer", + "api_type": "editor", + "methods": [ + { + "name": "get_current_editor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ScriptEditorBase" + } + }, + { + "name": "get_open_script_editors", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "register_syntax_highlighter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "syntax_highlighter", + "type": "EditorSyntaxHighlighter" + } + ] + }, + { + "name": "unregister_syntax_highlighter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "syntax_highlighter", + "type": "EditorSyntaxHighlighter" + } + ] + }, + { + "name": "goto_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "line_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Script" + } + }, + { + "name": "get_open_scripts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "open_script_create_dialog", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "base_name", + "type": "String" + }, + { + "name": "base_path", + "type": "String" + } + ] + } + ], + "signals": [ + { + "name": "editor_script_changed", + "arguments": [ + { + "name": "script", + "type": "Script" + } + ] + }, + { + "name": "script_close", + "arguments": [ + { + "name": "script", + "type": "Script" + } + ] + } + ] + }, + { + "name": "ScriptEditorBase", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "VBoxContainer", + "api_type": "editor", + "methods": [ + { + "name": "get_base_editor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Control" + } + }, + { + "name": "add_syntax_highlighter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "highlighter", + "type": "EditorSyntaxHighlighter" + } + ] + } + ], + "signals": [ + { + "name": "name_changed" + }, + { + "name": "edited_script_changed" + }, + { + "name": "request_help", + "arguments": [ + { + "name": "topic", + "type": "String" + } + ] + }, + { + "name": "request_open_script_at_line", + "arguments": [ + { + "name": "script", + "type": "Object" + }, + { + "name": "line", + "type": "int" + } + ] + }, + { + "name": "request_save_history" + }, + { + "name": "go_to_help", + "arguments": [ + { + "name": "what", + "type": "String" + } + ] + }, + { + "name": "search_in_files_requested", + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "replace_in_files_requested", + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + } + ] + }, + { + "name": "ScriptExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Script", + "api_type": "core", + "methods": [ + { + "name": "_editor_can_reload_from_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_placeholder_erased", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "placeholder", + "type": "void*" + } + ] + }, + { + "name": "_can_instantiate", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_base_script", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Script" + } + }, + { + "name": "_inherits_script", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "script", + "type": "Script" + } + ] + }, + { + "name": "_get_instance_base_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "StringName" + } + }, + { + "name": "_instance_create", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "void*" + }, + "arguments": [ + { + "name": "for_object", + "type": "Object" + } + ] + }, + { + "name": "_placeholder_instance_create", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "void*" + }, + "arguments": [ + { + "name": "for_object", + "type": "Object" + } + ] + }, + { + "name": "_instance_has", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "_has_source_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_source_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_set_source_code", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "code", + "type": "String" + } + ] + }, + { + "name": "_reload", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "keep_state", + "type": "bool" + } + ] + }, + { + "name": "_get_documentation", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_has_method", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "_get_method_info", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "_is_tool", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_is_valid", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_language", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "ScriptLanguage" + } + }, + { + "name": "_has_script_signal", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "_get_script_signal_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_get_property_default_value", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "_update_exports", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_script_method_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_get_script_property_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_get_member_line", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "member", + "type": "StringName" + } + ] + }, + { + "name": "_get_constants", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "_get_members", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_is_placeholder_fallback_enabled", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_rpc_methods", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "ScriptLanguage", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core" + }, + { + "name": "ScriptLanguageExtension", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "ScriptLanguage", + "api_type": "core", + "enums": [ + { + "name": "LookupResultType", + "values": [ + { + "name": "LOOKUP_RESULT_SCRIPT_LOCATION", + "value": 0 + }, + { + "name": "LOOKUP_RESULT_CLASS", + "value": 1 + }, + { + "name": "LOOKUP_RESULT_CLASS_CONSTANT", + "value": 2 + }, + { + "name": "LOOKUP_RESULT_CLASS_PROPERTY", + "value": 3 + }, + { + "name": "LOOKUP_RESULT_CLASS_METHOD", + "value": 4 + }, + { + "name": "LOOKUP_RESULT_CLASS_SIGNAL", + "value": 5 + }, + { + "name": "LOOKUP_RESULT_CLASS_ENUM", + "value": 6 + }, + { + "name": "LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE", + "value": 7 + }, + { + "name": "LOOKUP_RESULT_MAX", + "value": 8 + } + ] + }, + { + "name": "CodeCompletionLocation", + "values": [ + { + "name": "LOCATION_LOCAL", + "value": 0 + }, + { + "name": "LOCATION_PARENT_MASK", + "value": 256 + }, + { + "name": "LOCATION_OTHER_USER_CODE", + "value": 512 + }, + { + "name": "LOCATION_OTHER", + "value": 1024 + } + ] + }, + { + "name": "CodeCompletionKind", + "values": [ + { + "name": "CODE_COMPLETION_KIND_CLASS", + "value": 0 + }, + { + "name": "CODE_COMPLETION_KIND_FUNCTION", + "value": 1 + }, + { + "name": "CODE_COMPLETION_KIND_SIGNAL", + "value": 2 + }, + { + "name": "CODE_COMPLETION_KIND_VARIABLE", + "value": 3 + }, + { + "name": "CODE_COMPLETION_KIND_MEMBER", + "value": 4 + }, + { + "name": "CODE_COMPLETION_KIND_ENUM", + "value": 5 + }, + { + "name": "CODE_COMPLETION_KIND_CONSTANT", + "value": 6 + }, + { + "name": "CODE_COMPLETION_KIND_NODE_PATH", + "value": 7 + }, + { + "name": "CODE_COMPLETION_KIND_FILE_PATH", + "value": 8 + }, + { + "name": "CODE_COMPLETION_KIND_PLAIN_TEXT", + "value": 9 + }, + { + "name": "CODE_COMPLETION_KIND_MAX", + "value": 10 + } + ] + } + ], + "methods": [ + { + "name": "_get_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_init", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_extension", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_execute_file", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_finish", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_get_reserved_words", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_is_control_flow_keyword", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "keyword", + "type": "String" + } + ] + }, + { + "name": "_get_comment_delimiters", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_get_string_delimiters", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_make_template", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Script" + }, + "arguments": [ + { + "name": "template", + "type": "String" + }, + { + "name": "class_name", + "type": "String" + }, + { + "name": "base_class_name", + "type": "String" + } + ] + }, + { + "name": "_get_built_in_templates", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "object", + "type": "StringName" + } + ] + }, + { + "name": "_is_using_templates", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_validate", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "script", + "type": "String" + }, + { + "name": "path", + "type": "String" + }, + { + "name": "validate_functions", + "type": "bool" + }, + { + "name": "validate_errors", + "type": "bool" + }, + { + "name": "validate_warnings", + "type": "bool" + }, + { + "name": "validate_safe_lines", + "type": "bool" + } + ] + }, + { + "name": "_validate_path", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_create_script", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + } + }, + { + "name": "_has_named_classes", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_supports_builtin_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_supports_documentation", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_can_inherit_from_file", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_find_function", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "class_name", + "type": "String" + }, + { + "name": "function_name", + "type": "String" + } + ] + }, + { + "name": "_make_function", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "class_name", + "type": "String" + }, + { + "name": "function_name", + "type": "String" + }, + { + "name": "function_args", + "type": "PackedStringArray" + } + ] + }, + { + "name": "_open_in_external_editor", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "script", + "type": "Script" + }, + { + "name": "line", + "type": "int" + }, + { + "name": "column", + "type": "int" + } + ] + }, + { + "name": "_overrides_external_editor", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_complete_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "code", + "type": "String" + }, + { + "name": "path", + "type": "String" + }, + { + "name": "owner", + "type": "Object" + } + ] + }, + { + "name": "_lookup_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "code", + "type": "String" + }, + { + "name": "symbol", + "type": "String" + }, + { + "name": "path", + "type": "String" + }, + { + "name": "owner", + "type": "Object" + } + ] + }, + { + "name": "_auto_indent_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "code", + "type": "String" + }, + { + "name": "from_line", + "type": "int" + }, + { + "name": "to_line", + "type": "int" + } + ] + }, + { + "name": "_add_global_constant", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "_add_named_global_constant", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "_remove_named_global_constant", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "_thread_enter", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_thread_exit", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_debug_get_error", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_debug_get_stack_level_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_debug_get_stack_level_line", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "level", + "type": "int" + } + ] + }, + { + "name": "_debug_get_stack_level_function", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "level", + "type": "int" + } + ] + }, + { + "name": "_debug_get_stack_level_locals", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "level", + "type": "int" + }, + { + "name": "max_subitems", + "type": "int" + }, + { + "name": "max_depth", + "type": "int" + } + ] + }, + { + "name": "_debug_get_stack_level_members", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "level", + "type": "int" + }, + { + "name": "max_subitems", + "type": "int" + }, + { + "name": "max_depth", + "type": "int" + } + ] + }, + { + "name": "_debug_get_stack_level_instance", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "void*" + }, + "arguments": [ + { + "name": "level", + "type": "int" + } + ] + }, + { + "name": "_debug_get_globals", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "max_subitems", + "type": "int" + }, + { + "name": "max_depth", + "type": "int" + } + ] + }, + { + "name": "_debug_parse_stack_level_expression", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "level", + "type": "int" + }, + { + "name": "expression", + "type": "String" + }, + { + "name": "max_subitems", + "type": "int" + }, + { + "name": "max_depth", + "type": "int" + } + ] + }, + { + "name": "_debug_get_current_stack_info", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_reload_all_scripts", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_reload_tool_script", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "script", + "type": "Script" + }, + { + "name": "soft_reload", + "type": "bool" + } + ] + }, + { + "name": "_get_recognized_extensions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_get_public_functions", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "_get_public_constants", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "_profiling_start", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_profiling_stop", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_profiling_get_accumulated_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "info_array", + "type": "ScriptLanguageExtensionProfilingInfo*" + }, + { + "name": "info_max", + "type": "int" + } + ] + }, + { + "name": "_profiling_get_frame_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "info_array", + "type": "ScriptLanguageExtensionProfilingInfo*" + }, + { + "name": "info_max", + "type": "int" + } + ] + }, + { + "name": "_alloc_instance_binding_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "void*" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "_free_instance_binding_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "data", + "type": "void*" + } + ] + }, + { + "name": "_refcount_incremented_instance_binding", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "_refcount_decremented_instance_binding", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "_frame", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_handles_global_class_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "type", + "type": "String" + } + ] + }, + { + "name": "_get_global_class_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ] + }, + { + "name": "ScrollBar", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Range", + "api_type": "core", + "methods": [ + { + "name": "set_custom_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "step", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_custom_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "signals": [ + { + "name": "scrolling" + } + ], + "properties": [ + { + "type": "float", + "name": "custom_step", + "setter": "set_custom_step", + "getter": "get_custom_step", + "index": -1 + } + ] + }, + { + "name": "ScrollContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "enums": [ + { + "name": "ScrollMode", + "values": [ + { + "name": "SCROLL_MODE_DISABLED", + "value": 0 + }, + { + "name": "SCROLL_MODE_AUTO", + "value": 1 + }, + { + "name": "SCROLL_MODE_SHOW_ALWAYS", + "value": 2 + }, + { + "name": "SCROLL_MODE_SHOW_NEVER", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_h_scroll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_h_scroll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_v_scroll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_v_scroll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_horizontal_scroll_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "enum::ScrollContainer.ScrollMode" + } + ] + }, + { + "name": "get_horizontal_scroll_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ScrollContainer.ScrollMode" + } + }, + { + "name": "set_vertical_scroll_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "enum::ScrollContainer.ScrollMode" + } + ] + }, + { + "name": "get_vertical_scroll_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::ScrollContainer.ScrollMode" + } + }, + { + "name": "set_deadzone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "deadzone", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_deadzone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_follow_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_following_focus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_h_scroll_bar", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "HScrollBar" + } + }, + { + "name": "get_v_scroll_bar", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "VScrollBar" + } + }, + { + "name": "ensure_control_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + } + ], + "signals": [ + { + "name": "scroll_started" + }, + { + "name": "scroll_ended" + } + ], + "properties": [ + { + "type": "bool", + "name": "follow_focus", + "setter": "set_follow_focus", + "getter": "is_following_focus", + "index": -1 + }, + { + "type": "int", + "name": "scroll_horizontal", + "setter": "set_h_scroll", + "getter": "get_h_scroll", + "index": -1 + }, + { + "type": "int", + "name": "scroll_vertical", + "setter": "set_v_scroll", + "getter": "get_v_scroll", + "index": -1 + }, + { + "type": "int", + "name": "horizontal_scroll_mode", + "setter": "set_horizontal_scroll_mode", + "getter": "get_horizontal_scroll_mode", + "index": -1 + }, + { + "type": "int", + "name": "vertical_scroll_mode", + "setter": "set_vertical_scroll_mode", + "getter": "get_vertical_scroll_mode", + "index": -1 + }, + { + "type": "int", + "name": "scroll_deadzone", + "setter": "set_deadzone", + "getter": "get_deadzone", + "index": -1 + } + ] + }, + { + "name": "SegmentShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_a", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "a", + "type": "Vector2" + } + ] + }, + { + "name": "get_a", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_b", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "b", + "type": "Vector2" + } + ] + }, + { + "name": "get_b", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "a", + "setter": "set_a", + "getter": "get_a", + "index": -1 + }, + { + "type": "Vector2", + "name": "b", + "setter": "set_b", + "getter": "get_b", + "index": -1 + } + ] + }, + { + "name": "Semaphore", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "wait", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "try_wait", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "post", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "SeparationRayShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_slide_on_slope", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "get_slide_on_slope", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "length", + "setter": "set_length", + "getter": "get_length", + "index": -1 + }, + { + "type": "bool", + "name": "slide_on_slope", + "setter": "set_slide_on_slope", + "getter": "get_slide_on_slope", + "index": -1 + } + ] + }, + { + "name": "SeparationRayShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_slide_on_slope", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "get_slide_on_slope", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "length", + "setter": "set_length", + "getter": "get_length", + "index": -1 + }, + { + "type": "bool", + "name": "slide_on_slope", + "setter": "set_slide_on_slope", + "getter": "get_slide_on_slope", + "index": -1 + } + ] + }, + { + "name": "Separator", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Control", + "api_type": "core" + }, + { + "name": "Shader", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_SPATIAL", + "value": 0 + }, + { + "name": "MODE_CANVAS_ITEM", + "value": 1 + }, + { + "name": "MODE_PARTICLES", + "value": 2 + }, + { + "name": "MODE_SKY", + "value": 3 + }, + { + "name": "MODE_FOG", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Shader.Mode" + } + }, + { + "name": "set_code", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "code", + "type": "String" + } + ] + }, + { + "name": "get_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_default_texture_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "param", + "type": "StringName" + }, + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_default_texture_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "param", + "type": "StringName" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "has_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "code", + "setter": "set_code", + "getter": "get_code", + "index": -1 + } + ] + }, + { + "name": "ShaderGlobalsOverride", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core" + }, + { + "name": "ShaderMaterial", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Material", + "api_type": "core", + "methods": [ + { + "name": "set_shader", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shader", + "type": "Shader" + } + ] + }, + { + "name": "get_shader", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shader" + } + }, + { + "name": "set_shader_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_shader_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "param", + "type": "StringName" + } + ] + }, + { + "name": "property_can_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "property_get_revert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "Shader", + "name": "shader", + "setter": "set_shader", + "getter": "get_shader", + "index": -1 + } + ] + }, + { + "name": "Shape2D", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_custom_solver_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_custom_solver_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "collide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "local_xform", + "type": "Transform2D" + }, + { + "name": "with_shape", + "type": "Shape2D" + }, + { + "name": "shape_xform", + "type": "Transform2D" + } + ] + }, + { + "name": "collide_with_motion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517835, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "local_xform", + "type": "Transform2D" + }, + { + "name": "local_motion", + "type": "Vector2" + }, + { + "name": "with_shape", + "type": "Shape2D" + }, + { + "name": "shape_xform", + "type": "Transform2D" + }, + { + "name": "shape_motion", + "type": "Vector2" + } + ] + }, + { + "name": "collide_and_get_contacts", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "local_xform", + "type": "Transform2D" + }, + { + "name": "with_shape", + "type": "Shape2D" + }, + { + "name": "shape_xform", + "type": "Transform2D" + } + ] + }, + { + "name": "collide_with_motion_and_get_contacts", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517835, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "local_xform", + "type": "Transform2D" + }, + { + "name": "local_motion", + "type": "Vector2" + }, + { + "name": "with_shape", + "type": "Shape2D" + }, + { + "name": "shape_xform", + "type": "Transform2D" + }, + { + "name": "shape_motion", + "type": "Vector2" + } + ] + }, + { + "name": "draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "color", + "type": "Color" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "custom_solver_bias", + "setter": "set_custom_solver_bias", + "getter": "get_custom_solver_bias", + "index": -1 + } + ] + }, + { + "name": "Shape3D", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_custom_solver_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_custom_solver_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_debug_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "ArrayMesh" + } + } + ], + "properties": [ + { + "type": "float", + "name": "custom_solver_bias", + "setter": "set_custom_solver_bias", + "getter": "get_custom_solver_bias", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + } + ] + }, + { + "name": "ShapeCast2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Shape2D" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shape2D" + } + }, + { + "name": "set_target_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "local_point", + "type": "Vector2" + } + ] + }, + { + "name": "get_target_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_results", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_results", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_results", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_colliding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_collision_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "force_shapecast_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_closest_collision_safe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_closest_collision_unsafe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "add_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "add_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "CollisionObject2D" + } + ] + }, + { + "name": "remove_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "remove_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "CollisionObject2D" + } + ] + }, + { + "name": "clear_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_exclude_parent_body", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_parent_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "Shape2D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "bool", + "name": "exclude_parent", + "setter": "set_exclude_parent_body", + "getter": "get_exclude_parent_body", + "index": -1 + }, + { + "type": "Vector2", + "name": "target_position", + "setter": "set_target_position", + "getter": "get_target_position", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "int", + "name": "max_results", + "setter": "set_max_results", + "getter": "get_max_results", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "collision_result", + "setter": "", + "getter": "_get_collision_result", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + } + ] + }, + { + "name": "Shortcut", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_events", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "events", + "type": "Array" + } + ] + }, + { + "name": "get_events", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "has_valid_event", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "matches_event", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "get_as_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "Array", + "name": "events", + "setter": "set_events", + "getter": "get_events", + "index": -1 + } + ] + }, + { + "name": "Skeleton2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "get_bone_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Bone2D" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modification_stack", + "type": "SkeletonModificationStack2D" + } + ] + }, + { + "name": "get_modification_stack", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SkeletonModificationStack2D" + } + }, + { + "name": "execute_modifications", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "execution_mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_local_pose_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "override_pose", + "type": "Transform2D" + }, + { + "name": "strength", + "type": "float", + "meta": "float" + }, + { + "name": "persistent", + "type": "bool" + } + ] + }, + { + "name": "get_bone_local_pose_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "bone_setup_changed" + } + ] + }, + { + "name": "Skeleton3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_UPDATE_SKELETON", + "value": 50 + } + ], + "methods": [ + { + "name": "add_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "find_bone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_bone_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "parent_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "unparent_bone_and_rest", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_children", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_children", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_children", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "add_bone_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "child_bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_bone_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "child_bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_parentless_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "get_bone_rest", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_rest", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "rest", + "type": "Transform3D" + } + ] + }, + { + "name": "get_bone_global_rest", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "create_skin_from_rest_transforms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Skin" + } + }, + { + "name": "register_skin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "SkinReference" + }, + "arguments": [ + { + "name": "skin", + "type": "Skin" + } + ] + }, + { + "name": "localize_rests", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_bone_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_pose_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "set_bone_pose_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "rotation", + "type": "Quaternion" + } + ] + }, + { + "name": "set_bone_pose_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "get_bone_pose_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_pose_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Quaternion" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_pose_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_bone_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enabled", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "clear_bones_global_pose_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_bone_global_pose_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "pose", + "type": "Transform3D" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + }, + { + "name": "persistent", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_bone_global_pose_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_global_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_global_pose_no_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_bones_local_pose_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_bone_local_pose_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "pose", + "type": "Transform3D" + }, + { + "name": "amount", + "type": "float", + "meta": "float" + }, + { + "name": "persistent", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_bone_local_pose_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "force_update_all_bone_transforms", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "force_update_bone_child_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "global_pose_to_world_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "global_pose", + "type": "Transform3D" + } + ] + }, + { + "name": "world_transform_to_global_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "world_transform", + "type": "Transform3D" + } + ] + }, + { + "name": "global_pose_to_local_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "global_pose", + "type": "Transform3D" + } + ] + }, + { + "name": "local_pose_to_global_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "local_pose", + "type": "Transform3D" + } + ] + }, + { + "name": "global_pose_z_forward_to_bone_forward", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Basis" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "basis", + "type": "Basis" + } + ] + }, + { + "name": "set_show_rest_only", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_show_rest_only", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_animate_physical_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_animate_physical_bones", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "physical_bones_stop_simulation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "physical_bones_start_simulation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 326682341, + "arguments": [ + { + "name": "bones", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "physical_bones_add_collision_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exception", + "type": "RID" + } + ] + }, + { + "name": "physical_bones_remove_collision_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exception", + "type": "RID" + } + ] + }, + { + "name": "set_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modification_stack", + "type": "SkeletonModificationStack3D" + } + ] + }, + { + "name": "get_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "SkeletonModificationStack3D" + } + }, + { + "name": "execute_modifications", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "execution_mode", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "pose_updated" + }, + { + "name": "bone_pose_changed", + "arguments": [ + { + "name": "bone_idx", + "type": "int" + } + ] + }, + { + "name": "bone_enabled_changed", + "arguments": [ + { + "name": "bone_idx", + "type": "int" + } + ] + }, + { + "name": "show_rest_only_changed" + } + ], + "properties": [ + { + "type": "bool", + "name": "show_rest_only", + "setter": "set_show_rest_only", + "getter": "is_show_rest_only", + "index": -1 + }, + { + "type": "bool", + "name": "animate_physical_bones", + "setter": "set_animate_physical_bones", + "getter": "get_animate_physical_bones", + "index": -1 + } + ] + }, + { + "name": "SkeletonIK3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "set_root_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "root_bone", + "type": "StringName" + } + ] + }, + { + "name": "get_root_bone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_tip_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tip_bone", + "type": "StringName" + } + ] + }, + { + "name": "get_tip_bone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_interpolation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interpolation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_interpolation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_target_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target", + "type": "Transform3D" + } + ] + }, + { + "name": "get_target_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "node", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_override_tip_basis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override", + "type": "bool" + } + ] + }, + { + "name": "is_override_tip_basis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_magnet", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use", + "type": "bool" + } + ] + }, + { + "name": "is_using_magnet", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_magnet_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "local_position", + "type": "Vector3" + } + ] + }, + { + "name": "get_magnet_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_parent_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skeleton3D" + } + }, + { + "name": "is_running", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_min_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "min_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_min_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_iterations", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "iterations", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_iterations", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133278119, + "arguments": [ + { + "name": "one_time", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "StringName", + "name": "root_bone", + "setter": "set_root_bone", + "getter": "get_root_bone", + "index": -1 + }, + { + "type": "StringName", + "name": "tip_bone", + "setter": "set_tip_bone", + "getter": "get_tip_bone", + "index": -1 + }, + { + "type": "float", + "name": "interpolation", + "setter": "set_interpolation", + "getter": "get_interpolation", + "index": -1 + }, + { + "type": "Transform3D", + "name": "target", + "setter": "set_target_transform", + "getter": "get_target_transform", + "index": -1 + }, + { + "type": "bool", + "name": "override_tip_basis", + "setter": "set_override_tip_basis", + "getter": "is_override_tip_basis", + "index": -1 + }, + { + "type": "bool", + "name": "use_magnet", + "setter": "set_use_magnet", + "getter": "is_using_magnet", + "index": -1 + }, + { + "type": "Vector3", + "name": "magnet", + "setter": "set_magnet_position", + "getter": "get_magnet_position", + "index": -1 + }, + { + "type": "NodePath", + "name": "target_node", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "float", + "name": "min_distance", + "setter": "set_min_distance", + "getter": "get_min_distance", + "index": -1 + }, + { + "type": "int", + "name": "max_iterations", + "setter": "set_max_iterations", + "getter": "get_max_iterations", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_execute", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "_setup_modification", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "modification_stack", + "type": "SkeletonModificationStack2D" + } + ] + }, + { + "name": "_draw_editor_gizmo", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "SkeletonModificationStack2D" + } + }, + { + "name": "set_is_setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "is_setup", + "type": "bool" + } + ] + }, + { + "name": "get_is_setup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_execution_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "execution_mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_execution_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "clamp_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "angle", + "type": "float", + "meta": "float" + }, + { + "name": "min", + "type": "float", + "meta": "float" + }, + { + "name": "max", + "type": "float", + "meta": "float" + }, + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "set_editor_draw_gizmo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "draw_gizmo", + "type": "bool" + } + ] + }, + { + "name": "get_editor_draw_gizmo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "get_enabled", + "index": -1 + }, + { + "type": "int", + "name": "execution_mode", + "setter": "set_execution_mode", + "getter": "get_execution_mode", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2DCCDIK", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_tip_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tip_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_tip_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_ccdik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ccdik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_ccdik_joint_bone2d_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone2d_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_ccdik_joint_bone2d_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ccdik_joint_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_rotate_from_joint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "rotate_from_joint", + "type": "bool" + } + ] + }, + { + "name": "get_ccdik_joint_rotate_from_joint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_enable_constraint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable_constraint", + "type": "bool" + } + ] + }, + { + "name": "get_ccdik_joint_enable_constraint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_constraint_angle_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "angle_min", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ccdik_joint_constraint_angle_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_constraint_angle_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "angle_max", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ccdik_joint_constraint_angle_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_constraint_angle_invert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "get_ccdik_joint_constraint_angle_invert", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "NodePath", + "name": "tip_nodepath", + "setter": "set_tip_node", + "getter": "get_tip_node", + "index": -1 + }, + { + "type": "int", + "name": "ccdik_data_chain_length", + "setter": "set_ccdik_data_chain_length", + "getter": "get_ccdik_data_chain_length", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2DFABRIK", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_fabrik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fabrik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_fabrik_joint_bone2d_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone2d_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_fabrik_joint_bone2d_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fabrik_joint_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_magnet_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "magnet_position", + "type": "Vector2" + } + ] + }, + { + "name": "get_fabrik_joint_magnet_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_use_target_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "use_target_rotation", + "type": "bool" + } + ] + }, + { + "name": "get_fabrik_joint_use_target_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "int", + "name": "fabrik_data_chain_length", + "setter": "set_fabrik_data_chain_length", + "getter": "get_fabrik_data_chain_length", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2DJiggle", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_jiggle_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_jiggle_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stiffness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_stiffness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "damping", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_gravity", + "type": "bool" + } + ] + }, + { + "name": "get_use_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity", + "type": "Vector2" + } + ] + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_use_colliders", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_colliders", + "type": "bool" + } + ] + }, + { + "name": "get_use_colliders", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_jiggle_joint_bone2d_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone2d_node", + "type": "NodePath" + } + ] + }, + { + "name": "get_jiggle_joint_bone2d_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_jiggle_joint_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "override", + "type": "bool" + } + ] + }, + { + "name": "get_jiggle_joint_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "stiffness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_stiffness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_damping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "damping", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_damping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_use_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "use_gravity", + "type": "bool" + } + ] + }, + { + "name": "get_jiggle_joint_use_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "gravity", + "type": "Vector2" + } + ] + }, + { + "name": "get_jiggle_joint_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "int", + "name": "jiggle_data_chain_length", + "setter": "set_jiggle_data_chain_length", + "getter": "get_jiggle_data_chain_length", + "index": -1 + }, + { + "type": "float", + "name": "stiffness", + "setter": "set_stiffness", + "getter": "get_stiffness", + "index": -1 + }, + { + "type": "float", + "name": "mass", + "setter": "set_mass", + "getter": "get_mass", + "index": -1 + }, + { + "type": "float", + "name": "damping", + "setter": "set_damping", + "getter": "get_damping", + "index": -1 + }, + { + "type": "bool", + "name": "use_gravity", + "setter": "set_use_gravity", + "getter": "get_use_gravity", + "index": -1 + }, + { + "type": "Vector2", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2DLookAt", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_bone2d_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone2d_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_bone2d_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_additional_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rotation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_additional_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_enable_constraint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable_constraint", + "type": "bool" + } + ] + }, + { + "name": "get_enable_constraint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_constraint_angle_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angle_min", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constraint_angle_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_constraint_angle_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "angle_max", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constraint_angle_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_constraint_angle_invert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "get_constraint_angle_invert", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "bone_index", + "setter": "set_bone_index", + "getter": "get_bone_index", + "index": -1 + }, + { + "type": "NodePath", + "name": "bone2d_node", + "setter": "set_bone2d_node", + "getter": "get_bone2d_node", + "index": -1 + }, + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2DPhysicalBones", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_physical_bone_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_physical_bone_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_physical_bone_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "physicalbone2d_node", + "type": "NodePath" + } + ] + }, + { + "name": "get_physical_bone_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "fetch_physical_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "start_simulation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 326682341, + "arguments": [ + { + "name": "bones", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "stop_simulation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 326682341, + "arguments": [ + { + "name": "bones", + "type": "Array", + "default_value": "[]" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "physical_bone_chain_length", + "setter": "set_physical_bone_chain_length", + "getter": "get_physical_bone_chain_length", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification2DStackHolder", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_held_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "held_modification_stack", + "type": "SkeletonModificationStack2D" + } + ] + }, + { + "name": "get_held_modification_stack", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SkeletonModificationStack2D" + } + } + ] + }, + { + "name": "SkeletonModification2DTwoBoneIK", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification2D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_target_minimum_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "minimum_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_target_minimum_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_target_maximum_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "maximum_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_target_maximum_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_flip_bend_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_direction", + "type": "bool" + } + ] + }, + { + "name": "get_flip_bend_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_joint_one_bone2d_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone2d_node", + "type": "NodePath" + } + ] + }, + { + "name": "get_joint_one_bone2d_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_joint_one_bone_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joint_one_bone_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_joint_two_bone2d_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone2d_node", + "type": "NodePath" + } + ] + }, + { + "name": "get_joint_two_bone2d_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_joint_two_bone_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joint_two_bone_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "float", + "name": "target_minimum_distance", + "setter": "set_target_minimum_distance", + "getter": "get_target_minimum_distance", + "index": -1 + }, + { + "type": "float", + "name": "target_maximum_distance", + "setter": "set_target_maximum_distance", + "getter": "get_target_maximum_distance", + "index": -1 + }, + { + "type": "bool", + "name": "flip_bend_direction", + "setter": "set_flip_bend_direction", + "getter": "get_flip_bend_direction", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_execute", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "delta", + "type": "float" + } + ] + }, + { + "name": "_setup_modification", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "modification_stack", + "type": "SkeletonModificationStack3D" + } + ] + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "SkeletonModificationStack3D" + } + }, + { + "name": "set_is_setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "is_setup", + "type": "bool" + } + ] + }, + { + "name": "get_is_setup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_execution_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "execution_mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_execution_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "clamp_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "angle", + "type": "float", + "meta": "float" + }, + { + "name": "min", + "type": "float", + "meta": "float" + }, + { + "name": "max", + "type": "float", + "meta": "float" + }, + { + "name": "invert", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "get_enabled", + "index": -1 + }, + { + "type": "int", + "name": "execution_mode", + "setter": "set_execution_mode", + "getter": "get_execution_mode", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification3DCCDIK", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification3D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_tip_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tip_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_tip_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_use_high_quality_solve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "high_quality_solve", + "type": "bool" + } + ] + }, + { + "name": "get_use_high_quality_solve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_ccdik_joint_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_name", + "type": "String" + } + ] + }, + { + "name": "get_ccdik_joint_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ccdik_joint_ccdik_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_ccdik_axis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "axis", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ccdik_joint_enable_joint_constraint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_enable_joint_constraint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_ccdik_joint_constraint_angle_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_constraint_angle_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "min_angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ccdik_joint_constraint_angle_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_constraint_angle_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "max_angle", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_ccdik_joint_constraint_invert", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ccdik_joint_constraint_invert", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "invert", + "type": "bool" + } + ] + }, + { + "name": "set_ccdik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ccdik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "NodePath", + "name": "tip_nodepath", + "setter": "set_tip_node", + "getter": "get_tip_node", + "index": -1 + }, + { + "type": "bool", + "name": "high_quality_solve", + "setter": "set_use_high_quality_solve", + "getter": "get_use_high_quality_solve", + "index": -1 + }, + { + "type": "int", + "name": "ccdik_data_chain_length", + "setter": "set_ccdik_data_chain_length", + "getter": "get_ccdik_data_chain_length", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification3DFABRIK", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification3D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_fabrik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fabrik_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_chain_tolerance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tolerance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_chain_tolerance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_chain_max_iterations", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_iterations", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_chain_max_iterations", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_fabrik_joint_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_name", + "type": "String" + } + ] + }, + { + "name": "get_fabrik_joint_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fabrik_joint_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fabrik_joint_magnet", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_magnet", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "magnet_position", + "type": "Vector3" + } + ] + }, + { + "name": "get_fabrik_joint_auto_calculate_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_auto_calculate_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "auto_calculate_length", + "type": "bool" + } + ] + }, + { + "name": "fabrik_joint_auto_calculate_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fabrik_joint_use_tip_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_use_tip_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "use_tip_node", + "type": "bool" + } + ] + }, + { + "name": "get_fabrik_joint_tip_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NodePath" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_tip_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tip_node", + "type": "NodePath" + } + ] + }, + { + "name": "get_fabrik_joint_use_target_basis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_fabrik_joint_use_target_basis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "use_target_basis", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "int", + "name": "fabrik_data_chain_length", + "setter": "set_fabrik_data_chain_length", + "getter": "get_fabrik_data_chain_length", + "index": -1 + }, + { + "type": "float", + "name": "chain_tolerance", + "setter": "set_chain_tolerance", + "getter": "get_chain_tolerance", + "index": -1 + }, + { + "type": "int", + "name": "chain_max_iterations", + "setter": "set_chain_max_iterations", + "getter": "get_chain_max_iterations", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification3DJiggle", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification3D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_jiggle_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_jiggle_data_chain_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stiffness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_stiffness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "damping", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_gravity", + "type": "bool" + } + ] + }, + { + "name": "get_use_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gravity", + "type": "Vector3" + } + ] + }, + { + "name": "get_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_use_colliders", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_colliders", + "type": "bool" + } + ] + }, + { + "name": "get_use_colliders", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_jiggle_joint_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_jiggle_joint_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_jiggle_joint_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "override", + "type": "bool" + } + ] + }, + { + "name": "get_jiggle_joint_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "stiffness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_stiffness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_mass", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_damping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "damping", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_damping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_use_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "use_gravity", + "type": "bool" + } + ] + }, + { + "name": "get_jiggle_joint_use_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_gravity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "gravity", + "type": "Vector3" + } + ] + }, + { + "name": "get_jiggle_joint_gravity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_jiggle_joint_roll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "roll", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_jiggle_joint_roll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "joint_idx", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + }, + { + "type": "int", + "name": "jiggle_data_chain_length", + "setter": "set_jiggle_data_chain_length", + "getter": "get_jiggle_data_chain_length", + "index": -1 + }, + { + "type": "float", + "name": "stiffness", + "setter": "set_stiffness", + "getter": "get_stiffness", + "index": -1 + }, + { + "type": "float", + "name": "mass", + "setter": "set_mass", + "getter": "get_mass", + "index": -1 + }, + { + "type": "float", + "name": "damping", + "setter": "set_damping", + "getter": "get_damping", + "index": -1 + }, + { + "type": "bool", + "name": "use_gravity", + "setter": "set_use_gravity", + "getter": "get_use_gravity", + "index": -1 + }, + { + "type": "Vector3", + "name": "gravity", + "setter": "set_gravity", + "getter": "get_gravity", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification3DLookAt", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification3D", + "api_type": "core", + "methods": [ + { + "name": "set_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_bone_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_additional_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "additional_rotation", + "type": "Vector3" + } + ] + }, + { + "name": "get_additional_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_lock_rotation_to_plane", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "lock_to_plane", + "type": "bool" + } + ] + }, + { + "name": "get_lock_rotation_to_plane", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_lock_rotation_plane", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plane", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_lock_rotation_plane", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "bone_name", + "setter": "set_bone_name", + "getter": "get_bone_name", + "index": -1 + }, + { + "type": "int", + "name": "bone_index", + "setter": "set_bone_index", + "getter": "get_bone_index", + "index": -1 + }, + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + } + ] + }, + { + "name": "SkeletonModification3DStackHolder", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification3D", + "api_type": "core", + "methods": [ + { + "name": "set_held_modification_stack", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "held_modification_stack", + "type": "SkeletonModificationStack3D" + } + ] + }, + { + "name": "get_held_modification_stack", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SkeletonModificationStack3D" + } + } + ] + }, + { + "name": "SkeletonModification3DTwoBoneIK", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonModification3D", + "api_type": "core", + "methods": [ + { + "name": "set_target_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "target_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_target_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_use_pole_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_pole_node", + "type": "bool" + } + ] + }, + { + "name": "get_use_pole_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_pole_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pole_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_pole_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_use_tip_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_tip_node", + "type": "bool" + } + ] + }, + { + "name": "get_use_tip_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tip_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tip_nodepath", + "type": "NodePath" + } + ] + }, + { + "name": "get_tip_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_auto_calculate_joint_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "auto_calculate_joint_length", + "type": "bool" + } + ] + }, + { + "name": "get_auto_calculate_joint_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_joint_one_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_name", + "type": "String" + } + ] + }, + { + "name": "get_joint_one_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_joint_one_bone_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joint_one_bone_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_joint_one_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_joint_one_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_joint_two_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_name", + "type": "String" + } + ] + }, + { + "name": "get_joint_two_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_joint_two_bone_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_joint_two_bone_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_joint_two_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bone_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_joint_two_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_joint_one_roll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "roll", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_joint_one_roll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_joint_two_roll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "roll", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_joint_two_roll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "target_nodepath", + "setter": "set_target_node", + "getter": "get_target_node", + "index": -1 + } + ] + }, + { + "name": "SkeletonModificationStack2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "execute", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "execution_mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "enable_all_modifications", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_modification", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "SkeletonModification2D" + }, + "arguments": [ + { + "name": "mod_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_modification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modification", + "type": "SkeletonModification2D" + } + ] + }, + { + "name": "delete_modification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mod_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_modification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "mod_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "modification", + "type": "SkeletonModification2D" + } + ] + }, + { + "name": "set_modification_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_modification_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_is_setup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skeleton2D" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "get_enabled", + "index": -1 + }, + { + "type": "float", + "name": "strength", + "setter": "set_strength", + "getter": "get_strength", + "index": -1 + }, + { + "type": "Modifications,modifications/", + "name": "modification_count", + "setter": "set_modification_count", + "getter": "get_modification_count", + "index": -1 + } + ] + }, + { + "name": "SkeletonModificationStack3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "setup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "execute", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + }, + { + "name": "execution_mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "enable_all_modifications", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_modification", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "SkeletonModification3D" + }, + "arguments": [ + { + "name": "mod_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_modification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modification", + "type": "SkeletonModification3D" + } + ] + }, + { + "name": "delete_modification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mod_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_modification", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "mod_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "modification", + "type": "SkeletonModification3D" + } + ] + }, + { + "name": "set_modification_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_modification_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_is_setup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skeleton3D" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "get_enabled", + "index": -1 + }, + { + "type": "float", + "name": "strength", + "setter": "set_strength", + "getter": "get_strength", + "index": -1 + }, + { + "type": "Modifications,modifications/", + "name": "modification_count", + "setter": "set_modification_count", + "getter": "get_modification_count", + "index": -1 + } + ] + }, + { + "name": "Skin", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_bind_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bind_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bind_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_bind", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bone", + "type": "int", + "meta": "int32" + }, + { + "name": "pose", + "type": "Transform3D" + } + ] + }, + { + "name": "add_named_bind", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "pose", + "type": "Transform3D" + } + ] + }, + { + "name": "set_bind_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bind_index", + "type": "int", + "meta": "int32" + }, + { + "name": "pose", + "type": "Transform3D" + } + ] + }, + { + "name": "get_bind_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bind_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bind_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bind_index", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_bind_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "bind_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bind_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "bind_index", + "type": "int", + "meta": "int32" + }, + { + "name": "bone", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bind_bone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "bind_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_binds", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "SkinReference", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_skeleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_skin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Skin" + } + } + ] + }, + { + "name": "Sky", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "RadianceSize", + "values": [ + { + "name": "RADIANCE_SIZE_32", + "value": 0 + }, + { + "name": "RADIANCE_SIZE_64", + "value": 1 + }, + { + "name": "RADIANCE_SIZE_128", + "value": 2 + }, + { + "name": "RADIANCE_SIZE_256", + "value": 3 + }, + { + "name": "RADIANCE_SIZE_512", + "value": 4 + }, + { + "name": "RADIANCE_SIZE_1024", + "value": 5 + }, + { + "name": "RADIANCE_SIZE_2048", + "value": 6 + }, + { + "name": "RADIANCE_SIZE_MAX", + "value": 7 + } + ] + }, + { + "name": "ProcessMode", + "values": [ + { + "name": "PROCESS_MODE_AUTOMATIC", + "value": 0 + }, + { + "name": "PROCESS_MODE_QUALITY", + "value": 1 + }, + { + "name": "PROCESS_MODE_INCREMENTAL", + "value": 2 + }, + { + "name": "PROCESS_MODE_REALTIME", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_radiance_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "enum::Sky.RadianceSize" + } + ] + }, + { + "name": "get_radiance_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Sky.RadianceSize" + } + }, + { + "name": "set_process_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Sky.ProcessMode" + } + ] + }, + { + "name": "get_process_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Sky.ProcessMode" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Material" + } + } + ], + "properties": [ + { + "type": "ShaderMaterial,PanoramaSkyMaterial,ProceduralSkyMaterial,PhysicalSkyMaterial", + "name": "sky_material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + }, + { + "type": "int", + "name": "process_mode", + "setter": "set_process_mode", + "getter": "get_process_mode", + "index": -1 + }, + { + "type": "int", + "name": "radiance_size", + "setter": "set_radiance_size", + "getter": "get_radiance_size", + "index": -1 + } + ] + }, + { + "name": "Slider", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Range", + "api_type": "core", + "methods": [ + { + "name": "set_ticks", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ticks", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_ticks_on_borders", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_ticks_on_borders", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ticks_on_border", + "type": "bool" + } + ] + }, + { + "name": "set_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "editable", + "type": "bool" + } + ] + }, + { + "name": "is_editable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_scrollable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scrollable", + "type": "bool" + } + ] + }, + { + "name": "is_scrollable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "drag_started" + }, + { + "name": "drag_ended", + "arguments": [ + { + "name": "value_changed", + "type": "bool" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "editable", + "setter": "set_editable", + "getter": "is_editable", + "index": -1 + }, + { + "type": "bool", + "name": "scrollable", + "setter": "set_scrollable", + "getter": "is_scrollable", + "index": -1 + }, + { + "type": "int", + "name": "tick_count", + "setter": "set_ticks", + "getter": "get_ticks", + "index": -1 + }, + { + "type": "bool", + "name": "ticks_on_borders", + "setter": "set_ticks_on_borders", + "getter": "get_ticks_on_borders", + "index": -1 + } + ] + }, + { + "name": "SliderJoint3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Joint3D", + "api_type": "core", + "enums": [ + { + "name": "Param", + "values": [ + { + "name": "PARAM_LINEAR_LIMIT_UPPER", + "value": 0 + }, + { + "name": "PARAM_LINEAR_LIMIT_LOWER", + "value": 1 + }, + { + "name": "PARAM_LINEAR_LIMIT_SOFTNESS", + "value": 2 + }, + { + "name": "PARAM_LINEAR_LIMIT_RESTITUTION", + "value": 3 + }, + { + "name": "PARAM_LINEAR_LIMIT_DAMPING", + "value": 4 + }, + { + "name": "PARAM_LINEAR_MOTION_SOFTNESS", + "value": 5 + }, + { + "name": "PARAM_LINEAR_MOTION_RESTITUTION", + "value": 6 + }, + { + "name": "PARAM_LINEAR_MOTION_DAMPING", + "value": 7 + }, + { + "name": "PARAM_LINEAR_ORTHOGONAL_SOFTNESS", + "value": 8 + }, + { + "name": "PARAM_LINEAR_ORTHOGONAL_RESTITUTION", + "value": 9 + }, + { + "name": "PARAM_LINEAR_ORTHOGONAL_DAMPING", + "value": 10 + }, + { + "name": "PARAM_ANGULAR_LIMIT_UPPER", + "value": 11 + }, + { + "name": "PARAM_ANGULAR_LIMIT_LOWER", + "value": 12 + }, + { + "name": "PARAM_ANGULAR_LIMIT_SOFTNESS", + "value": 13 + }, + { + "name": "PARAM_ANGULAR_LIMIT_RESTITUTION", + "value": 14 + }, + { + "name": "PARAM_ANGULAR_LIMIT_DAMPING", + "value": 15 + }, + { + "name": "PARAM_ANGULAR_MOTION_SOFTNESS", + "value": 16 + }, + { + "name": "PARAM_ANGULAR_MOTION_RESTITUTION", + "value": 17 + }, + { + "name": "PARAM_ANGULAR_MOTION_DAMPING", + "value": 18 + }, + { + "name": "PARAM_ANGULAR_ORTHOGONAL_SOFTNESS", + "value": 19 + }, + { + "name": "PARAM_ANGULAR_ORTHOGONAL_RESTITUTION", + "value": 20 + }, + { + "name": "PARAM_ANGULAR_ORTHOGONAL_DAMPING", + "value": 21 + }, + { + "name": "PARAM_MAX", + "value": 22 + } + ] + } + ], + "methods": [ + { + "name": "set_param", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "param", + "type": "enum::SliderJoint3D.Param" + }, + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_param", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "param", + "type": "enum::SliderJoint3D.Param" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "linear_limit/upper_distance", + "setter": "set_param", + "getter": "get_param", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit/lower_distance", + "setter": "set_param", + "getter": "get_param", + "index": 1 + }, + { + "type": "float", + "name": "linear_limit/softness", + "setter": "set_param", + "getter": "get_param", + "index": 2 + }, + { + "type": "float", + "name": "linear_limit/restitution", + "setter": "set_param", + "getter": "get_param", + "index": 3 + }, + { + "type": "float", + "name": "linear_limit/damping", + "setter": "set_param", + "getter": "get_param", + "index": 4 + }, + { + "type": "float", + "name": "linear_motion/softness", + "setter": "set_param", + "getter": "get_param", + "index": 5 + }, + { + "type": "float", + "name": "linear_motion/restitution", + "setter": "set_param", + "getter": "get_param", + "index": 6 + }, + { + "type": "float", + "name": "linear_motion/damping", + "setter": "set_param", + "getter": "get_param", + "index": 7 + }, + { + "type": "float", + "name": "linear_ortho/softness", + "setter": "set_param", + "getter": "get_param", + "index": 8 + }, + { + "type": "float", + "name": "linear_ortho/restitution", + "setter": "set_param", + "getter": "get_param", + "index": 9 + }, + { + "type": "float", + "name": "linear_ortho/damping", + "setter": "set_param", + "getter": "get_param", + "index": 10 + }, + { + "type": "float", + "name": "angular_limit/upper_angle", + "setter": "_set_upper_limit_angular", + "getter": "_get_upper_limit_angular", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit/lower_angle", + "setter": "_set_lower_limit_angular", + "getter": "_get_lower_limit_angular", + "index": -1 + }, + { + "type": "float", + "name": "angular_limit/softness", + "setter": "set_param", + "getter": "get_param", + "index": 13 + }, + { + "type": "float", + "name": "angular_limit/restitution", + "setter": "set_param", + "getter": "get_param", + "index": 14 + }, + { + "type": "float", + "name": "angular_limit/damping", + "setter": "set_param", + "getter": "get_param", + "index": 15 + }, + { + "type": "float", + "name": "angular_motion/softness", + "setter": "set_param", + "getter": "get_param", + "index": 16 + }, + { + "type": "float", + "name": "angular_motion/restitution", + "setter": "set_param", + "getter": "get_param", + "index": 17 + }, + { + "type": "float", + "name": "angular_motion/damping", + "setter": "set_param", + "getter": "get_param", + "index": 18 + }, + { + "type": "float", + "name": "angular_ortho/softness", + "setter": "set_param", + "getter": "get_param", + "index": 19 + }, + { + "type": "float", + "name": "angular_ortho/restitution", + "setter": "set_param", + "getter": "get_param", + "index": 20 + }, + { + "type": "float", + "name": "angular_ortho/damping", + "setter": "set_param", + "getter": "get_param", + "index": 21 + } + ] + }, + { + "name": "SoftDynamicBody3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "MeshInstance3D", + "api_type": "core", + "enums": [ + { + "name": "DisableMode", + "values": [ + { + "name": "DISABLE_MODE_REMOVE", + "value": 0 + }, + { + "name": "DISABLE_MODE_KEEP_ACTIVE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "get_physics_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_parent_collision_ignore", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parent_collision_ignore", + "type": "NodePath" + } + ] + }, + { + "name": "get_parent_collision_ignore", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_disable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::SoftDynamicBody3D.DisableMode" + } + ] + }, + { + "name": "get_disable_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::SoftDynamicBody3D.DisableMode" + } + }, + { + "name": "get_collision_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "add_collision_exception_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "remove_collision_exception_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "body", + "type": "Node" + } + ] + }, + { + "name": "set_simulation_precision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "simulation_precision", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_simulation_precision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_total_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mass", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_total_mass", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_linear_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "linear_stiffness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_linear_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pressure_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pressure_coefficient", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pressure_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "damping_coefficient", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_drag_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "drag_coefficient", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_drag_coefficient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_point_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "point_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_point_pinned", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "point_index", + "type": "int", + "meta": "int32" + }, + { + "name": "pinned", + "type": "bool" + }, + { + "name": "attachment_path", + "type": "NodePath", + "default_value": "NodePath(\"\")" + } + ] + }, + { + "name": "is_point_pinned", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_ray_pickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ray_pickable", + "type": "bool" + } + ] + }, + { + "name": "is_ray_pickable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "collision_layer", + "setter": "set_collision_layer", + "getter": "get_collision_layer", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "NodePath", + "name": "parent_collision_ignore", + "setter": "set_parent_collision_ignore", + "getter": "get_parent_collision_ignore", + "index": -1 + }, + { + "type": "int", + "name": "simulation_precision", + "setter": "set_simulation_precision", + "getter": "get_simulation_precision", + "index": -1 + }, + { + "type": "float", + "name": "total_mass", + "setter": "set_total_mass", + "getter": "get_total_mass", + "index": -1 + }, + { + "type": "float", + "name": "linear_stiffness", + "setter": "set_linear_stiffness", + "getter": "get_linear_stiffness", + "index": -1 + }, + { + "type": "float", + "name": "pressure_coefficient", + "setter": "set_pressure_coefficient", + "getter": "get_pressure_coefficient", + "index": -1 + }, + { + "type": "float", + "name": "damping_coefficient", + "setter": "set_damping_coefficient", + "getter": "get_damping_coefficient", + "index": -1 + }, + { + "type": "float", + "name": "drag_coefficient", + "setter": "set_drag_coefficient", + "getter": "get_drag_coefficient", + "index": -1 + }, + { + "type": "bool", + "name": "ray_pickable", + "setter": "set_ray_pickable", + "getter": "is_ray_pickable", + "index": -1 + }, + { + "type": "int", + "name": "disable_mode", + "setter": "set_disable_mode", + "getter": "get_disable_mode", + "index": -1 + } + ] + }, + { + "name": "SphereMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radial_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radial_segments", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_radial_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_is_hemisphere", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "is_hemisphere", + "type": "bool" + } + ] + }, + { + "name": "get_is_hemisphere", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "height", + "setter": "set_height", + "getter": "get_height", + "index": -1 + }, + { + "type": "int", + "name": "radial_segments", + "setter": "set_radial_segments", + "getter": "get_radial_segments", + "index": -1 + }, + { + "type": "int", + "name": "rings", + "setter": "set_rings", + "getter": "get_rings", + "index": -1 + }, + { + "type": "bool", + "name": "is_hemisphere", + "setter": "set_is_hemisphere", + "getter": "get_is_hemisphere", + "index": -1 + } + ] + }, + { + "name": "SphereOccluder3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Occluder3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "SphereShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + } + ] + }, + { + "name": "SpinBox", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Range", + "api_type": "core", + "methods": [ + { + "name": "set_horizontal_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_horizontal_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "set_suffix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "suffix", + "type": "String" + } + ] + }, + { + "name": "get_suffix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_prefix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "prefix", + "type": "String" + } + ] + }, + { + "name": "get_prefix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_editable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_on_text_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_update_on_text_changed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "apply", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_line_edit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "LineEdit" + } + } + ], + "properties": [ + { + "type": "int", + "name": "alignment", + "setter": "set_horizontal_alignment", + "getter": "get_horizontal_alignment", + "index": -1 + }, + { + "type": "bool", + "name": "editable", + "setter": "set_editable", + "getter": "is_editable", + "index": -1 + }, + { + "type": "bool", + "name": "update_on_text_changed", + "setter": "set_update_on_text_changed", + "getter": "get_update_on_text_changed", + "index": -1 + }, + { + "type": "String", + "name": "prefix", + "setter": "set_prefix", + "getter": "get_prefix", + "index": -1 + }, + { + "type": "String", + "name": "suffix", + "setter": "set_suffix", + "getter": "get_suffix", + "index": -1 + } + ] + }, + { + "name": "SplitContainer", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Container", + "api_type": "core", + "enums": [ + { + "name": "DraggerVisibility", + "values": [ + { + "name": "DRAGGER_VISIBLE", + "value": 0 + }, + { + "name": "DRAGGER_HIDDEN", + "value": 1 + }, + { + "name": "DRAGGER_HIDDEN_COLLAPSED", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_split_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_split_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "clamp_split_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_collapsed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collapsed", + "type": "bool" + } + ] + }, + { + "name": "is_collapsed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_dragger_visibility", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::SplitContainer.DraggerVisibility" + } + ] + }, + { + "name": "get_dragger_visibility", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::SplitContainer.DraggerVisibility" + } + } + ], + "signals": [ + { + "name": "dragged", + "arguments": [ + { + "name": "offset", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "split_offset", + "setter": "set_split_offset", + "getter": "get_split_offset", + "index": -1 + }, + { + "type": "bool", + "name": "collapsed", + "setter": "set_collapsed", + "getter": "is_collapsed", + "index": -1 + }, + { + "type": "int", + "name": "dragger_visibility", + "setter": "set_dragger_visibility", + "getter": "get_dragger_visibility", + "index": -1 + } + ] + }, + { + "name": "SpotLight3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Light3D", + "api_type": "core", + "properties": [ + { + "type": "float", + "name": "spot_range", + "setter": "set_param", + "getter": "get_param", + "index": 3 + }, + { + "type": "float", + "name": "spot_attenuation", + "setter": "set_param", + "getter": "get_param", + "index": 5 + }, + { + "type": "float", + "name": "spot_angle", + "setter": "set_param", + "getter": "get_param", + "index": 6 + }, + { + "type": "float", + "name": "spot_angle_attenuation", + "setter": "set_param", + "getter": "get_param", + "index": 7 + } + ] + }, + { + "name": "SpringArm3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "get_hit_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Shape3D" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shape3D" + } + }, + { + "name": "add_excluded_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "RID", + "type": "RID" + } + ] + }, + { + "name": "remove_excluded_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "RID", + "type": "RID" + } + ] + }, + { + "name": "clear_excluded_objects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Shape3D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "float", + "name": "spring_length", + "setter": "set_length", + "getter": "get_length", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + } + ] + }, + { + "name": "Sprite2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_centered", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "centered", + "type": "bool" + } + ] + }, + { + "name": "is_centered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_flip_h", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_h", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_h", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_v", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_region_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_region_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_pixel_opaque", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "pos", + "type": "Vector2" + } + ] + }, + { + "name": "set_region_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_region_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_region_filter_clip_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_region_filter_clip_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_frame_coords", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_frame_coords", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_vframes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vframes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_vframes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_hframes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hframes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_hframes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + } + ], + "signals": [ + { + "name": "frame_changed" + }, + { + "name": "texture_changed" + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "bool", + "name": "centered", + "setter": "set_centered", + "getter": "is_centered", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "bool", + "name": "flip_h", + "setter": "set_flip_h", + "getter": "is_flipped_h", + "index": -1 + }, + { + "type": "bool", + "name": "flip_v", + "setter": "set_flip_v", + "getter": "is_flipped_v", + "index": -1 + }, + { + "type": "int", + "name": "hframes", + "setter": "set_hframes", + "getter": "get_hframes", + "index": -1 + }, + { + "type": "int", + "name": "vframes", + "setter": "set_vframes", + "getter": "get_vframes", + "index": -1 + }, + { + "type": "int", + "name": "frame", + "setter": "set_frame", + "getter": "get_frame", + "index": -1 + }, + { + "type": "Vector2i", + "name": "frame_coords", + "setter": "set_frame_coords", + "getter": "get_frame_coords", + "index": -1 + }, + { + "type": "bool", + "name": "region_enabled", + "setter": "set_region_enabled", + "getter": "is_region_enabled", + "index": -1 + }, + { + "type": "Rect2", + "name": "region_rect", + "setter": "set_region_rect", + "getter": "get_region_rect", + "index": -1 + }, + { + "type": "bool", + "name": "region_filter_clip_enabled", + "setter": "set_region_filter_clip_enabled", + "getter": "is_region_filter_clip_enabled", + "index": -1 + } + ] + }, + { + "name": "Sprite3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "SpriteBase3D", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_region_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_region_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_region_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_region_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_frame_coords", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_frame_coords", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_vframes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vframes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_vframes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_hframes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hframes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_hframes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "signals": [ + { + "name": "frame_changed" + }, + { + "name": "texture_changed" + } + ], + "properties": [ + { + "type": "Texture", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "int", + "name": "hframes", + "setter": "set_hframes", + "getter": "get_hframes", + "index": -1 + }, + { + "type": "int", + "name": "vframes", + "setter": "set_vframes", + "getter": "get_vframes", + "index": -1 + }, + { + "type": "int", + "name": "frame", + "setter": "set_frame", + "getter": "get_frame", + "index": -1 + }, + { + "type": "Vector2", + "name": "frame_coords", + "setter": "set_frame_coords", + "getter": "get_frame_coords", + "index": -1 + }, + { + "type": "bool", + "name": "region_enabled", + "setter": "set_region_enabled", + "getter": "is_region_enabled", + "index": -1 + }, + { + "type": "Rect2", + "name": "region_rect", + "setter": "set_region_rect", + "getter": "get_region_rect", + "index": -1 + } + ] + }, + { + "name": "SpriteBase3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "GeometryInstance3D", + "api_type": "core", + "enums": [ + { + "name": "DrawFlags", + "values": [ + { + "name": "FLAG_TRANSPARENT", + "value": 0 + }, + { + "name": "FLAG_SHADED", + "value": 1 + }, + { + "name": "FLAG_DOUBLE_SIDED", + "value": 2 + }, + { + "name": "FLAG_DISABLE_DEPTH_TEST", + "value": 3 + }, + { + "name": "FLAG_FIXED_SIZE", + "value": 4 + }, + { + "name": "FLAG_MAX", + "value": 5 + } + ] + }, + { + "name": "AlphaCutMode", + "values": [ + { + "name": "ALPHA_CUT_DISABLED", + "value": 0 + }, + { + "name": "ALPHA_CUT_DISCARD", + "value": 1 + }, + { + "name": "ALPHA_CUT_OPAQUE_PREPASS", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_centered", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "centered", + "type": "bool" + } + ] + }, + { + "name": "is_centered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_flip_h", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_h", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_h", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_v", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_render_priority", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "priority", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_render_priority", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_pixel_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixel_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pixel_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_axis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "axis", + "type": "enum::Vector3.Axis" + } + ] + }, + { + "name": "get_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Vector3.Axis" + } + }, + { + "name": "set_draw_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::SpriteBase3D.DrawFlags" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_draw_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::SpriteBase3D.DrawFlags" + } + ] + }, + { + "name": "set_alpha_cut_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::SpriteBase3D.AlphaCutMode" + } + ] + }, + { + "name": "get_alpha_cut_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::SpriteBase3D.AlphaCutMode" + } + }, + { + "name": "set_billboard_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.BillboardMode" + } + ] + }, + { + "name": "get_billboard_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.BillboardMode" + } + }, + { + "name": "set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::BaseMaterial3D.TextureFilter" + } + ] + }, + { + "name": "get_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::BaseMaterial3D.TextureFilter" + } + }, + { + "name": "get_item_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "generate_triangle_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TriangleMesh" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "centered", + "setter": "set_centered", + "getter": "is_centered", + "index": -1 + }, + { + "type": "Vector2", + "name": "offset", + "setter": "set_offset", + "getter": "get_offset", + "index": -1 + }, + { + "type": "bool", + "name": "flip_h", + "setter": "set_flip_h", + "getter": "is_flipped_h", + "index": -1 + }, + { + "type": "bool", + "name": "flip_v", + "setter": "set_flip_v", + "getter": "is_flipped_v", + "index": -1 + }, + { + "type": "Color", + "name": "modulate", + "setter": "set_modulate", + "getter": "get_modulate", + "index": -1 + }, + { + "type": "float", + "name": "pixel_size", + "setter": "set_pixel_size", + "getter": "get_pixel_size", + "index": -1 + }, + { + "type": "int", + "name": "axis", + "setter": "set_axis", + "getter": "get_axis", + "index": -1 + }, + { + "type": "int", + "name": "billboard", + "setter": "set_billboard_mode", + "getter": "get_billboard_mode", + "index": -1 + }, + { + "type": "bool", + "name": "transparent", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 0 + }, + { + "type": "bool", + "name": "shaded", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 1 + }, + { + "type": "bool", + "name": "double_sided", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 2 + }, + { + "type": "bool", + "name": "no_depth_test", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 3 + }, + { + "type": "bool", + "name": "fixed_size", + "setter": "set_draw_flag", + "getter": "get_draw_flag", + "index": 4 + }, + { + "type": "int", + "name": "alpha_cut", + "setter": "set_alpha_cut_mode", + "getter": "get_alpha_cut_mode", + "index": -1 + }, + { + "type": "int", + "name": "texture_filter", + "setter": "set_texture_filter", + "getter": "get_texture_filter", + "index": -1 + }, + { + "type": "int", + "name": "render_priority", + "setter": "set_render_priority", + "getter": "get_render_priority", + "index": -1 + } + ] + }, + { + "name": "SpriteFrames", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "add_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "has_animation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "remove_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "rename_animation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "newname", + "type": "StringName" + } + ] + }, + { + "name": "get_animation_names", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_animation_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "speed", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_animation_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "set_animation_loop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "loop", + "type": "bool" + } + ] + }, + { + "name": "get_animation_loop", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "add_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "frame", + "type": "Texture2D" + }, + { + "name": "at_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_frame_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "get_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + }, + { + "name": "txt", + "type": "Texture2D" + } + ] + }, + { + "name": "remove_frame", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "anim", + "type": "StringName" + }, + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anim", + "type": "StringName" + } + ] + }, + { + "name": "clear_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "Array", + "name": "frames", + "setter": "_set_frames", + "getter": "_get_frames", + "index": -1 + }, + { + "type": "Array", + "name": "animations", + "setter": "_set_animations", + "getter": "_get_animations", + "index": -1 + } + ] + }, + { + "name": "StandardMaterial3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "BaseMaterial3D", + "api_type": "core" + }, + { + "name": "StaticBody2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody2D", + "api_type": "core", + "methods": [ + { + "name": "set_constant_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vel", + "type": "Vector2" + } + ] + }, + { + "name": "set_constant_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vel", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constant_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_constant_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_physics_material_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physics_material_override", + "type": "PhysicsMaterial" + } + ] + }, + { + "name": "get_physics_material_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PhysicsMaterial" + } + } + ], + "properties": [ + { + "type": "PhysicsMaterial", + "name": "physics_material_override", + "setter": "set_physics_material_override", + "getter": "get_physics_material_override", + "index": -1 + }, + { + "type": "Vector2", + "name": "constant_linear_velocity", + "setter": "set_constant_linear_velocity", + "getter": "get_constant_linear_velocity", + "index": -1 + }, + { + "type": "float", + "name": "constant_angular_velocity", + "setter": "set_constant_angular_velocity", + "getter": "get_constant_angular_velocity", + "index": -1 + } + ] + }, + { + "name": "StaticBody3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "PhysicsBody3D", + "api_type": "core", + "methods": [ + { + "name": "set_constant_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vel", + "type": "Vector3" + } + ] + }, + { + "name": "set_constant_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vel", + "type": "Vector3" + } + ] + }, + { + "name": "get_constant_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_constant_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_physics_material_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "physics_material_override", + "type": "PhysicsMaterial" + } + ] + }, + { + "name": "get_physics_material_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PhysicsMaterial" + } + } + ], + "properties": [ + { + "type": "PhysicsMaterial", + "name": "physics_material_override", + "setter": "set_physics_material_override", + "getter": "get_physics_material_override", + "index": -1 + }, + { + "type": "Vector3", + "name": "constant_linear_velocity", + "setter": "set_constant_linear_velocity", + "getter": "get_constant_linear_velocity", + "index": -1 + }, + { + "type": "Vector3", + "name": "constant_angular_velocity", + "setter": "set_constant_angular_velocity", + "getter": "get_constant_angular_velocity", + "index": -1 + } + ] + }, + { + "name": "StreamPeer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "put_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "put_partial_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "bytes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_partial_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "bytes", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_available_bytes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_big_endian", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_big_endian_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "put_8", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int8" + } + ] + }, + { + "name": "put_u8", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint8" + } + ] + }, + { + "name": "put_16", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int16" + } + ] + }, + { + "name": "put_u16", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint16" + } + ] + }, + { + "name": "put_32", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "put_u32", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "put_64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "put_u64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "put_float", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "put_double", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "put_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "put_utf8_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "String" + } + ] + }, + { + "name": "put_var", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "value", + "type": "Variant" + }, + { + "name": "full_objects", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_8", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int8" + } + }, + { + "name": "get_u8", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint8" + } + }, + { + "name": "get_16", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int16" + } + }, + { + "name": "get_u16", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "get_32", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_u32", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "get_u64", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_float", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_double", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204402, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "bytes", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_utf8_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204402, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "bytes", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_var", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "allow_objects", + "type": "bool", + "default_value": "false" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "big_endian", + "setter": "set_big_endian", + "getter": "is_big_endian_enabled", + "index": -1 + } + ] + }, + { + "name": "StreamPeerBuffer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StreamPeer", + "api_type": "core", + "methods": [ + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "resize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_data_array", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "get_data_array", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "duplicate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StreamPeerBuffer" + } + } + ], + "properties": [ + { + "type": "PackedByteArray", + "name": "data_array", + "setter": "set_data_array", + "getter": "get_data_array", + "index": -1 + } + ] + }, + { + "name": "StreamPeerExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StreamPeer", + "api_type": "core", + "methods": [ + { + "name": "_get_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "r_buffer", + "type": "uint8_t*" + }, + { + "name": "r_bytes", + "type": "int" + }, + { + "name": "r_received", + "type": "int32_t*" + } + ] + }, + { + "name": "_get_partial_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "r_buffer", + "type": "uint8_t*" + }, + { + "name": "r_bytes", + "type": "int" + }, + { + "name": "r_received", + "type": "int32_t*" + } + ] + }, + { + "name": "_put_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_data", + "type": "const uint8_t*" + }, + { + "name": "p_bytes", + "type": "int" + }, + { + "name": "r_sent", + "type": "int32_t*" + } + ] + }, + { + "name": "_put_partial_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_data", + "type": "const uint8_t*" + }, + { + "name": "p_bytes", + "type": "int" + }, + { + "name": "r_sent", + "type": "int32_t*" + } + ] + }, + { + "name": "_get_available_bytes", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + } + ] + }, + { + "name": "StreamPeerSSL", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StreamPeer", + "api_type": "core", + "enums": [ + { + "name": "Status", + "values": [ + { + "name": "STATUS_DISCONNECTED", + "value": 0 + }, + { + "name": "STATUS_HANDSHAKING", + "value": 1 + }, + { + "name": "STATUS_CONNECTED", + "value": 2 + }, + { + "name": "STATUS_ERROR", + "value": 3 + }, + { + "name": "STATUS_ERROR_HOSTNAME_MISMATCH", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "accept_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "stream", + "type": "StreamPeer" + }, + { + "name": "private_key", + "type": "CryptoKey" + }, + { + "name": "certificate", + "type": "X509Certificate" + }, + { + "name": "chain", + "type": "X509Certificate", + "default_value": "null" + } + ] + }, + { + "name": "connect_to_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2738288146, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "stream", + "type": "StreamPeer" + }, + { + "name": "validate_certs", + "type": "bool", + "default_value": "false" + }, + { + "name": "for_hostname", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "valid_certificate", + "type": "X509Certificate", + "default_value": "null" + } + ] + }, + { + "name": "get_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::StreamPeerSSL.Status" + } + }, + { + "name": "get_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StreamPeer" + } + }, + { + "name": "disconnect_from_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_blocking_handshake_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_blocking_handshake_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "blocking_handshake", + "setter": "set_blocking_handshake_enabled", + "getter": "is_blocking_handshake_enabled", + "index": -1 + } + ] + }, + { + "name": "StreamPeerTCP", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StreamPeer", + "api_type": "core", + "enums": [ + { + "name": "Status", + "values": [ + { + "name": "STATUS_NONE", + "value": 0 + }, + { + "name": "STATUS_CONNECTING", + "value": 1 + }, + { + "name": "STATUS_CONNECTED", + "value": 2 + }, + { + "name": "STATUS_ERROR", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "bind", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "host", + "type": "String", + "default_value": "\"*\"" + } + ] + }, + { + "name": "connect_to_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "host", + "type": "String" + }, + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "get_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::StreamPeerTCP.Status" + } + }, + { + "name": "get_connected_host", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_connected_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_local_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "disconnect_from_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_no_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + } + ] + }, + { + "name": "StyleBox", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_get_style_margin", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "side", + "type": "enum::Side" + } + ] + }, + { + "name": "_test_mask", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "_get_center_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "_get_draw_rect", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "_draw", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "to_canvas_item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "test_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "set_default_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_default_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "get_minimum_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_center_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_current_item_drawn", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CanvasItem" + } + }, + { + "name": "draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224136, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "content_margin_left", + "setter": "set_default_margin", + "getter": "get_default_margin", + "index": 0 + }, + { + "type": "float", + "name": "content_margin_top", + "setter": "set_default_margin", + "getter": "get_default_margin", + "index": 1 + }, + { + "type": "float", + "name": "content_margin_right", + "setter": "set_default_margin", + "getter": "get_default_margin", + "index": 2 + }, + { + "type": "float", + "name": "content_margin_bottom", + "setter": "set_default_margin", + "getter": "get_default_margin", + "index": 3 + } + ] + }, + { + "name": "StyleBoxEmpty", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StyleBox", + "api_type": "core" + }, + { + "name": "StyleBoxFlat", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StyleBox", + "api_type": "core", + "methods": [ + { + "name": "set_bg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_bg_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_border_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_border_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_border_width_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_border_width_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_border_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_border_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_border_blend", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "blend", + "type": "bool" + } + ] + }, + { + "name": "get_border_blend", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_corner_radius_individual", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "radius_top_left", + "type": "int", + "meta": "int32" + }, + { + "name": "radius_top_right", + "type": "int", + "meta": "int32" + }, + { + "name": "radius_bottom_right", + "type": "int", + "meta": "int32" + }, + { + "name": "radius_bottom_left", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_corner_radius_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_corner_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "corner", + "type": "enum::Corner" + }, + { + "name": "radius", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_corner_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "corner", + "type": "enum::Corner" + } + ] + }, + { + "name": "set_expand_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_expand_margin_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_expand_margin_individual", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "size_left", + "type": "float", + "meta": "float" + }, + { + "name": "size_top", + "type": "float", + "meta": "float" + }, + { + "name": "size_right", + "type": "float", + "meta": "float" + }, + { + "name": "size_bottom", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_expand_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_draw_center", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "draw_center", + "type": "bool" + } + ] + }, + { + "name": "is_draw_center_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_skew", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "skew", + "type": "Vector2" + } + ] + }, + { + "name": "get_skew", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_shadow_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_shadow_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_shadow_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_shadow_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_shadow_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_shadow_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_anti_aliased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "anti_aliased", + "type": "bool" + } + ] + }, + { + "name": "is_anti_aliased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_aa_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_aa_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_corner_detail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "detail", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_corner_detail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "bg_color", + "setter": "set_bg_color", + "getter": "get_bg_color", + "index": -1 + }, + { + "type": "bool", + "name": "draw_center", + "setter": "set_draw_center", + "getter": "is_draw_center_enabled", + "index": -1 + }, + { + "type": "Vector2", + "name": "skew", + "setter": "set_skew", + "getter": "get_skew", + "index": -1 + }, + { + "type": "int", + "name": "border_width_left", + "setter": "set_border_width", + "getter": "get_border_width", + "index": 0 + }, + { + "type": "int", + "name": "border_width_top", + "setter": "set_border_width", + "getter": "get_border_width", + "index": 1 + }, + { + "type": "int", + "name": "border_width_right", + "setter": "set_border_width", + "getter": "get_border_width", + "index": 2 + }, + { + "type": "int", + "name": "border_width_bottom", + "setter": "set_border_width", + "getter": "get_border_width", + "index": 3 + }, + { + "type": "Color", + "name": "border_color", + "setter": "set_border_color", + "getter": "get_border_color", + "index": -1 + }, + { + "type": "bool", + "name": "border_blend", + "setter": "set_border_blend", + "getter": "get_border_blend", + "index": -1 + }, + { + "type": "int", + "name": "corner_radius_top_left", + "setter": "set_corner_radius", + "getter": "get_corner_radius", + "index": 0 + }, + { + "type": "int", + "name": "corner_radius_top_right", + "setter": "set_corner_radius", + "getter": "get_corner_radius", + "index": 1 + }, + { + "type": "int", + "name": "corner_radius_bottom_right", + "setter": "set_corner_radius", + "getter": "get_corner_radius", + "index": 2 + }, + { + "type": "int", + "name": "corner_radius_bottom_left", + "setter": "set_corner_radius", + "getter": "get_corner_radius", + "index": 3 + }, + { + "type": "int", + "name": "corner_detail", + "setter": "set_corner_detail", + "getter": "get_corner_detail", + "index": -1 + }, + { + "type": "float", + "name": "expand_margin_left", + "setter": "set_expand_margin", + "getter": "get_expand_margin", + "index": 0 + }, + { + "type": "float", + "name": "expand_margin_top", + "setter": "set_expand_margin", + "getter": "get_expand_margin", + "index": 1 + }, + { + "type": "float", + "name": "expand_margin_right", + "setter": "set_expand_margin", + "getter": "get_expand_margin", + "index": 2 + }, + { + "type": "float", + "name": "expand_margin_bottom", + "setter": "set_expand_margin", + "getter": "get_expand_margin", + "index": 3 + }, + { + "type": "Color", + "name": "shadow_color", + "setter": "set_shadow_color", + "getter": "get_shadow_color", + "index": -1 + }, + { + "type": "int", + "name": "shadow_size", + "setter": "set_shadow_size", + "getter": "get_shadow_size", + "index": -1 + }, + { + "type": "Vector2", + "name": "shadow_offset", + "setter": "set_shadow_offset", + "getter": "get_shadow_offset", + "index": -1 + }, + { + "type": "bool", + "name": "anti_aliasing", + "setter": "set_anti_aliased", + "getter": "is_anti_aliased", + "index": -1 + }, + { + "type": "float", + "name": "anti_aliasing_size", + "setter": "set_aa_size", + "getter": "get_aa_size", + "index": -1 + } + ] + }, + { + "name": "StyleBoxLine", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StyleBox", + "api_type": "core", + "methods": [ + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_thickness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "thickness", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_grow_begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_grow_begin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_grow_end", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_grow_end", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_vertical", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertical", + "type": "bool" + } + ] + }, + { + "name": "is_vertical", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "color", + "setter": "set_color", + "getter": "get_color", + "index": -1 + }, + { + "type": "float", + "name": "grow_begin", + "setter": "set_grow_begin", + "getter": "get_grow_begin", + "index": -1 + }, + { + "type": "float", + "name": "grow_end", + "setter": "set_grow_end", + "getter": "get_grow_end", + "index": -1 + }, + { + "type": "int", + "name": "thickness", + "setter": "set_thickness", + "getter": "get_thickness", + "index": -1 + }, + { + "type": "bool", + "name": "vertical", + "setter": "set_vertical", + "getter": "is_vertical", + "index": -1 + } + ] + }, + { + "name": "StyleBoxTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "StyleBox", + "api_type": "core", + "enums": [ + { + "name": "AxisStretchMode", + "values": [ + { + "name": "AXIS_STRETCH_MODE_STRETCH", + "value": 0 + }, + { + "name": "AXIS_STRETCH_MODE_TILE", + "value": 1 + }, + { + "name": "AXIS_STRETCH_MODE_TILE_FIT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_margin_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_expand_margin_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_expand_margin_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_expand_margin_individual", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "size_left", + "type": "float", + "meta": "float" + }, + { + "name": "size_top", + "type": "float", + "meta": "float" + }, + { + "name": "size_right", + "type": "float", + "meta": "float" + }, + { + "name": "size_bottom", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_expand_margin_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_region_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "region", + "type": "Rect2" + } + ] + }, + { + "name": "get_region_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_draw_center", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_draw_center_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_h_axis_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::StyleBoxTexture.AxisStretchMode" + } + ] + }, + { + "name": "get_h_axis_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::StyleBoxTexture.AxisStretchMode" + } + }, + { + "name": "set_v_axis_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::StyleBoxTexture.AxisStretchMode" + } + ] + }, + { + "name": "get_v_axis_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::StyleBoxTexture.AxisStretchMode" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "float", + "name": "margin_left", + "setter": "set_margin_size", + "getter": "get_margin_size", + "index": 0 + }, + { + "type": "float", + "name": "margin_top", + "setter": "set_margin_size", + "getter": "get_margin_size", + "index": 1 + }, + { + "type": "float", + "name": "margin_right", + "setter": "set_margin_size", + "getter": "get_margin_size", + "index": 2 + }, + { + "type": "float", + "name": "margin_bottom", + "setter": "set_margin_size", + "getter": "get_margin_size", + "index": 3 + }, + { + "type": "float", + "name": "expand_margin_left", + "setter": "set_expand_margin_size", + "getter": "get_expand_margin_size", + "index": 0 + }, + { + "type": "float", + "name": "expand_margin_top", + "setter": "set_expand_margin_size", + "getter": "get_expand_margin_size", + "index": 1 + }, + { + "type": "float", + "name": "expand_margin_right", + "setter": "set_expand_margin_size", + "getter": "get_expand_margin_size", + "index": 2 + }, + { + "type": "float", + "name": "expand_margin_bottom", + "setter": "set_expand_margin_size", + "getter": "get_expand_margin_size", + "index": 3 + }, + { + "type": "int", + "name": "axis_stretch_horizontal", + "setter": "set_h_axis_stretch_mode", + "getter": "get_h_axis_stretch_mode", + "index": -1 + }, + { + "type": "int", + "name": "axis_stretch_vertical", + "setter": "set_v_axis_stretch_mode", + "getter": "get_v_axis_stretch_mode", + "index": -1 + }, + { + "type": "Rect2", + "name": "region_rect", + "setter": "set_region_rect", + "getter": "get_region_rect", + "index": -1 + }, + { + "type": "Color", + "name": "modulate_color", + "setter": "set_modulate", + "getter": "get_modulate", + "index": -1 + }, + { + "type": "bool", + "name": "draw_center", + "setter": "set_draw_center", + "getter": "is_draw_center_enabled", + "index": -1 + } + ] + }, + { + "name": "SubViewport", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Viewport", + "api_type": "core", + "enums": [ + { + "name": "ClearMode", + "values": [ + { + "name": "CLEAR_MODE_ALWAYS", + "value": 0 + }, + { + "name": "CLEAR_MODE_NEVER", + "value": 1 + }, + { + "name": "CLEAR_MODE_ONCE", + "value": 2 + } + ] + }, + { + "name": "UpdateMode", + "values": [ + { + "name": "UPDATE_DISABLED", + "value": 0 + }, + { + "name": "UPDATE_ONCE", + "value": 1 + }, + { + "name": "UPDATE_WHEN_VISIBLE", + "value": 2 + }, + { + "name": "UPDATE_WHEN_PARENT_VISIBLE", + "value": 3 + }, + { + "name": "UPDATE_ALWAYS", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_size_2d_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_size_2d_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_size_2d_override_stretch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_size_2d_override_stretch_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::SubViewport.UpdateMode" + } + ] + }, + { + "name": "get_update_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::SubViewport.UpdateMode" + } + }, + { + "name": "set_clear_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::SubViewport.ClearMode" + } + ] + }, + { + "name": "get_clear_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::SubViewport.ClearMode" + } + } + ], + "properties": [ + { + "type": "Vector2i", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "Vector2i", + "name": "size_2d_override", + "setter": "set_size_2d_override", + "getter": "get_size_2d_override", + "index": -1 + }, + { + "type": "bool", + "name": "size_2d_override_stretch", + "setter": "set_size_2d_override_stretch", + "getter": "is_size_2d_override_stretch_enabled", + "index": -1 + }, + { + "type": "int", + "name": "render_target_clear_mode", + "setter": "set_clear_mode", + "getter": "get_clear_mode", + "index": -1 + }, + { + "type": "int", + "name": "render_target_update_mode", + "setter": "set_update_mode", + "getter": "get_update_mode", + "index": -1 + } + ] + }, + { + "name": "SubViewportContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "methods": [ + { + "name": "set_stretch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_stretch_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_stretch_shrink", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_stretch_shrink", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "stretch", + "setter": "set_stretch", + "getter": "is_stretch_enabled", + "index": -1 + }, + { + "type": "int", + "name": "stretch_shrink", + "setter": "set_stretch_shrink", + "getter": "get_stretch_shrink", + "index": -1 + } + ] + }, + { + "name": "SurfaceTool", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "CustomFormat", + "values": [ + { + "name": "CUSTOM_RGBA8_UNORM", + "value": 0 + }, + { + "name": "CUSTOM_RGBA8_SNORM", + "value": 1 + }, + { + "name": "CUSTOM_RG_HALF", + "value": 2 + }, + { + "name": "CUSTOM_RGBA_HALF", + "value": 3 + }, + { + "name": "CUSTOM_R_FLOAT", + "value": 4 + }, + { + "name": "CUSTOM_RG_FLOAT", + "value": 5 + }, + { + "name": "CUSTOM_RGB_FLOAT", + "value": 6 + }, + { + "name": "CUSTOM_RGBA_FLOAT", + "value": 7 + }, + { + "name": "CUSTOM_MAX", + "value": 8 + } + ] + }, + { + "name": "SkinWeightCount", + "values": [ + { + "name": "SKIN_4_WEIGHTS", + "value": 0 + }, + { + "name": "SKIN_8_WEIGHTS", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_skin_weight_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "enum::SurfaceTool.SkinWeightCount" + } + ] + }, + { + "name": "get_skin_weight_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::SurfaceTool.SkinWeightCount" + } + }, + { + "name": "set_custom_format", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "format", + "type": "enum::SurfaceTool.CustomFormat" + } + ] + }, + { + "name": "get_custom_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::SurfaceTool.CustomFormat" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "begin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "primitive", + "type": "enum::Mesh.PrimitiveType" + } + ] + }, + { + "name": "add_vertex", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "vertex", + "type": "Vector3" + } + ] + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "set_normal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal", + "type": "Vector3" + } + ] + }, + { + "name": "set_tangent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tangent", + "type": "Plane" + } + ] + }, + { + "name": "set_uv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uv", + "type": "Vector2" + } + ] + }, + { + "name": "set_uv2", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uv2", + "type": "Vector2" + } + ] + }, + { + "name": "set_bones", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bones", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "set_weights", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "weights", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "set_custom", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "custom", + "type": "Color" + } + ] + }, + { + "name": "set_smooth_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "add_triangle_fan", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1486656780, + "arguments": [ + { + "name": "vertices", + "type": "PackedVector3Array" + }, + { + "name": "uvs", + "type": "PackedVector2Array", + "default_value": "PackedVector2Array()" + }, + { + "name": "colors", + "type": "PackedColorArray", + "default_value": "PackedColorArray()" + }, + { + "name": "uv2s", + "type": "PackedVector2Array", + "default_value": "PackedVector2Array()" + }, + { + "name": "normals", + "type": "PackedVector3Array", + "default_value": "PackedVector3Array()" + }, + { + "name": "tangents", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "add_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "deindex", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "generate_normals", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133278119, + "arguments": [ + { + "name": "flip", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "generate_tangents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "optimize_indices_for_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_max_axis_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "generate_lod", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "nd_threshold", + "type": "float", + "meta": "float" + }, + { + "name": "target_index_count", + "type": "int", + "meta": "int32", + "default_value": "3" + } + ] + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "Material" + } + ] + }, + { + "name": "get_primitive", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Mesh.PrimitiveType" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "existing", + "type": "Mesh" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "create_from_blend_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "existing", + "type": "Mesh" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "blend_shape", + "type": "String" + } + ] + }, + { + "name": "append_from", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "existing", + "type": "Mesh" + }, + { + "name": "surface", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "commit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3852883413, + "return_value": { + "type": "ArrayMesh" + }, + "arguments": [ + { + "name": "existing", + "type": "ArrayMesh", + "default_value": "null" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32", + "default_value": "0" + } + ] + }, + { + "name": "commit_to_arrays", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "SyntaxHighlighter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_get_line_syntax_highlighting", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "line", + "type": "int" + } + ] + }, + { + "name": "_clear_highlighting_cache", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_update_cache", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "get_line_syntax_highlighting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "update_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_highlighting_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_text_edit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "TextEdit" + } + } + ] + }, + { + "name": "TCPServer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "listen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "uint16" + }, + { + "name": "bind_address", + "type": "String", + "default_value": "\"*\"" + } + ] + }, + { + "name": "is_connection_available", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_listening", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_local_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "take_connection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "StreamPeerTCP" + } + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "TabBar", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "AlignmentMode", + "values": [ + { + "name": "ALIGNMENT_LEFT", + "value": 0 + }, + { + "name": "ALIGNMENT_CENTER", + "value": 1 + }, + { + "name": "ALIGNMENT_RIGHT", + "value": 2 + }, + { + "name": "ALIGNMENT_MAX", + "value": 3 + } + ] + }, + { + "name": "CloseButtonDisplayPolicy", + "values": [ + { + "name": "CLOSE_BUTTON_SHOW_NEVER", + "value": 0 + }, + { + "name": "CLOSE_BUTTON_SHOW_ACTIVE_ONLY", + "value": 1 + }, + { + "name": "CLOSE_BUTTON_SHOW_ALWAYS", + "value": 2 + }, + { + "name": "CLOSE_BUTTON_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_tab_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tab_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_current_tab", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_tab", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_previous_tab", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_tab_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_tab_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_tab_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Control.TextDirection" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + }, + { + "name": "values", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tab_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_tab_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_tab_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_tab_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_button_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_tab_button_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_tab_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_hidden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "hidden", + "type": "bool" + } + ] + }, + { + "name": "is_tab_hidden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_tab", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_tab", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 530285939, + "arguments": [ + { + "name": "title", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "icon", + "type": "Texture2D", + "default_value": "null" + } + ] + }, + { + "name": "get_tab_idx_at_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "set_tab_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::TabBar.AlignmentMode" + } + ] + }, + { + "name": "get_tab_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TabBar.AlignmentMode" + } + }, + { + "name": "set_clip_tabs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clip_tabs", + "type": "bool" + } + ] + }, + { + "name": "get_clip_tabs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_tab_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_offset_buttons_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "ensure_tab_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tab_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "move_tab", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from", + "type": "int", + "meta": "int32" + }, + { + "name": "to", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_close_display_policy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "policy", + "type": "enum::TabBar.CloseButtonDisplayPolicy" + } + ] + }, + { + "name": "get_tab_close_display_policy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TabBar.CloseButtonDisplayPolicy" + } + }, + { + "name": "set_max_tab_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_tab_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_scrolling_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_scrolling_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_drag_to_rearrange_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_drag_to_rearrange_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tabs_rearrange_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "group_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tabs_rearrange_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_scroll_to_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_scroll_to_selected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_select_with_rmb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_select_with_rmb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "tab_selected", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_changed", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_clicked", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_rmb_clicked", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_close_pressed", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_button_pressed", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_hovered", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "active_tab_rearranged", + "arguments": [ + { + "name": "idx_to", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "current_tab", + "setter": "set_current_tab", + "getter": "get_current_tab", + "index": -1 + }, + { + "type": "int", + "name": "tab_alignment", + "setter": "set_tab_alignment", + "getter": "get_tab_alignment", + "index": -1 + }, + { + "type": "bool", + "name": "clip_tabs", + "setter": "set_clip_tabs", + "getter": "get_clip_tabs", + "index": -1 + }, + { + "type": "int", + "name": "tab_close_display_policy", + "setter": "set_tab_close_display_policy", + "getter": "get_tab_close_display_policy", + "index": -1 + }, + { + "type": "int", + "name": "max_tab_width", + "setter": "set_max_tab_width", + "getter": "get_max_tab_width", + "index": -1 + }, + { + "type": "bool", + "name": "scrolling_enabled", + "setter": "set_scrolling_enabled", + "getter": "get_scrolling_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "drag_to_rearrange_enabled", + "setter": "set_drag_to_rearrange_enabled", + "getter": "get_drag_to_rearrange_enabled", + "index": -1 + }, + { + "type": "int", + "name": "tabs_rearrange_group", + "setter": "set_tabs_rearrange_group", + "getter": "get_tabs_rearrange_group", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_to_selected", + "setter": "set_scroll_to_selected", + "getter": "get_scroll_to_selected", + "index": -1 + }, + { + "type": "bool", + "name": "select_with_rmb", + "setter": "set_select_with_rmb", + "getter": "get_select_with_rmb", + "index": -1 + }, + { + "type": "Tabs,tab_", + "name": "tab_count", + "setter": "set_tab_count", + "getter": "get_tab_count", + "index": -1 + } + ] + }, + { + "name": "TabContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Container", + "api_type": "core", + "methods": [ + { + "name": "get_tab_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_current_tab", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_tab", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_previous_tab", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_current_tab_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Control" + } + }, + { + "name": "get_tab_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Control" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::TabBar.AlignmentMode" + } + ] + }, + { + "name": "get_tab_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TabBar.AlignmentMode" + } + }, + { + "name": "set_clip_tabs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "clip_tabs", + "type": "bool" + } + ] + }, + { + "name": "get_clip_tabs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tabs_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "are_tabs_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_all_tabs_in_front", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "is_front", + "type": "bool" + } + ] + }, + { + "name": "is_all_tabs_in_front", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tab_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_tab_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_tab_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_tab_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_hidden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "hidden", + "type": "bool" + } + ] + }, + { + "name": "is_tab_hidden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tab_button_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_tab_button_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "tab_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tab_idx_at_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "point", + "type": "Vector2" + } + ] + }, + { + "name": "get_tab_idx_from_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "control", + "type": "Control" + } + ] + }, + { + "name": "set_popup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "popup", + "type": "Node" + } + ] + }, + { + "name": "get_popup", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Popup" + } + }, + { + "name": "set_drag_to_rearrange_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_drag_to_rearrange_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_tabs_rearrange_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "group_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tabs_rearrange_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_use_hidden_tabs_for_min_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_use_hidden_tabs_for_min_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "tab_changed", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_selected", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "tab_button_pressed", + "arguments": [ + { + "name": "tab", + "type": "int" + } + ] + }, + { + "name": "pre_popup_pressed" + } + ], + "properties": [ + { + "type": "int", + "name": "tab_alignment", + "setter": "set_tab_alignment", + "getter": "get_tab_alignment", + "index": -1 + }, + { + "type": "int", + "name": "current_tab", + "setter": "set_current_tab", + "getter": "get_current_tab", + "index": -1 + }, + { + "type": "bool", + "name": "clip_tabs", + "setter": "set_clip_tabs", + "getter": "get_clip_tabs", + "index": -1 + }, + { + "type": "bool", + "name": "tabs_visible", + "setter": "set_tabs_visible", + "getter": "are_tabs_visible", + "index": -1 + }, + { + "type": "bool", + "name": "all_tabs_in_front", + "setter": "set_all_tabs_in_front", + "getter": "is_all_tabs_in_front", + "index": -1 + }, + { + "type": "bool", + "name": "drag_to_rearrange_enabled", + "setter": "set_drag_to_rearrange_enabled", + "getter": "get_drag_to_rearrange_enabled", + "index": -1 + }, + { + "type": "int", + "name": "tabs_rearrange_group", + "setter": "set_tabs_rearrange_group", + "getter": "get_tabs_rearrange_group", + "index": -1 + }, + { + "type": "bool", + "name": "use_hidden_tabs_for_min_size", + "setter": "set_use_hidden_tabs_for_min_size", + "getter": "get_use_hidden_tabs_for_min_size", + "index": -1 + } + ] + }, + { + "name": "TextEdit", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "MenuItems", + "values": [ + { + "name": "MENU_CUT", + "value": 0 + }, + { + "name": "MENU_COPY", + "value": 1 + }, + { + "name": "MENU_PASTE", + "value": 2 + }, + { + "name": "MENU_CLEAR", + "value": 3 + }, + { + "name": "MENU_SELECT_ALL", + "value": 4 + }, + { + "name": "MENU_UNDO", + "value": 5 + }, + { + "name": "MENU_REDO", + "value": 6 + }, + { + "name": "MENU_DIR_INHERITED", + "value": 7 + }, + { + "name": "MENU_DIR_AUTO", + "value": 8 + }, + { + "name": "MENU_DIR_LTR", + "value": 9 + }, + { + "name": "MENU_DIR_RTL", + "value": 10 + }, + { + "name": "MENU_DISPLAY_UCC", + "value": 11 + }, + { + "name": "MENU_INSERT_LRM", + "value": 12 + }, + { + "name": "MENU_INSERT_RLM", + "value": 13 + }, + { + "name": "MENU_INSERT_LRE", + "value": 14 + }, + { + "name": "MENU_INSERT_RLE", + "value": 15 + }, + { + "name": "MENU_INSERT_LRO", + "value": 16 + }, + { + "name": "MENU_INSERT_RLO", + "value": 17 + }, + { + "name": "MENU_INSERT_PDF", + "value": 18 + }, + { + "name": "MENU_INSERT_ALM", + "value": 19 + }, + { + "name": "MENU_INSERT_LRI", + "value": 20 + }, + { + "name": "MENU_INSERT_RLI", + "value": 21 + }, + { + "name": "MENU_INSERT_FSI", + "value": 22 + }, + { + "name": "MENU_INSERT_PDI", + "value": 23 + }, + { + "name": "MENU_INSERT_ZWJ", + "value": 24 + }, + { + "name": "MENU_INSERT_ZWNJ", + "value": 25 + }, + { + "name": "MENU_INSERT_WJ", + "value": 26 + }, + { + "name": "MENU_INSERT_SHY", + "value": 27 + }, + { + "name": "MENU_MAX", + "value": 28 + } + ] + }, + { + "name": "SearchFlags", + "values": [ + { + "name": "SEARCH_MATCH_CASE", + "value": 1 + }, + { + "name": "SEARCH_WHOLE_WORDS", + "value": 2 + }, + { + "name": "SEARCH_BACKWARDS", + "value": 4 + } + ] + }, + { + "name": "CaretType", + "values": [ + { + "name": "CARET_TYPE_LINE", + "value": 0 + }, + { + "name": "CARET_TYPE_BLOCK", + "value": 1 + } + ] + }, + { + "name": "SelectionMode", + "values": [ + { + "name": "SELECTION_MODE_NONE", + "value": 0 + }, + { + "name": "SELECTION_MODE_SHIFT", + "value": 1 + }, + { + "name": "SELECTION_MODE_POINTER", + "value": 2 + }, + { + "name": "SELECTION_MODE_WORD", + "value": 3 + }, + { + "name": "SELECTION_MODE_LINE", + "value": 4 + } + ] + }, + { + "name": "LineWrappingMode", + "values": [ + { + "name": "LINE_WRAPPING_NONE", + "value": 0 + }, + { + "name": "LINE_WRAPPING_BOUNDARY", + "value": 1 + } + ] + }, + { + "name": "GutterType", + "values": [ + { + "name": "GUTTER_TYPE_STRING", + "value": 0 + }, + { + "name": "GUTTER_TYPE_ICON", + "value": 1 + }, + { + "name": "GUTTER_TYPE_CUSTOM", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_handle_unicode_input", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "unicode_char", + "type": "int" + } + ] + }, + { + "name": "_backspace", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_cut", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_copy", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_paste", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_paste_primary_clipboard", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "has_ime_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_editable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Control.TextDirection" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_tab_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tab_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_overtype_mode_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_overtype_mode_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_context_menu_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_context_menu_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shortcut_keys_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_shortcut_keys_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_virtual_keyboard_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_virtual_keyboard_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_middle_mouse_paste_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_middle_mouse_paste_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_placeholder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_placeholder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "new_text", + "type": "String" + } + ] + }, + { + "name": "get_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_line_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_indent_level", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_first_non_whitespace_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "swap_lines", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from_line", + "type": "int", + "meta": "int32" + }, + { + "name": "to_line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "insert_line_at", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "insert_text_at_caret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "remove_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "from_line", + "type": "int", + "meta": "int32" + }, + { + "name": "from_column", + "type": "int", + "meta": "int32" + }, + { + "name": "to_line", + "type": "int", + "meta": "int32" + }, + { + "name": "to_column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_last_unhidden_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_next_visible_line_offset_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "visible_amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_next_visible_line_index_offset_from", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32" + }, + { + "name": "visible_amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "backspace", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "cut", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "copy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "paste", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "begin_complex_operation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "end_complex_operation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "has_undo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "has_redo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "undo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "redo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_undo_history", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "tag_saved_version", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_version", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "get_saved_version", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_search_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "search_text", + "type": "String" + } + ] + }, + { + "name": "set_search_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "search", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481931, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "flags", + "type": "int", + "meta": "uint32" + }, + { + "name": "from_line", + "type": "int", + "meta": "int32" + }, + { + "name": "from_colum", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tooltip_request_func", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "get_local_mouse_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_word_at_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_line_column_at_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + }, + { + "name": "allow_out_of_bounds", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_pos_at_line_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rect_at_line_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Rect2i" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_minimap_line_at_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + } + ] + }, + { + "name": "is_dragging_cursor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_mouse_over_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "edges", + "type": "bool" + } + ] + }, + { + "name": "set_caret_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::TextEdit.CaretType" + } + ] + }, + { + "name": "get_caret_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextEdit.CaretType" + } + }, + { + "name": "set_caret_blink_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_caret_blink_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_caret_blink_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "blink_speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_caret_blink_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_move_caret_on_right_click_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_move_caret_on_right_click_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_caret_mid_grapheme_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_caret_mid_grapheme_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_caret_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_caret_draw_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_caret_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3063695246, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "adjust_viewport", + "type": "bool", + "default_value": "true" + }, + { + "name": "can_be_hidden", + "type": "bool", + "default_value": "true" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_caret_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_caret_column", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "adjust_viewport", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_caret_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_caret_wrap_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_word_under_caret", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_selecting_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_selecting_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_deselect_on_focus_loss_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_deselect_on_focus_loss_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_override_selected_font_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override", + "type": "bool" + } + ] + }, + { + "name": "is_overriding_selected_font_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_selection_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 159458228, + "arguments": [ + { + "name": "mode", + "type": "enum::TextEdit.SelectionMode" + }, + { + "name": "line", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "column", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_selection_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextEdit.SelectionMode" + } + }, + { + "name": "select_all", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "select_word_under_caret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "from_line", + "type": "int", + "meta": "int32" + }, + { + "name": "from_column", + "type": "int", + "meta": "int32" + }, + { + "name": "to_line", + "type": "int", + "meta": "int32" + }, + { + "name": "to_column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_selected_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_selection_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_from_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_from_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_to_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_selection_to_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "deselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "delete_selection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_line_wrapping_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::TextEdit.LineWrappingMode" + } + ] + }, + { + "name": "get_line_wrapping_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextEdit.LineWrappingMode" + } + }, + { + "name": "is_line_wrapped", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_wrap_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_wrap_index_at_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_wrapped_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_smooth_scroll_enable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_smooth_scroll_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_v_scroll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_v_scroll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_h_scroll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_h_scroll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_scroll_past_end_of_file_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_scroll_past_end_of_file_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_v_scroll_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_v_scroll_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_scroll_pos_for_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_line_as_first_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_first_visible_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_line_as_center_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_line_as_last_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "wrap_index", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_last_full_visible_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_last_full_visible_line_wrap_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_visible_line_count_in_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "from_line", + "type": "int", + "meta": "int32" + }, + { + "name": "to_line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_total_visible_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "adjust_viewport_to_caret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "center_viewport_to_caret", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_draw_minimap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_minimap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_minimap_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_minimap_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_minimap_visible_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_gutter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "at", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_gutter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_gutter_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_gutter_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_gutter_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_gutter_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "enum::TextEdit.GutterType" + } + ] + }, + { + "name": "get_gutter_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextEdit.GutterType" + }, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_gutter_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_gutter_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_gutter_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "draw", + "type": "bool" + } + ] + }, + { + "name": "is_gutter_drawn", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_gutter_clickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "clickable", + "type": "bool" + } + ] + }, + { + "name": "is_gutter_clickable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_gutter_overwritable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "overwritable", + "type": "bool" + } + ] + }, + { + "name": "is_gutter_overwritable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "merge_gutters", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "from_line", + "type": "int", + "meta": "int32" + }, + { + "name": "to_line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_gutter_custom_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "draw_callback", + "type": "Callable" + } + ] + }, + { + "name": "get_total_gutter_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_line_gutter_metadata", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "metadata", + "type": "Variant" + } + ] + }, + { + "name": "get_line_gutter_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_line_gutter_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_line_gutter_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_line_gutter_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "icon", + "type": "Texture2D" + } + ] + }, + { + "name": "get_line_gutter_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_line_gutter_item_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_line_gutter_item_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_line_gutter_clickable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + }, + { + "name": "clickable", + "type": "bool" + } + ] + }, + { + "name": "is_line_gutter_clickable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "gutter", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_line_background_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_line_background_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_syntax_highlighter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "syntax_highlighter", + "type": "SyntaxHighlighter" + } + ] + }, + { + "name": "get_syntax_highlighter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "SyntaxHighlighter" + } + }, + { + "name": "set_highlight_current_line", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_highlight_current_line_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_highlight_all_occurrences", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_highlight_all_occurrences_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_draw_control_chars", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_control_chars", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "set_draw_tabs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_tabs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_draw_spaces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_drawing_spaces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_menu", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PopupMenu" + } + }, + { + "name": "is_menu_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "menu_option", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "option", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "text_set" + }, + { + "name": "text_changed" + }, + { + "name": "lines_edited_from", + "arguments": [ + { + "name": "from_line", + "type": "int" + }, + { + "name": "to_line", + "type": "int" + } + ] + }, + { + "name": "caret_changed" + }, + { + "name": "gutter_clicked", + "arguments": [ + { + "name": "line", + "type": "int" + }, + { + "name": "gutter", + "type": "int" + } + ] + }, + { + "name": "gutter_added" + }, + { + "name": "gutter_removed" + } + ], + "properties": [ + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "String", + "name": "placeholder_text", + "setter": "set_placeholder", + "getter": "get_placeholder", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "bool", + "name": "editable", + "setter": "set_editable", + "getter": "is_editable", + "index": -1 + }, + { + "type": "bool", + "name": "context_menu_enabled", + "setter": "set_context_menu_enabled", + "getter": "is_context_menu_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "shortcut_keys_enabled", + "setter": "set_shortcut_keys_enabled", + "getter": "is_shortcut_keys_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "selecting_enabled", + "setter": "set_selecting_enabled", + "getter": "is_selecting_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "deselect_on_focus_loss_enabled", + "setter": "set_deselect_on_focus_loss_enabled", + "getter": "is_deselect_on_focus_loss_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "virtual_keyboard_enabled", + "setter": "set_virtual_keyboard_enabled", + "getter": "is_virtual_keyboard_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "middle_mouse_paste_enabled", + "setter": "set_middle_mouse_paste_enabled", + "getter": "is_middle_mouse_paste_enabled", + "index": -1 + }, + { + "type": "int", + "name": "wrap_mode", + "setter": "set_line_wrapping_mode", + "getter": "get_line_wrapping_mode", + "index": -1 + }, + { + "type": "bool", + "name": "override_selected_font_color", + "setter": "set_override_selected_font_color", + "getter": "is_overriding_selected_font_color", + "index": -1 + }, + { + "type": "bool", + "name": "highlight_all_occurrences", + "setter": "set_highlight_all_occurrences", + "getter": "is_highlight_all_occurrences_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "highlight_current_line", + "setter": "set_highlight_current_line", + "getter": "is_highlight_current_line_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "draw_control_chars", + "setter": "set_draw_control_chars", + "getter": "get_draw_control_chars", + "index": -1 + }, + { + "type": "bool", + "name": "draw_tabs", + "setter": "set_draw_tabs", + "getter": "is_drawing_tabs", + "index": -1 + }, + { + "type": "bool", + "name": "draw_spaces", + "setter": "set_draw_spaces", + "getter": "is_drawing_spaces", + "index": -1 + }, + { + "type": "SyntaxHighlighter", + "name": "syntax_highlighter", + "setter": "set_syntax_highlighter", + "getter": "get_syntax_highlighter", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_smooth", + "setter": "set_smooth_scroll_enable", + "getter": "is_smooth_scroll_enabled", + "index": -1 + }, + { + "type": "float", + "name": "scroll_v_scroll_speed", + "setter": "set_v_scroll_speed", + "getter": "get_v_scroll_speed", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_past_end_of_file", + "setter": "set_scroll_past_end_of_file_enabled", + "getter": "is_scroll_past_end_of_file_enabled", + "index": -1 + }, + { + "type": "float", + "name": "scroll_vertical", + "setter": "set_v_scroll", + "getter": "get_v_scroll", + "index": -1 + }, + { + "type": "int", + "name": "scroll_horizontal", + "setter": "set_h_scroll", + "getter": "get_h_scroll", + "index": -1 + }, + { + "type": "bool", + "name": "minimap_draw", + "setter": "set_draw_minimap", + "getter": "is_drawing_minimap", + "index": -1 + }, + { + "type": "int", + "name": "minimap_width", + "setter": "set_minimap_width", + "getter": "get_minimap_width", + "index": -1 + }, + { + "type": "int", + "name": "caret_type", + "setter": "set_caret_type", + "getter": "get_caret_type", + "index": -1 + }, + { + "type": "bool", + "name": "caret_blink", + "setter": "set_caret_blink_enabled", + "getter": "is_caret_blink_enabled", + "index": -1 + }, + { + "type": "float", + "name": "caret_blink_speed", + "setter": "set_caret_blink_speed", + "getter": "get_caret_blink_speed", + "index": -1 + }, + { + "type": "bool", + "name": "caret_move_on_right_click", + "setter": "set_move_caret_on_right_click_enabled", + "getter": "is_move_caret_on_right_click_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "caret_mid_grapheme", + "setter": "set_caret_mid_grapheme_enabled", + "getter": "is_caret_mid_grapheme_enabled", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + } + ] + }, + { + "name": "TextLine", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "OverrunBehavior", + "values": [ + { + "name": "OVERRUN_NO_TRIMMING", + "value": 0 + }, + { + "name": "OVERRUN_TRIM_CHAR", + "value": 1 + }, + { + "name": "OVERRUN_TRIM_WORD", + "value": 2 + }, + { + "name": "OVERRUN_TRIM_ELLIPSIS", + "value": 3 + }, + { + "name": "OVERRUN_TRIM_WORD_ELLIPSIS", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::TextServer.Direction" + } + ] + }, + { + "name": "get_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Direction" + } + }, + { + "name": "set_orientation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "orientation", + "type": "enum::TextServer.Orientation" + } + ] + }, + { + "name": "get_orientation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Orientation" + } + }, + { + "name": "set_preserve_invalid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_preserve_invalid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_preserve_control", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_preserve_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override", + "type": "Array" + } + ] + }, + { + "name": "add_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1020396879, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "fonts", + "type": "Font" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "opentype_features", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "meta", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "add_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + }, + { + "name": "length", + "type": "int", + "meta": "int32", + "default_value": "1" + } + ] + }, + { + "name": "resize_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + } + ] + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_horizontal_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_horizontal_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "tab_align", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tab_stops", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "set_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "uint16" + } + ] + }, + { + "name": "get_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "set_text_overrun_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "overrun_behavior", + "type": "enum::TextLine.OverrunBehavior" + } + ] + }, + { + "name": "get_text_overrun_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextLine.OverrunBehavior" + } + }, + { + "name": "get_objects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_object_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "key", + "type": "Variant" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_line_ascent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_line_descent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_line_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_line_underline_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_line_underline_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649994, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802764, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "1" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "hit_test", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "coords", + "type": "float", + "meta": "float" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "direction", + "setter": "set_direction", + "getter": "get_direction", + "index": -1 + }, + { + "type": "int", + "name": "orientation", + "setter": "set_orientation", + "getter": "get_orientation", + "index": -1 + }, + { + "type": "bool", + "name": "preserve_invalid", + "setter": "set_preserve_invalid", + "getter": "get_preserve_invalid", + "index": -1 + }, + { + "type": "bool", + "name": "preserve_control", + "setter": "set_preserve_control", + "getter": "get_preserve_control", + "index": -1 + }, + { + "type": "float", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "alignment", + "setter": "set_horizontal_alignment", + "getter": "get_horizontal_alignment", + "index": -1 + }, + { + "type": "int", + "name": "flags", + "setter": "set_flags", + "getter": "get_flags", + "index": -1 + }, + { + "type": "int", + "name": "text_overrun_behavior", + "setter": "set_text_overrun_behavior", + "getter": "get_text_overrun_behavior", + "index": -1 + } + ] + }, + { + "name": "TextMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_horizontal_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_horizontal_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Font" + } + }, + { + "name": "set_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_depth", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "depth", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_pixel_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixel_size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_pixel_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_curve_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve_step", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_curve_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::TextServer.Direction" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Direction" + } + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + } + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_uppercase", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_uppercase", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "text", + "setter": "set_text", + "getter": "get_text", + "index": -1 + }, + { + "type": "Font", + "name": "font", + "setter": "set_font", + "getter": "get_font", + "index": -1 + }, + { + "type": "int", + "name": "font_size", + "setter": "set_font_size", + "getter": "get_font_size", + "index": -1 + }, + { + "type": "int", + "name": "horizontal_alignment", + "setter": "set_horizontal_alignment", + "getter": "get_horizontal_alignment", + "index": -1 + }, + { + "type": "bool", + "name": "uppercase", + "setter": "set_uppercase", + "getter": "is_uppercase", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 + }, + { + "type": "float", + "name": "pixel_size", + "setter": "set_pixel_size", + "getter": "get_pixel_size", + "index": -1 + }, + { + "type": "float", + "name": "curve_step", + "setter": "set_curve_step", + "getter": "get_curve_step", + "index": -1 + }, + { + "type": "float", + "name": "depth", + "setter": "set_depth", + "getter": "get_depth", + "index": -1 + }, + { + "type": "float", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + } + ] + }, + { + "name": "TextParagraph", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "OverrunBehavior", + "values": [ + { + "name": "OVERRUN_NO_TRIMMING", + "value": 0 + }, + { + "name": "OVERRUN_TRIM_CHAR", + "value": 1 + }, + { + "name": "OVERRUN_TRIM_WORD", + "value": 2 + }, + { + "name": "OVERRUN_TRIM_ELLIPSIS", + "value": 3 + }, + { + "name": "OVERRUN_TRIM_WORD_ELLIPSIS", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::TextServer.Direction" + } + ] + }, + { + "name": "get_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Direction" + } + }, + { + "name": "set_custom_punctuation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "custom_punctuation", + "type": "String" + } + ] + }, + { + "name": "get_custom_punctuation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_orientation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "orientation", + "type": "enum::TextServer.Orientation" + } + ] + }, + { + "name": "get_orientation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextServer.Orientation" + } + }, + { + "name": "set_preserve_invalid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_preserve_invalid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_preserve_control", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_preserve_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "override", + "type": "Array" + } + ] + }, + { + "name": "set_dropcap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1020396879, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "fonts", + "type": "Font" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "dropcap_margins", + "type": "Rect2", + "default_value": "Rect2(0, 0, 0, 0)" + }, + { + "name": "opentype_features", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "clear_dropcap", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1020396879, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "text", + "type": "String" + }, + { + "name": "fonts", + "type": "Font" + }, + { + "name": "size", + "type": "int", + "meta": "int32" + }, + { + "name": "opentype_features", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "meta", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "add_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270700, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + }, + { + "name": "length", + "type": "int", + "meta": "int32", + "default_value": "1" + } + ] + }, + { + "name": "resize_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + } + ] + }, + { + "name": "set_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::HorizontalAlignment" + } + }, + { + "name": "tab_align", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tab_stops", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "set_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "uint16" + } + ] + }, + { + "name": "get_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "set_text_overrun_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "overrun_behavior", + "type": "enum::TextParagraph.OverrunBehavior" + } + ] + }, + { + "name": "get_text_overrun_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextParagraph.OverrunBehavior" + } + }, + { + "name": "set_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "width", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_non_wrapped_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_line_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_dropcap_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_line_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max_lines_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_lines_visible", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_lines_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_line_objects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_object_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "key", + "type": "Variant" + } + ] + }, + { + "name": "get_line_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_ascent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_descent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_underline_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_line_underline_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "line", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_spacing_top", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_spacing_bottom", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_dropcap_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_dropcap_lines", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802764, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "dc_color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2998809226, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "1" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "dc_color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835915, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_line_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938157, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "line", + "type": "int", + "meta": "int32" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "1" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_dropcap", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649994, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_dropcap_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802764, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int32", + "default_value": "1" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "hit_test", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "direction", + "setter": "set_direction", + "getter": "get_direction", + "index": -1 + }, + { + "type": "String", + "name": "custom_punctuation", + "setter": "set_custom_punctuation", + "getter": "get_custom_punctuation", + "index": -1 + }, + { + "type": "int", + "name": "orientation", + "setter": "set_orientation", + "getter": "get_orientation", + "index": -1 + }, + { + "type": "bool", + "name": "preserve_invalid", + "setter": "set_preserve_invalid", + "getter": "get_preserve_invalid", + "index": -1 + }, + { + "type": "bool", + "name": "preserve_control", + "setter": "set_preserve_control", + "getter": "get_preserve_control", + "index": -1 + }, + { + "type": "int", + "name": "alignment", + "setter": "set_alignment", + "getter": "get_alignment", + "index": -1 + }, + { + "type": "int", + "name": "flags", + "setter": "set_flags", + "getter": "get_flags", + "index": -1 + }, + { + "type": "int", + "name": "text_overrun_behavior", + "setter": "set_text_overrun_behavior", + "getter": "get_text_overrun_behavior", + "index": -1 + }, + { + "type": "float", + "name": "width", + "setter": "set_width", + "getter": "get_width", + "index": -1 + }, + { + "type": "int", + "name": "max_lines_visible", + "setter": "set_max_lines_visible", + "getter": "get_max_lines_visible", + "index": -1 + } + ] + }, + { + "name": "TextServer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "Direction", + "values": [ + { + "name": "DIRECTION_AUTO", + "value": 0 + }, + { + "name": "DIRECTION_LTR", + "value": 1 + }, + { + "name": "DIRECTION_RTL", + "value": 2 + } + ] + }, + { + "name": "Orientation", + "values": [ + { + "name": "ORIENTATION_HORIZONTAL", + "value": 0 + }, + { + "name": "ORIENTATION_VERTICAL", + "value": 1 + } + ] + }, + { + "name": "JustificationFlag", + "values": [ + { + "name": "JUSTIFICATION_NONE", + "value": 0 + }, + { + "name": "JUSTIFICATION_KASHIDA", + "value": 1 + }, + { + "name": "JUSTIFICATION_WORD_BOUND", + "value": 2 + }, + { + "name": "JUSTIFICATION_TRIM_EDGE_SPACES", + "value": 4 + }, + { + "name": "JUSTIFICATION_AFTER_LAST_TAB", + "value": 8 + }, + { + "name": "JUSTIFICATION_CONSTRAIN_ELLIPSIS", + "value": 16 + } + ] + }, + { + "name": "LineBreakFlag", + "values": [ + { + "name": "BREAK_NONE", + "value": 0 + }, + { + "name": "BREAK_MANDATORY", + "value": 32 + }, + { + "name": "BREAK_WORD_BOUND", + "value": 64 + }, + { + "name": "BREAK_GRAPHEME_BOUND", + "value": 128 + }, + { + "name": "BREAK_WORD_BOUND_ADAPTIVE", + "value": 320 + } + ] + }, + { + "name": "TextOverrunFlag", + "values": [ + { + "name": "OVERRUN_NO_TRIMMING", + "value": 0 + }, + { + "name": "OVERRUN_TRIM", + "value": 1 + }, + { + "name": "OVERRUN_TRIM_WORD_ONLY", + "value": 2 + }, + { + "name": "OVERRUN_ADD_ELLIPSIS", + "value": 4 + }, + { + "name": "OVERRUN_ENFORCE_ELLIPSIS", + "value": 8 + }, + { + "name": "OVERRUN_JUSTIFICATION_AWARE", + "value": 16 + } + ] + }, + { + "name": "GraphemeFlag", + "values": [ + { + "name": "GRAPHEME_IS_VALID", + "value": 1 + }, + { + "name": "GRAPHEME_IS_RTL", + "value": 2 + }, + { + "name": "GRAPHEME_IS_VIRTUAL", + "value": 4 + }, + { + "name": "GRAPHEME_IS_SPACE", + "value": 8 + }, + { + "name": "GRAPHEME_IS_BREAK_HARD", + "value": 16 + }, + { + "name": "GRAPHEME_IS_BREAK_SOFT", + "value": 32 + }, + { + "name": "GRAPHEME_IS_TAB", + "value": 64 + }, + { + "name": "GRAPHEME_IS_ELONGATION", + "value": 128 + }, + { + "name": "GRAPHEME_IS_PUNCTUATION", + "value": 256 + }, + { + "name": "GRAPHEME_IS_UNDERSCORE", + "value": 512 + }, + { + "name": "GRAPHEME_IS_CONNECTED", + "value": 1024 + } + ] + }, + { + "name": "Hinting", + "values": [ + { + "name": "HINTING_NONE", + "value": 0 + }, + { + "name": "HINTING_LIGHT", + "value": 1 + }, + { + "name": "HINTING_NORMAL", + "value": 2 + } + ] + }, + { + "name": "SubpixelPositioning", + "values": [ + { + "name": "SUBPIXEL_POSITIONING_DISABLED", + "value": 0 + }, + { + "name": "SUBPIXEL_POSITIONING_AUTO", + "value": 1 + }, + { + "name": "SUBPIXEL_POSITIONING_ONE_HALF", + "value": 2 + }, + { + "name": "SUBPIXEL_POSITIONING_ONE_QUARTER", + "value": 3 + }, + { + "name": "SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE", + "value": 20 + }, + { + "name": "SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE", + "value": 16 + } + ] + }, + { + "name": "Feature", + "values": [ + { + "name": "FEATURE_SIMPLE_LAYOUT", + "value": 1 + }, + { + "name": "FEATURE_BIDI_LAYOUT", + "value": 2 + }, + { + "name": "FEATURE_VERTICAL_LAYOUT", + "value": 4 + }, + { + "name": "FEATURE_SHAPING", + "value": 8 + }, + { + "name": "FEATURE_KASHIDA_JUSTIFICATION", + "value": 16 + }, + { + "name": "FEATURE_BREAK_ITERATORS", + "value": 32 + }, + { + "name": "FEATURE_FONT_BITMAP", + "value": 64 + }, + { + "name": "FEATURE_FONT_DYNAMIC", + "value": 128 + }, + { + "name": "FEATURE_FONT_MSDF", + "value": 256 + }, + { + "name": "FEATURE_FONT_SYSTEM", + "value": 512 + }, + { + "name": "FEATURE_FONT_VARIABLE", + "value": 1024 + }, + { + "name": "FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION", + "value": 2048 + }, + { + "name": "FEATURE_USE_SUPPORT_DATA", + "value": 4096 + } + ] + }, + { + "name": "ContourPointTag", + "values": [ + { + "name": "CONTOUR_CURVE_TAG_ON", + "value": 1 + }, + { + "name": "CONTOUR_CURVE_TAG_OFF_CONIC", + "value": 0 + }, + { + "name": "CONTOUR_CURVE_TAG_OFF_CUBIC", + "value": 2 + } + ] + }, + { + "name": "SpacingType", + "values": [ + { + "name": "SPACING_GLYPH", + "value": 0 + }, + { + "name": "SPACING_SPACE", + "value": 1 + }, + { + "name": "SPACING_TOP", + "value": 2 + }, + { + "name": "SPACING_BOTTOM", + "value": 3 + } + ] + }, + { + "name": "FontStyle", + "values": [ + { + "name": "FONT_BOLD", + "value": 1 + }, + { + "name": "FONT_ITALIC", + "value": 2 + }, + { + "name": "FONT_FIXED_WIDTH", + "value": 4 + } + ] + }, + { + "name": "StructuredTextParser", + "values": [ + { + "name": "STRUCTURED_TEXT_DEFAULT", + "value": 0 + }, + { + "name": "STRUCTURED_TEXT_URI", + "value": 1 + }, + { + "name": "STRUCTURED_TEXT_FILE", + "value": 2 + }, + { + "name": "STRUCTURED_TEXT_EMAIL", + "value": 3 + }, + { + "name": "STRUCTURED_TEXT_LIST", + "value": 4 + }, + { + "name": "STRUCTURED_TEXT_NONE", + "value": 5 + }, + { + "name": "STRUCTURED_TEXT_CUSTOM", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "has_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::TextServer.Feature" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_features", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int64" + } + }, + { + "name": "load_support_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "filename", + "type": "String" + } + ] + }, + { + "name": "get_support_data_filename", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_support_data_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "save_support_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "filename", + "type": "String" + } + ] + }, + { + "name": "is_locale_right_to_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "name_to_tag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "tag_to_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "tag", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "has", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "free_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "create_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "RID" + } + }, + { + "name": "font_set_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "font_set_style", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "style", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_style", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "font_get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_style_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "font_get_style_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_antialiased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "antialiased", + "type": "bool" + } + ] + }, + { + "name": "font_is_antialiased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_generate_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "generate_mipmaps", + "type": "bool" + } + ] + }, + { + "name": "font_get_generate_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_multichannel_signed_distance_field", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "msdf", + "type": "bool" + } + ] + }, + { + "name": "font_is_multichannel_signed_distance_field", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_msdf_pixel_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "msdf_pixel_range", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_msdf_pixel_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_msdf_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "msdf_size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_msdf_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_fixed_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "fixed_size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_fixed_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_force_autohinter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "force_autohinter", + "type": "bool" + } + ] + }, + { + "name": "font_is_force_autohinter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_hinting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "hinting", + "type": "enum::TextServer.Hinting" + } + ] + }, + { + "name": "font_get_hinting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextServer.Hinting" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_subpixel_positioning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "subpixel_positioning", + "type": "enum::TextServer.SubpixelPositioning" + } + ] + }, + { + "name": "font_get_subpixel_positioning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextServer.SubpixelPositioning" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_embolden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "strength", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_embolden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "font_get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_variation_coordinates", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "variation_coordinates", + "type": "Dictionary" + } + ] + }, + { + "name": "font_get_variation_coordinates", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_oversampling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "oversampling", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_oversampling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_get_size_cache_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_clear_size_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_remove_size_cache", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_set_ascent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "ascent", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_ascent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_descent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "descent", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_descent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_underline_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "underline_position", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_underline_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_underline_thickness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "underline_thickness", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_underline_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "font_get_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + } + ] + }, + { + "name": "font_get_texture_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_clear_textures", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_remove_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_texture_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int64" + }, + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "font_get_texture_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_texture_offsets", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int64" + }, + { + "name": "offset", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "font_get_texture_offsets", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_glyph_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_clear_glyphs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_remove_glyph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_glyph_advance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_glyph_advance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + }, + { + "name": "advance", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_glyph_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_glyph_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + }, + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_glyph_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_glyph_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + }, + { + "name": "gl_size", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_glyph_uv_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_glyph_uv_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + }, + { + "name": "uv_rect", + "type": "Rect2" + } + ] + }, + { + "name": "font_get_glyph_texture_idx", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_set_glyph_texture_idx", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + }, + { + "name": "texture_idx", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_glyph_texture_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_glyph_texture_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_glyph_contours", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_kerning_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_clear_kerning_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_remove_kerning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + } + ] + }, + { + "name": "font_set_kerning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + }, + { + "name": "kerning", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_kerning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + } + ] + }, + { + "name": "font_get_glyph_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481931, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "char", + "type": "int", + "meta": "int64" + }, + { + "name": "variation_selector", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_has_char", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "char", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_supported_chars", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_render_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "start", + "type": "int", + "meta": "int64" + }, + { + "name": "end", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_render_glyph", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_draw_glyph", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 139207757, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "font_draw_glyph_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 140393678, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int64" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "font_is_language_supported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "font_set_language_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "font_get_language_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "font_remove_language_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "font_get_language_support_overrides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_is_script_supported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "font_set_script_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "font_get_script_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "font_remove_script_support_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "font_get_script_support_overrides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_opentype_feature_overrides", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "overrides", + "type": "Dictionary" + } + ] + }, + { + "name": "font_get_opentype_feature_overrides", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_supported_feature_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_supported_variation_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_get_global_oversampling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "font_set_global_oversampling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "oversampling", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_hex_code_box_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "draw_hex_code_box", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331947, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "create_shaped_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2038660256, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" + } + ] + }, + { + "name": "shaped_text_clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + } + ] + }, + { + "name": "shaped_text_get_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextServer.Direction" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_inferred_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextServer.Direction" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "override", + "type": "Array" + } + ] + }, + { + "name": "shaped_text_set_custom_punctuation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "punct", + "type": "String" + } + ] + }, + { + "name": "shaped_text_get_custom_punctuation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_orientation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" + } + ] + }, + { + "name": "shaped_text_get_orientation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextServer.Orientation" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_preserve_invalid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "shaped_text_get_preserve_invalid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_preserve_control", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "shaped_text_get_preserve_control", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_add_string", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2311864848, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "fonts", + "type": "Array" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "opentype_features", + "type": "Dictionary", + "default_value": "{}" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "meta", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "shaped_text_add_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1552406093, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + }, + { + "name": "length", + "type": "int", + "meta": "int64", + "default_value": "1" + } + ] + }, + { + "name": "shaped_text_resize_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971275, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment", + "default_value": "5" + } + ] + }, + { + "name": "shaped_get_span_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_get_span_meta", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_set_span_update_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 138021803, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "index", + "type": "int", + "meta": "int64" + }, + { + "name": "fonts", + "type": "Array" + }, + { + "name": "size", + "type": "int", + "meta": "int64" + }, + { + "name": "opentype_features", + "type": "Dictionary", + "default_value": "{}" + } + ] + }, + { + "name": "shaped_text_substr", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "start", + "type": "int", + "meta": "int64" + }, + { + "name": "length", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_get_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_fit_to_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "float", + "meta": "double" + }, + { + "name": "jst_flags", + "type": "int", + "meta": "int64", + "default_value": "3" + } + ] + }, + { + "name": "shaped_text_tab_align", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "tab_stops", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "shaped_text_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_is_ready", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_glyphs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_sort_logical", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_glyph_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_line_breaks_adv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2146812442, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "PackedFloat32Array" + }, + { + "name": "start", + "type": "int", + "meta": "int64", + "default_value": "0" + }, + { + "name": "once", + "type": "bool", + "default_value": "true" + }, + { + "name": "break_flags", + "type": "int", + "meta": "int64", + "default_value": "96" + } + ] + }, + { + "name": "shaped_text_get_line_breaks", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1513270733, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "float", + "meta": "double" + }, + { + "name": "start", + "type": "int", + "meta": "int64", + "default_value": "0" + }, + { + "name": "break_flags", + "type": "int", + "meta": "int64", + "default_value": "96" + } + ] + }, + { + "name": "shaped_text_get_word_breaks", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "grapheme_flags", + "type": "int", + "meta": "int64", + "default_value": "264" + } + ] + }, + { + "name": "shaped_text_get_trim_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ellipsis_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ellipsis_glyphs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ellipsis_glyph_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_overrun_trim_to_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2600550837, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "float", + "meta": "double", + "default_value": "0" + }, + { + "name": "overrun_trim_flags", + "type": "int", + "meta": "int64", + "default_value": "0" + } + ] + }, + { + "name": "shaped_text_get_objects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_object_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "key", + "type": "Variant" + } + ] + }, + { + "name": "shaped_text_get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ascent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_descent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_underline_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_underline_thickness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_carets", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "position", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_get_selection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "start", + "type": "int", + "meta": "int64" + }, + { + "name": "end", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_hit_test_grapheme", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "coords", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "shaped_text_hit_test_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "coords", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "shaped_text_get_grapheme_bounds", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "pos", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_next_grapheme_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "pos", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_prev_grapheme_pos", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "pos", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626895, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "clip_l", + "type": "float", + "meta": "double", + "default_value": "-1" + }, + { + "name": "clip_r", + "type": "float", + "meta": "double", + "default_value": "-1" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "shaped_text_draw_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2591042395, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "clip_l", + "type": "float", + "meta": "double", + "default_value": "-1" + }, + { + "name": "clip_r", + "type": "float", + "meta": "double", + "default_value": "-1" + }, + { + "name": "outline_size", + "type": "int", + "meta": "int64", + "default_value": "1" + }, + { + "name": "color", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "shaped_text_get_dominant_direction_in_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "enum::TextServer.Direction" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "start", + "type": "int", + "meta": "int64" + }, + { + "name": "end", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "format_number", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "number", + "type": "String" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "parse_number", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "number", + "type": "String" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "percent_sign", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 178273454, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "string_get_word_breaks", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "strip_diacritics", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, + { + "name": "string_to_upper", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "string_to_lower", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "parse_structured_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parser_type", + "type": "enum::TextServer.StructuredTextParser" + }, + { + "name": "args", + "type": "Array" + }, + { + "name": "text", + "type": "String" + } + ] + } + ] + }, + { + "name": "TextServerAdvanced", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "TextServerExtension", + "api_type": "core" + }, + { + "name": "TextServerDummy", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "TextServerExtension", + "api_type": "core" + }, + { + "name": "TextServerExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "TextServer", + "api_type": "core", + "methods": [ + { + "name": "has_feature", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "feature", + "type": "enum::TextServer.Feature" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "get_features", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "free_rid", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "has", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "load_support_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "filename", + "type": "String" + } + ] + }, + { + "name": "get_support_data_filename", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "get_support_data_info", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "save_support_data", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "filename", + "type": "String" + } + ] + }, + { + "name": "is_locale_right_to_left", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "name_to_tag", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "tag_to_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "tag", + "type": "int" + } + ] + }, + { + "name": "create_font", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, + { + "name": "font_set_data", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "data", + "type": "PackedByteArray" + } + ] + }, + { + "name": "font_set_data_ptr", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "data_ptr", + "type": "const uint8_t*" + }, + { + "name": "data_size", + "type": "int" + } + ] + }, + { + "name": "font_set_style", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "style", + "type": "int" + } + ] + }, + { + "name": "font_get_style", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_name", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "font_get_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_style_name", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "name_style", + "type": "String" + } + ] + }, + { + "name": "font_get_style_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_antialiased", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "antialiased", + "type": "bool" + } + ] + }, + { + "name": "font_is_antialiased", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_generate_mipmaps", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "generate_mipmaps", + "type": "bool" + } + ] + }, + { + "name": "font_get_generate_mipmaps", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_multichannel_signed_distance_field", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "msdf", + "type": "bool" + } + ] + }, + { + "name": "font_is_multichannel_signed_distance_field", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_msdf_pixel_range", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "msdf_pixel_range", + "type": "int" + } + ] + }, + { + "name": "font_get_msdf_pixel_range", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_msdf_size", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "msdf_size", + "type": "int" + } + ] + }, + { + "name": "font_get_msdf_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_fixed_size", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "fixed_size", + "type": "int" + } + ] + }, + { + "name": "font_get_fixed_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_force_autohinter", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "force_autohinter", + "type": "bool" + } + ] + }, + { + "name": "font_is_force_autohinter", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_hinting", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "hinting", + "type": "enum::TextServer.Hinting" + } + ] + }, + { + "name": "font_get_hinting", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::TextServer.Hinting" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_subpixel_positioning", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "subpixel_positioning", + "type": "enum::TextServer.SubpixelPositioning" + } + ] + }, + { + "name": "font_get_subpixel_positioning", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::TextServer.SubpixelPositioning" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_embolden", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "strength", + "type": "float" + } + ] + }, + { + "name": "font_get_embolden", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "font_get_transform", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_variation_coordinates", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "variation_coordinates", + "type": "Dictionary" + } + ] + }, + { + "name": "font_get_variation_coordinates", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_oversampling", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "oversampling", + "type": "float" + } + ] + }, + { + "name": "font_get_oversampling", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_get_size_cache_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_clear_size_cache", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_remove_size_cache", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_set_ascent", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "ascent", + "type": "float" + } + ] + }, + { + "name": "font_get_ascent", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_set_descent", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "descent", + "type": "float" + } + ] + }, + { + "name": "font_get_descent", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_set_underline_position", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "underline_position", + "type": "float" + } + ] + }, + { + "name": "font_get_underline_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_set_underline_thickness", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "underline_thickness", + "type": "float" + } + ] + }, + { + "name": "font_get_underline_thickness", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_set_scale", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "scale", + "type": "float" + } + ] + }, + { + "name": "font_get_scale", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_set_spacing", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "font_get_spacing", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + } + ] + }, + { + "name": "font_get_texture_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_clear_textures", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_remove_texture", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int" + } + ] + }, + { + "name": "font_set_texture_image", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int" + }, + { + "name": "image", + "type": "Image" + } + ] + }, + { + "name": "font_get_texture_image", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int" + } + ] + }, + { + "name": "font_set_texture_offsets", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int" + }, + { + "name": "offset", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "font_get_texture_offsets", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "texture_index", + "type": "int" + } + ] + }, + { + "name": "font_get_glyph_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_clear_glyphs", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "font_remove_glyph", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_get_glyph_advance", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_set_glyph_advance", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "glyph", + "type": "int" + }, + { + "name": "advance", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_glyph_offset", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_set_glyph_offset", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + }, + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_glyph_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_set_glyph_size", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + }, + { + "name": "gl_size", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_glyph_uv_rect", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_set_glyph_uv_rect", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + }, + { + "name": "uv_rect", + "type": "Rect2" + } + ] + }, + { + "name": "font_get_glyph_texture_idx", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_set_glyph_texture_idx", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + }, + { + "name": "texture_idx", + "type": "int" + } + ] + }, + { + "name": "font_get_glyph_texture_rid", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_get_glyph_texture_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "glyph", + "type": "int" + } + ] + }, + { + "name": "font_get_glyph_contours", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "font_get_kerning_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_clear_kerning_map", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + } + ] + }, + { + "name": "font_remove_kerning", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + } + ] + }, + { + "name": "font_set_kerning", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + }, + { + "name": "kerning", + "type": "Vector2" + } + ] + }, + { + "name": "font_get_kerning", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "glyph_pair", + "type": "Vector2i" + } + ] + }, + { + "name": "font_get_glyph_index", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "char", + "type": "int" + }, + { + "name": "variation_selector", + "type": "int" + } + ] + }, + { + "name": "font_has_char", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "char", + "type": "int" + } + ] + }, + { + "name": "font_get_supported_chars", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_render_range", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "end", + "type": "int" + } + ] + }, + { + "name": "font_render_glyph", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "font_draw_glyph", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "index", + "type": "int" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "font_draw_glyph_outline", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "outline_size", + "type": "int" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "index", + "type": "int" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "font_is_language_supported", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "font_set_language_support_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "font_get_language_support_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "font_remove_language_support_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "font_get_language_support_overrides", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_is_script_supported", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "font_set_script_support_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "font_get_script_support_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "font_remove_script_support_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "font_get_script_support_overrides", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_set_opentype_feature_overrides", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "overrides", + "type": "Dictionary" + } + ] + }, + { + "name": "font_get_opentype_feature_overrides", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_supported_feature_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_supported_variation_list", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_get_global_oversampling", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "font_set_global_oversampling", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "oversampling", + "type": "float" + } + ] + }, + { + "name": "get_hex_code_box_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "size", + "type": "int" + }, + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "draw_hex_code_box", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "canvas", + "type": "RID" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "index", + "type": "int" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "create_shaped_text", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "direction", + "type": "enum::TextServer.Direction" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation" + } + ] + }, + { + "name": "shaped_text_clear", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_direction", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction" + } + ] + }, + { + "name": "shaped_text_get_direction", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::TextServer.Direction" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_inferred_direction", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::TextServer.Direction" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_bidi_override", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "override", + "type": "Array" + } + ] + }, + { + "name": "shaped_text_set_custom_punctuation", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "punct", + "type": "String" + } + ] + }, + { + "name": "shaped_text_get_custom_punctuation", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_orientation", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation" + } + ] + }, + { + "name": "shaped_text_get_orientation", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::TextServer.Orientation" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_preserve_invalid", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "shaped_text_get_preserve_invalid", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_set_preserve_control", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "shaped_text_get_preserve_control", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_add_string", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "fonts", + "type": "Array" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "opentype_features", + "type": "Dictionary" + }, + { + "name": "language", + "type": "String" + }, + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "shaped_text_add_object", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment" + }, + { + "name": "length", + "type": "int" + } + ] + }, + { + "name": "shaped_text_resize_object", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "key", + "type": "Variant" + }, + { + "name": "size", + "type": "Vector2" + }, + { + "name": "inline_align", + "type": "enum::InlineAlignment" + } + ] + }, + { + "name": "shaped_get_span_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_get_span_meta", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "index", + "type": "int" + } + ] + }, + { + "name": "shaped_set_span_update_font", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "index", + "type": "int" + }, + { + "name": "fonts", + "type": "Array" + }, + { + "name": "size", + "type": "int" + }, + { + "name": "opentype_features", + "type": "Dictionary" + } + ] + }, + { + "name": "shaped_text_substr", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "length", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_parent", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_fit_to_width", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "float" + }, + { + "name": "jst_flags", + "type": "int" + } + ] + }, + { + "name": "shaped_text_tab_align", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "tab_stops", + "type": "PackedFloat32Array" + } + ] + }, + { + "name": "shaped_text_shape", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_update_breaks", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_update_justification_ops", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_is_ready", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_glyphs", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "const Glyph*" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_sort_logical", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "const Glyph*" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_glyph_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_range", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_line_breaks_adv", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "PackedFloat32Array" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "once", + "type": "bool" + }, + { + "name": "break_flags", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_line_breaks", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "float" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "break_flags", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_word_breaks", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "grapheme_flags", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_trim_pos", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ellipsis_pos", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ellipsis_glyph_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ellipsis_glyphs", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "const Glyph*" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_overrun_trim_to_width", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "width", + "type": "float" + }, + { + "name": "trim_flags", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_objects", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_object_rect", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "key", + "type": "Variant" + } + ] + }, + { + "name": "shaped_text_get_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_ascent", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_descent", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_width", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_underline_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_underline_thickness", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + } + ] + }, + { + "name": "shaped_text_get_dominant_direction_in_range", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "end", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_carets", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "position", + "type": "int" + }, + { + "name": "caret", + "type": "CaretInfo*" + } + ] + }, + { + "name": "shaped_text_get_selection", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "start", + "type": "int" + }, + { + "name": "end", + "type": "int" + } + ] + }, + { + "name": "shaped_text_hit_test_grapheme", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "coord", + "type": "float" + } + ] + }, + { + "name": "shaped_text_hit_test_position", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "coord", + "type": "float" + } + ] + }, + { + "name": "shaped_text_draw", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "clip_l", + "type": "float" + }, + { + "name": "clip_r", + "type": "float" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "shaped_text_draw_outline", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "canvas", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "clip_l", + "type": "float" + }, + { + "name": "clip_r", + "type": "float" + }, + { + "name": "outline_size", + "type": "int" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "shaped_text_get_grapheme_bounds", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "pos", + "type": "int" + } + ] + }, + { + "name": "shaped_text_next_grapheme_pos", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "pos", + "type": "int" + } + ] + }, + { + "name": "shaped_text_prev_grapheme_pos", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "pos", + "type": "int" + } + ] + }, + { + "name": "format_number", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "parse_number", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "percent_sign", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "strip_diacritics", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, + { + "name": "string_get_word_breaks", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "string_to_upper", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "string_to_lower", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "parse_structured_text", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "parser_type", + "type": "enum::TextServer.StructuredTextParser" + }, + { + "name": "args", + "type": "Array" + }, + { + "name": "text", + "type": "String" + } + ] + } + ] + }, + { + "name": "TextServerManager", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "add_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interface", + "type": "TextServer" + } + ] + }, + { + "name": "get_interface_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "remove_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interface", + "type": "TextServer" + } + ] + }, + { + "name": "get_interface", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "TextServer" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_interfaces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "find_interface", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "TextServer" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_primary_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "TextServer" + } + ] + }, + { + "name": "get_primary_interface", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TextServer" + } + } + ], + "signals": [ + { + "name": "interface_added", + "arguments": [ + { + "name": "interface_name", + "type": "StringName" + } + ] + }, + { + "name": "interface_removed", + "arguments": [ + { + "name": "interface_name", + "type": "StringName" + } + ] + } + ] + }, + { + "name": "Texture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core" + }, + { + "name": "Texture2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture", + "api_type": "core", + "methods": [ + { + "name": "_get_width", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_height", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_is_pixel_opaque", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + } + ] + }, + { + "name": "_has_alpha", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_draw", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "to_canvas_item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "modulate", + "type": "Color" + }, + { + "name": "transpose", + "type": "bool" + } + ] + }, + { + "name": "_draw_rect", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "to_canvas_item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "tile", + "type": "bool" + }, + { + "name": "modulate", + "type": "Color" + }, + { + "name": "transpose", + "type": "bool" + } + ] + }, + { + "name": "_draw_rect_region", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "tp_canvas_item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "modulate", + "type": "Color" + }, + { + "name": "transpose", + "type": "bool" + }, + { + "name": "clip_uv", + "type": "bool" + } + ] + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "has_alpha", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 221802764, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "position", + "type": "Vector2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 260938157, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "tile", + "type": "bool" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "draw_rect_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1351626895, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "rect", + "type": "Rect2" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "transpose", + "type": "bool", + "default_value": "false" + }, + { + "name": "clip_uv", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_image", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Image" + } + } + ] + }, + { + "name": "Texture2DArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "ImageTextureLayered", + "api_type": "core" + }, + { + "name": "Texture3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture", + "api_type": "core", + "methods": [ + { + "name": "_get_format", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "_get_width", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_height", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_depth", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_has_mipmaps", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_data", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_depth", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "has_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ] + }, + { + "name": "TextureButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "BaseButton", + "api_type": "core", + "enums": [ + { + "name": "StretchMode", + "values": [ + { + "name": "STRETCH_SCALE", + "value": 0 + }, + { + "name": "STRETCH_TILE", + "value": 1 + }, + { + "name": "STRETCH_KEEP", + "value": 2 + }, + { + "name": "STRETCH_KEEP_CENTERED", + "value": 3 + }, + { + "name": "STRETCH_KEEP_ASPECT", + "value": 4 + }, + { + "name": "STRETCH_KEEP_ASPECT_CENTERED", + "value": 5 + }, + { + "name": "STRETCH_KEEP_ASPECT_COVERED", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_normal_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_pressed_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_hover_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_disabled_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_focused_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_click_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "BitMap" + } + ] + }, + { + "name": "set_ignore_texture_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ignore", + "type": "bool" + } + ] + }, + { + "name": "set_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::TextureButton.StretchMode" + } + ] + }, + { + "name": "set_flip_h", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_h", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_normal_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "get_pressed_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "get_hover_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "get_disabled_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "get_focused_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "get_click_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "BitMap" + } + }, + { + "name": "get_ignore_texture_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextureButton.StretchMode" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture_normal", + "setter": "set_normal_texture", + "getter": "get_normal_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_pressed", + "setter": "set_pressed_texture", + "getter": "get_pressed_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_hover", + "setter": "set_hover_texture", + "getter": "get_hover_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_disabled", + "setter": "set_disabled_texture", + "getter": "get_disabled_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_focused", + "setter": "set_focused_texture", + "getter": "get_focused_texture", + "index": -1 + }, + { + "type": "BitMap", + "name": "texture_click_mask", + "setter": "set_click_mask", + "getter": "get_click_mask", + "index": -1 + }, + { + "type": "bool", + "name": "ignore_texture_size", + "setter": "set_ignore_texture_size", + "getter": "get_ignore_texture_size", + "index": -1 + }, + { + "type": "int", + "name": "stretch_mode", + "setter": "set_stretch_mode", + "getter": "get_stretch_mode", + "index": -1 + }, + { + "type": "bool", + "name": "flip_h", + "setter": "set_flip_h", + "getter": "is_flipped_h", + "index": -1 + }, + { + "type": "bool", + "name": "flip_v", + "setter": "set_flip_v", + "getter": "is_flipped_v", + "index": -1 + } + ] + }, + { + "name": "TextureLayered", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture", + "api_type": "core", + "enums": [ + { + "name": "LayeredType", + "values": [ + { + "name": "LAYERED_TYPE_2D_ARRAY", + "value": 0 + }, + { + "name": "LAYERED_TYPE_CUBEMAP", + "value": 1 + }, + { + "name": "LAYERED_TYPE_CUBEMAP_ARRAY", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_get_format", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "_get_layered_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_width", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_height", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_layers", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_has_mipmaps", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_layer_data", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int" + } + ] + }, + { + "name": "get_format", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Image.Format" + } + }, + { + "name": "get_layered_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextureLayered.LayeredType" + } + }, + { + "name": "get_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "has_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_layer_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "TextureProgressBar", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Range", + "api_type": "core", + "enums": [ + { + "name": "FillMode", + "values": [ + { + "name": "FILL_LEFT_TO_RIGHT", + "value": 0 + }, + { + "name": "FILL_RIGHT_TO_LEFT", + "value": 1 + }, + { + "name": "FILL_TOP_TO_BOTTOM", + "value": 2 + }, + { + "name": "FILL_BOTTOM_TO_TOP", + "value": 3 + }, + { + "name": "FILL_CLOCKWISE", + "value": 4 + }, + { + "name": "FILL_COUNTER_CLOCKWISE", + "value": 5 + }, + { + "name": "FILL_BILINEAR_LEFT_AND_RIGHT", + "value": 6 + }, + { + "name": "FILL_BILINEAR_TOP_AND_BOTTOM", + "value": 7 + }, + { + "name": "FILL_CLOCKWISE_AND_COUNTER_CLOCKWISE", + "value": 8 + } + ] + } + ], + "methods": [ + { + "name": "set_under_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tex", + "type": "Texture2D" + } + ] + }, + { + "name": "get_under_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_progress_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tex", + "type": "Texture2D" + } + ] + }, + { + "name": "get_progress_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_over_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tex", + "type": "Texture2D" + } + ] + }, + { + "name": "get_over_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_fill_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_fill_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_tint_under", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tint", + "type": "Color" + } + ] + }, + { + "name": "get_tint_under", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_tint_progress", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tint", + "type": "Color" + } + ] + }, + { + "name": "get_tint_progress", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_tint_over", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tint", + "type": "Color" + } + ] + }, + { + "name": "get_tint_over", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_texture_progress_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_texture_progress_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_radial_initial_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radial_initial_angle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radial_center_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "Vector2" + } + ] + }, + { + "name": "get_radial_center_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_fill_degrees", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fill_degrees", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_stretch_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_stretch_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "margin", + "type": "enum::Side" + } + ] + }, + { + "name": "set_nine_patch_stretch", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stretch", + "type": "bool" + } + ] + }, + { + "name": "get_nine_patch_stretch", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "fill_mode", + "setter": "set_fill_mode", + "getter": "get_fill_mode", + "index": -1 + }, + { + "type": "bool", + "name": "nine_patch_stretch", + "setter": "set_nine_patch_stretch", + "getter": "get_nine_patch_stretch", + "index": -1 + }, + { + "type": "int", + "name": "stretch_margin_left", + "setter": "set_stretch_margin", + "getter": "get_stretch_margin", + "index": 0 + }, + { + "type": "int", + "name": "stretch_margin_top", + "setter": "set_stretch_margin", + "getter": "get_stretch_margin", + "index": 1 + }, + { + "type": "int", + "name": "stretch_margin_right", + "setter": "set_stretch_margin", + "getter": "get_stretch_margin", + "index": 2 + }, + { + "type": "int", + "name": "stretch_margin_bottom", + "setter": "set_stretch_margin", + "getter": "get_stretch_margin", + "index": 3 + }, + { + "type": "Texture2D", + "name": "texture_under", + "setter": "set_under_texture", + "getter": "get_under_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_over", + "setter": "set_over_texture", + "getter": "get_over_texture", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_progress", + "setter": "set_progress_texture", + "getter": "get_progress_texture", + "index": -1 + }, + { + "type": "Vector2", + "name": "texture_progress_offset", + "setter": "set_texture_progress_offset", + "getter": "get_texture_progress_offset", + "index": -1 + }, + { + "type": "Color", + "name": "tint_under", + "setter": "set_tint_under", + "getter": "get_tint_under", + "index": -1 + }, + { + "type": "Color", + "name": "tint_over", + "setter": "set_tint_over", + "getter": "get_tint_over", + "index": -1 + }, + { + "type": "Color", + "name": "tint_progress", + "setter": "set_tint_progress", + "getter": "get_tint_progress", + "index": -1 + }, + { + "type": "float", + "name": "radial_initial_angle", + "setter": "set_radial_initial_angle", + "getter": "get_radial_initial_angle", + "index": -1 + }, + { + "type": "float", + "name": "radial_fill_degrees", + "setter": "set_fill_degrees", + "getter": "get_fill_degrees", + "index": -1 + }, + { + "type": "Vector2", + "name": "radial_center_offset", + "setter": "set_radial_center_offset", + "getter": "get_radial_center_offset", + "index": -1 + } + ] + }, + { + "name": "TextureRect", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "StretchMode", + "values": [ + { + "name": "STRETCH_SCALE", + "value": 0 + }, + { + "name": "STRETCH_TILE", + "value": 1 + }, + { + "name": "STRETCH_KEEP", + "value": 2 + }, + { + "name": "STRETCH_KEEP_CENTERED", + "value": 3 + }, + { + "name": "STRETCH_KEEP_ASPECT", + "value": 4 + }, + { + "name": "STRETCH_KEEP_ASPECT_CENTERED", + "value": 5 + }, + { + "name": "STRETCH_KEEP_ASPECT_COVERED", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_ignore_texture_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ignore", + "type": "bool" + } + ] + }, + { + "name": "get_ignore_texture_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_h", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_h", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_flipped_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_stretch_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stretch_mode", + "type": "enum::TextureRect.StretchMode" + } + ] + }, + { + "name": "get_stretch_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TextureRect.StretchMode" + } + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "bool", + "name": "ignore_texture_size", + "setter": "set_ignore_texture_size", + "getter": "get_ignore_texture_size", + "index": -1 + }, + { + "type": "int", + "name": "stretch_mode", + "setter": "set_stretch_mode", + "getter": "get_stretch_mode", + "index": -1 + }, + { + "type": "bool", + "name": "flip_h", + "setter": "set_flip_h", + "getter": "is_flipped_h", + "index": -1 + }, + { + "type": "bool", + "name": "flip_v", + "setter": "set_flip_v", + "getter": "is_flipped_v", + "index": -1 + } + ] + }, + { + "name": "Theme", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "DataType", + "values": [ + { + "name": "DATA_TYPE_COLOR", + "value": 0 + }, + { + "name": "DATA_TYPE_CONSTANT", + "value": 1 + }, + { + "name": "DATA_TYPE_FONT", + "value": 2 + }, + { + "name": "DATA_TYPE_FONT_SIZE", + "value": 3 + }, + { + "name": "DATA_TYPE_ICON", + "value": 4 + }, + { + "name": "DATA_TYPE_STYLEBOX", + "value": 5 + }, + { + "name": "DATA_TYPE_MAX", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_icon_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_icon_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_stylebox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "texture", + "type": "StyleBox" + } + ] + }, + { + "name": "get_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "StyleBox" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_stylebox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_stylebox", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_stylebox_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_stylebox_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Font" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_font_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_font_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_font_size_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_font_size_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_color_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_color_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "constant", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_constant_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_constant_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_default_base_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_default_base_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "has_default_base_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_default_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Font" + } + }, + { + "name": "has_default_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "font_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_default_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "has_default_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_theme_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_theme_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "has_theme_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "rename_theme_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + }, + { + "name": "old_name", + "type": "StringName" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_theme_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + }, + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_theme_item_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + }, + { + "name": "theme_type", + "type": "String" + } + ] + }, + { + "name": "get_theme_item_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "data_type", + "type": "enum::Theme.DataType" + } + ] + }, + { + "name": "set_type_variation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "is_type_variation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + }, + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "clear_type_variation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_type_variation_base", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_type_variation_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "add_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "remove_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_type_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "merge_with", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "other", + "type": "Theme" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "float", + "name": "default_base_scale", + "setter": "set_default_base_scale", + "getter": "get_default_base_scale", + "index": -1 + }, + { + "type": "Font", + "name": "default_font", + "setter": "set_default_font", + "getter": "get_default_font", + "index": -1 + }, + { + "type": "int", + "name": "default_font_size", + "setter": "set_default_font_size", + "getter": "get_default_font_size", + "index": -1 + } + ] + }, + { + "name": "Thread", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "Priority", + "values": [ + { + "name": "PRIORITY_LOW", + "value": 0 + }, + { + "name": "PRIORITY_NORMAL", + "value": 1 + }, + { + "name": "PRIORITY_HIGH", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474135307, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "callable", + "type": "Callable" + }, + { + "name": "userdata", + "type": "Variant", + "default_value": "null" + }, + { + "name": "priority", + "type": "enum::Thread.Priority", + "default_value": "1" + } + ] + }, + { + "name": "get_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_started", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_alive", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "wait_to_finish", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Variant" + } + } + ] + }, + { + "name": "TileData", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "set_flip_h", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_h", + "type": "bool" + } + ] + }, + { + "name": "get_flip_h", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_flip_v", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flip_v", + "type": "bool" + } + ] + }, + { + "name": "get_flip_v", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_transpose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transpose", + "type": "bool" + } + ] + }, + { + "name": "get_transpose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "material", + "type": "ShaderMaterial" + } + ] + }, + { + "name": "get_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ShaderMaterial" + } + }, + { + "name": "set_texture_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_offset", + "type": "Vector2i" + } + ] + }, + { + "name": "get_texture_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_z_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "z_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_z_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_y_sort_origin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "y_sort_origin", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_y_sort_origin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_occluder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "occluder_polygon", + "type": "OccluderPolygon2D" + } + ] + }, + { + "name": "get_occluder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "OccluderPolygon2D" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_constant_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "velocity", + "type": "Vector2" + } + ] + }, + { + "name": "get_constant_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_constant_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "velocity", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constant_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_polygons_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygons_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_polygons_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_collision_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_collision_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_polygon_points", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon", + "type": "PackedVector2Array" + } + ] + }, + { + "name": "get_collision_polygon_points", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_polygon_one_way", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + }, + { + "name": "one_way", + "type": "bool" + } + ] + }, + { + "name": "is_collision_polygon_one_way", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_polygon_one_way_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + }, + { + "name": "one_way_margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_collision_polygon_one_way_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "polygon_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_terrain_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_terrain_set", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_peering_bit_terrain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "peering_bit", + "type": "enum::TileSet.CellNeighbor" + }, + { + "name": "terrain", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_peering_bit_terrain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "peering_bit", + "type": "enum::TileSet.CellNeighbor" + } + ] + }, + { + "name": "set_navigation_polygon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "navigation_polygon", + "type": "NavigationPolygon" + } + ] + }, + { + "name": "get_navigation_polygon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "NavigationPolygon" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_probability", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "probability", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_probability", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_custom_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_name", + "type": "String" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_custom_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "layer_name", + "type": "String" + } + ] + }, + { + "name": "set_custom_data_by_layer_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_custom_data_by_layer_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "layer_id", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "changed" + } + ], + "properties": [ + { + "type": "bool", + "name": "flip_h", + "setter": "set_flip_h", + "getter": "get_flip_h", + "index": -1 + }, + { + "type": "bool", + "name": "flip_v", + "setter": "set_flip_v", + "getter": "get_flip_v", + "index": -1 + }, + { + "type": "bool", + "name": "transpose", + "setter": "set_transpose", + "getter": "get_transpose", + "index": -1 + }, + { + "type": "Vector2i", + "name": "texture_offset", + "setter": "set_texture_offset", + "getter": "get_texture_offset", + "index": -1 + }, + { + "type": "Color", + "name": "modulate", + "setter": "set_modulate", + "getter": "get_modulate", + "index": -1 + }, + { + "type": "ShaderMaterial", + "name": "material", + "setter": "set_material", + "getter": "get_material", + "index": -1 + }, + { + "type": "int", + "name": "z_index", + "setter": "set_z_index", + "getter": "get_z_index", + "index": -1 + }, + { + "type": "int", + "name": "y_sort_origin", + "setter": "set_y_sort_origin", + "getter": "get_y_sort_origin", + "index": -1 + }, + { + "type": "int", + "name": "terrain_set", + "setter": "set_terrain_set", + "getter": "get_terrain_set", + "index": -1 + }, + { + "type": "float", + "name": "probability", + "setter": "set_probability", + "getter": "get_probability", + "index": -1 + } + ] + }, + { + "name": "TileMap", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "VisibilityMode", + "values": [ + { + "name": "VISIBILITY_MODE_DEFAULT", + "value": 0 + }, + { + "name": "VISIBILITY_MODE_FORCE_HIDE", + "value": 2 + }, + { + "name": "VISIBILITY_MODE_FORCE_SHOW", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "_use_tile_data_runtime_update", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer", + "type": "int" + }, + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "_tile_data_runtime_update", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "layer", + "type": "int" + }, + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "tile_data", + "type": "TileData" + } + ] + }, + { + "name": "set_tileset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tileset", + "type": "TileSet" + } + ] + }, + { + "name": "get_tileset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TileSet" + } + }, + { + "name": "set_quadrant_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_quadrant_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_layers_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "move_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_layer_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_layer_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_layer_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_layer_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_layer_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "enabled", + "type": "Color" + } + ] + }, + { + "name": "get_layer_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_layer_y_sort_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "y_sort_enabled", + "type": "bool" + } + ] + }, + { + "name": "is_layer_y_sort_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_layer_y_sort_origin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "y_sort_origin", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_layer_y_sort_origin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_layer_z_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "z_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_layer_z_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_collision_animatable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_collision_animatable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collision_visibility_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "collision_visibility_mode", + "type": "enum::TileMap.VisibilityMode" + } + ] + }, + { + "name": "get_collision_visibility_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::TileMap.VisibilityMode" + } + }, + { + "name": "set_navigation_visibility_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "navigation_visibility_mode", + "type": "enum::TileMap.VisibilityMode" + } + ] + }, + { + "name": "get_navigation_visibility_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::TileMap.VisibilityMode" + } + }, + { + "name": "set_cell", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36949783, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "source_id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "atlas_coords", + "type": "Vector2i", + "default_value": "Vector2i(-1, -1)" + }, + { + "name": "alternative_tile", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "erase_cell", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_cell_source_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "use_proxies", + "type": "bool" + } + ] + }, + { + "name": "get_cell_atlas_coords", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "use_proxies", + "type": "bool" + } + ] + }, + { + "name": "get_cell_alternative_tile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "use_proxies", + "type": "bool" + } + ] + }, + { + "name": "get_coords_for_body_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "body", + "type": "RID" + } + ] + }, + { + "name": "get_pattern", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "TileMapPattern" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_array", + "type": "Array" + } + ] + }, + { + "name": "map_pattern", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "position_in_tilemap", + "type": "Vector2i" + }, + { + "name": "coords_in_pattern", + "type": "Vector2i" + }, + { + "name": "pattern", + "type": "TileMapPattern" + } + ] + }, + { + "name": "set_pattern", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2i" + }, + { + "name": "pattern", + "type": "TileMapPattern" + } + ] + }, + { + "name": "set_cells_from_surrounding_terrains", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "cells", + "type": "Array" + }, + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "ignore_empty_terrains", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "fix_invalid_tiles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "force_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_surrounding_tiles", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_used_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_used_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "map_to_world", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "map_position", + "type": "Vector2i" + } + ] + }, + { + "name": "world_to_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "world_position", + "type": "Vector2" + } + ] + }, + { + "name": "get_neighbor_cell", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "neighbor", + "type": "enum::TileSet.CellNeighbor" + } + ] + } + ], + "signals": [ + { + "name": "changed" + } + ], + "properties": [ + { + "type": "TileSet", + "name": "tile_set", + "setter": "set_tileset", + "getter": "get_tileset", + "index": -1 + }, + { + "type": "int", + "name": "cell_quadrant_size", + "setter": "set_quadrant_size", + "getter": "get_quadrant_size", + "index": -1 + }, + { + "type": "bool", + "name": "collision_animatable", + "setter": "set_collision_animatable", + "getter": "is_collision_animatable", + "index": -1 + }, + { + "type": "int", + "name": "collision_visibility_mode", + "setter": "set_collision_visibility_mode", + "getter": "get_collision_visibility_mode", + "index": -1 + }, + { + "type": "int", + "name": "navigation_visibility_mode", + "setter": "set_navigation_visibility_mode", + "getter": "get_navigation_visibility_mode", + "index": -1 + }, + { + "type": "layer_", + "name": "layers", + "setter": "", + "getter": "", + "index": -1 + } + ] + }, + { + "name": "TileMapPattern", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_cell", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 89226873, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "source_id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "atlas_coords", + "type": "Vector2i", + "default_value": "Vector2i(-1, -1)" + }, + { + "name": "alternative_tile", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "has_cell", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "remove_cell", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + }, + { + "name": "update_size", + "type": "bool" + } + ] + }, + { + "name": "get_cell_source_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_cell_atlas_coords", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_cell_alternative_tile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_used_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "is_empty", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "TileSet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "TileShape", + "values": [ + { + "name": "TILE_SHAPE_SQUARE", + "value": 0 + }, + { + "name": "TILE_SHAPE_ISOMETRIC", + "value": 1 + }, + { + "name": "TILE_SHAPE_HALF_OFFSET_SQUARE", + "value": 2 + }, + { + "name": "TILE_SHAPE_HEXAGON", + "value": 3 + } + ] + }, + { + "name": "TileLayout", + "values": [ + { + "name": "TILE_LAYOUT_STACKED", + "value": 0 + }, + { + "name": "TILE_LAYOUT_STACKED_OFFSET", + "value": 1 + }, + { + "name": "TILE_LAYOUT_STAIRS_RIGHT", + "value": 2 + }, + { + "name": "TILE_LAYOUT_STAIRS_DOWN", + "value": 3 + }, + { + "name": "TILE_LAYOUT_DIAMOND_RIGHT", + "value": 4 + }, + { + "name": "TILE_LAYOUT_DIAMOND_DOWN", + "value": 5 + } + ] + }, + { + "name": "TileOffsetAxis", + "values": [ + { + "name": "TILE_OFFSET_AXIS_HORIZONTAL", + "value": 0 + }, + { + "name": "TILE_OFFSET_AXIS_VERTICAL", + "value": 1 + } + ] + }, + { + "name": "CellNeighbor", + "values": [ + { + "name": "CELL_NEIGHBOR_RIGHT_SIDE", + "value": 0 + }, + { + "name": "CELL_NEIGHBOR_RIGHT_CORNER", + "value": 1 + }, + { + "name": "CELL_NEIGHBOR_BOTTOM_RIGHT_SIDE", + "value": 2 + }, + { + "name": "CELL_NEIGHBOR_BOTTOM_RIGHT_CORNER", + "value": 3 + }, + { + "name": "CELL_NEIGHBOR_BOTTOM_SIDE", + "value": 4 + }, + { + "name": "CELL_NEIGHBOR_BOTTOM_CORNER", + "value": 5 + }, + { + "name": "CELL_NEIGHBOR_BOTTOM_LEFT_SIDE", + "value": 6 + }, + { + "name": "CELL_NEIGHBOR_BOTTOM_LEFT_CORNER", + "value": 7 + }, + { + "name": "CELL_NEIGHBOR_LEFT_SIDE", + "value": 8 + }, + { + "name": "CELL_NEIGHBOR_LEFT_CORNER", + "value": 9 + }, + { + "name": "CELL_NEIGHBOR_TOP_LEFT_SIDE", + "value": 10 + }, + { + "name": "CELL_NEIGHBOR_TOP_LEFT_CORNER", + "value": 11 + }, + { + "name": "CELL_NEIGHBOR_TOP_SIDE", + "value": 12 + }, + { + "name": "CELL_NEIGHBOR_TOP_CORNER", + "value": 13 + }, + { + "name": "CELL_NEIGHBOR_TOP_RIGHT_SIDE", + "value": 14 + }, + { + "name": "CELL_NEIGHBOR_TOP_RIGHT_CORNER", + "value": 15 + } + ] + }, + { + "name": "TerrainMode", + "values": [ + { + "name": "TERRAIN_MODE_MATCH_CORNERS_AND_SIDES", + "value": 0 + }, + { + "name": "TERRAIN_MODE_MATCH_CORNERS", + "value": 1 + }, + { + "name": "TERRAIN_MODE_MATCH_SIDES", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "get_next_source_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "source", + "type": "TileSetSource" + }, + { + "name": "atlas_source_id_override", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "source_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_source_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "source_id", + "type": "int", + "meta": "int32" + }, + { + "name": "new_source_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_source_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_source_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "source_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "TileSetSource" + }, + "arguments": [ + { + "name": "source_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tile_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "enum::TileSet.TileShape" + } + ] + }, + { + "name": "get_tile_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TileSet.TileShape" + } + }, + { + "name": "set_tile_layout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layout", + "type": "enum::TileSet.TileLayout" + } + ] + }, + { + "name": "get_tile_layout", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TileSet.TileLayout" + } + }, + { + "name": "set_tile_offset_axis", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "alignment", + "type": "enum::TileSet.TileOffsetAxis" + } + ] + }, + { + "name": "get_tile_offset_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TileSet.TileOffsetAxis" + } + }, + { + "name": "set_tile_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_tile_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_uv_clipping", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "uv_clipping", + "type": "bool" + } + ] + }, + { + "name": "is_uv_clipping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_occlusion_layers_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_occlusion_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "to_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_occlusion_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_occlusion_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_occlusion_layer_light_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "light_mask", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_occlusion_layer_light_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_occlusion_layer_sdf_collision", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "sdf_collision", + "type": "bool" + } + ] + }, + { + "name": "get_occlusion_layer_sdf_collision", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_physics_layers_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_physics_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "to_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_physics_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_physics_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_physics_layer_collision_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_physics_layer_collision_layer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_physics_layer_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_physics_layer_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_physics_layer_physics_material", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "physics_material", + "type": "PhysicsMaterial" + } + ] + }, + { + "name": "get_physics_layer_physics_material", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PhysicsMaterial" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_terrain_sets_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_terrain_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "to_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_terrain_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_terrain_set", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_terrain_set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "mode", + "type": "enum::TileSet.TerrainMode" + } + ] + }, + { + "name": "get_terrain_set_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TileSet.TerrainMode" + }, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_terrains_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_terrain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_terrain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain_index", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_terrain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_terrain_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain_index", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_terrain_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_terrain_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain_index", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_terrain_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_navigation_layers_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_navigation_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "to_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_navigation_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_navigation_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_navigation_layer_layers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "layers", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_navigation_layer_layers", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_custom_data_layers_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "add_custom_data_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "to_position", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "move_custom_data_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "to_position", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_custom_data_layer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_source_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "source_to", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_source_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_source_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_source_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_coords_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "p_source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + }, + { + "name": "source_to", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_to", + "type": "Vector2i" + } + ] + }, + { + "name": "get_coords_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + } + ] + }, + { + "name": "has_coords_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + } + ] + }, + { + "name": "remove_coords_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + } + ] + }, + { + "name": "set_alternative_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + }, + { + "name": "alternative_from", + "type": "int", + "meta": "int32" + }, + { + "name": "source_to", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_to", + "type": "Vector2i" + }, + { + "name": "alternative_to", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_alternative_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + }, + { + "name": "alternative_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_alternative_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + }, + { + "name": "alternative_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_alternative_level_tile_proxy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + }, + { + "name": "alternative_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "map_tile_proxy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "source_from", + "type": "int", + "meta": "int32" + }, + { + "name": "coords_from", + "type": "Vector2i" + }, + { + "name": "alternative_from", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "cleanup_invalid_tile_proxies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "clear_tile_proxies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_pattern", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "pattern", + "type": "TileMapPattern" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_pattern", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204402, + "return_value": { + "type": "TileMapPattern" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_pattern", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_patterns_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "tile_shape", + "setter": "set_tile_shape", + "getter": "get_tile_shape", + "index": -1 + }, + { + "type": "int", + "name": "tile_layout", + "setter": "set_tile_layout", + "getter": "get_tile_layout", + "index": -1 + }, + { + "type": "int", + "name": "tile_offset_axis", + "setter": "set_tile_offset_axis", + "getter": "get_tile_offset_axis", + "index": -1 + }, + { + "type": "Vector2i", + "name": "tile_size", + "setter": "set_tile_size", + "getter": "get_tile_size", + "index": -1 + }, + { + "type": "bool", + "name": "uv_clipping", + "setter": "set_uv_clipping", + "getter": "is_uv_clipping", + "index": -1 + }, + { + "type": "occlusion_layer_", + "name": "occlusion_layers", + "setter": "", + "getter": "", + "index": -1 + }, + { + "type": "physics_layer_", + "name": "physics_layers", + "setter": "", + "getter": "", + "index": -1 + }, + { + "type": "terrain_set_", + "name": "terrain_sets", + "setter": "", + "getter": "", + "index": -1 + }, + { + "type": "navigation_layer_", + "name": "navigation_layers", + "setter": "", + "getter": "", + "index": -1 + }, + { + "type": "custom_data_layer_", + "name": "custom_data_layers", + "setter": "", + "getter": "", + "index": -1 + } + ] + }, + { + "name": "TileSetAtlasSource", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "TileSetSource", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_margins", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "margins", + "type": "Vector2i" + } + ] + }, + { + "name": "get_margins", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_separation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "separation", + "type": "Vector2i" + } + ] + }, + { + "name": "get_separation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_texture_region_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture_region_size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_texture_region_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_use_texture_padding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use_texture_padding", + "type": "bool" + } + ] + }, + { + "name": "get_use_texture_padding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "create_tile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "size", + "type": "Vector2i", + "default_value": "Vector2i(1, 1)" + } + ] + }, + { + "name": "remove_tile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "move_tile_in_atlas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2269103917, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "new_atlas_coords", + "type": "Vector2i", + "default_value": "Vector2i(-1, -1)" + }, + { + "name": "new_size", + "type": "Vector2i", + "default_value": "Vector2i(-1, -1)" + } + ] + }, + { + "name": "get_tile_size_in_atlas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "has_room_for_tile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 178343150, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "size", + "type": "Vector2i" + }, + { + "name": "animation_columns", + "type": "int", + "meta": "int32" + }, + { + "name": "animation_separation", + "type": "Vector2i" + }, + { + "name": "frames_count", + "type": "int", + "meta": "int32" + }, + { + "name": "ignored_tile", + "type": "Vector2i", + "default_value": "Vector2i(-1, -1)" + } + ] + }, + { + "name": "get_tiles_to_be_removed_on_change", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "PackedVector2Array" + }, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + }, + { + "name": "margins", + "type": "Vector2i" + }, + { + "name": "separation", + "type": "Vector2i" + }, + { + "name": "texture_region_size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_tile_at_coords", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "set_tile_animation_columns", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "frame_columns", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tile_animation_columns", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "set_tile_animation_separation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "separation", + "type": "Vector2i" + } + ] + }, + { + "name": "get_tile_animation_separation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "set_tile_animation_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tile_animation_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "set_tile_animation_frames_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "frames_count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tile_animation_frames_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "set_tile_animation_frame_duration", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "frame_index", + "type": "int", + "meta": "int32" + }, + { + "name": "duration", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_tile_animation_frame_duration", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "frame_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tile_animation_total_duration", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "create_alternative_tile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "alternative_id_override", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "remove_alternative_tile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "alternative_tile", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_alternative_tile_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "alternative_tile", + "type": "int", + "meta": "int32" + }, + { + "name": "new_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_next_alternative_tile_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_tile_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "TileData" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "alternative_tile", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_atlas_grid_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "get_tile_texture_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Rect2i" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "frame", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "get_runtime_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "get_runtime_tile_texture_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Rect2i" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "frame", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "Vector2i", + "name": "margins", + "setter": "set_margins", + "getter": "get_margins", + "index": -1 + }, + { + "type": "Vector2i", + "name": "separation", + "setter": "set_separation", + "getter": "get_separation", + "index": -1 + }, + { + "type": "Vector2i", + "name": "texture_region_size", + "setter": "set_texture_region_size", + "getter": "get_texture_region_size", + "index": -1 + }, + { + "type": "bool", + "name": "use_texture_padding", + "setter": "set_use_texture_padding", + "getter": "get_use_texture_padding", + "index": -1 + } + ] + }, + { + "name": "TileSetScenesCollectionSource", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "TileSetSource", + "api_type": "core", + "methods": [ + { + "name": "get_scene_tiles_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_scene_tile_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_scene_tile_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "create_scene_tile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "packed_scene", + "type": "PackedScene" + }, + { + "name": "id_override", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "set_scene_tile_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "new_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_scene_tile_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "packed_scene", + "type": "PackedScene" + } + ] + }, + { + "name": "get_scene_tile_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedScene" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_scene_tile_display_placeholder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "display_placeholder", + "type": "bool" + } + ] + }, + { + "name": "get_scene_tile_display_placeholder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_scene_tile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_next_scene_tile_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "TileSetSource", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_tiles_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_tile_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2i" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_tile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_alternative_tiles_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + } + ] + }, + { + "name": "get_alternative_tile_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_alternative_tile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "atlas_coords", + "type": "Vector2i" + }, + { + "name": "alternative_tile", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "Time", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "Month", + "values": [ + { + "name": "MONTH_JANUARY", + "value": 1 + }, + { + "name": "MONTH_FEBRUARY", + "value": 2 + }, + { + "name": "MONTH_MARCH", + "value": 3 + }, + { + "name": "MONTH_APRIL", + "value": 4 + }, + { + "name": "MONTH_MAY", + "value": 5 + }, + { + "name": "MONTH_JUNE", + "value": 6 + }, + { + "name": "MONTH_JULY", + "value": 7 + }, + { + "name": "MONTH_AUGUST", + "value": 8 + }, + { + "name": "MONTH_SEPTEMBER", + "value": 9 + }, + { + "name": "MONTH_OCTOBER", + "value": 10 + }, + { + "name": "MONTH_NOVEMBER", + "value": 11 + }, + { + "name": "MONTH_DECEMBER", + "value": 12 + } + ] + }, + { + "name": "Weekday", + "values": [ + { + "name": "WEEKDAY_SUNDAY", + "value": 0 + }, + { + "name": "WEEKDAY_MONDAY", + "value": 1 + }, + { + "name": "WEEKDAY_TUESDAY", + "value": 2 + }, + { + "name": "WEEKDAY_WEDNESDAY", + "value": 3 + }, + { + "name": "WEEKDAY_THURSDAY", + "value": 4 + }, + { + "name": "WEEKDAY_FRIDAY", + "value": 5 + }, + { + "name": "WEEKDAY_SATURDAY", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "get_datetime_dict_from_unix_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "unix_time_val", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_date_dict_from_unix_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "unix_time_val", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_time_dict_from_unix_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "unix_time_val", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_datetime_string_from_unix_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "unix_time_val", + "type": "int", + "meta": "int64" + }, + { + "name": "use_space", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_date_string_from_unix_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "unix_time_val", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_time_string_from_unix_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "unix_time_val", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_datetime_dict_from_datetime_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "datetime", + "type": "String" + }, + { + "name": "weekday", + "type": "bool" + } + ] + }, + { + "name": "get_datetime_string_from_datetime_dict", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "datetime", + "type": "Dictionary" + }, + { + "name": "use_space", + "type": "bool" + } + ] + }, + { + "name": "get_unix_time_from_datetime_dict", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "datetime", + "type": "Dictionary" + } + ] + }, + { + "name": "get_unix_time_from_datetime_string", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "datetime", + "type": "String" + } + ] + }, + { + "name": "get_offset_string_from_offset_minutes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "offset_minutes", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_datetime_dict_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "utc", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_date_dict_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "utc", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_time_dict_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "utc", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_datetime_string_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1434999947, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "utc", + "type": "bool", + "default_value": "false" + }, + { + "name": "use_space", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_date_string_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "utc", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_time_string_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413545, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "utc", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_time_zone_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "get_unix_time_from_system", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "get_ticks_msec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_ticks_usec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + } + ] + }, + { + "name": "Timer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "enums": [ + { + "name": "TimerProcessCallback", + "values": [ + { + "name": "TIMER_PROCESS_PHYSICS", + "value": 0 + }, + { + "name": "TIMER_PROCESS_IDLE", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_wait_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "time_sec", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_wait_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_one_shot", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_one_shot", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_autostart", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_autostart", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 110069009, + "arguments": [ + { + "name": "time_sec", + "type": "float", + "meta": "double", + "default_value": "-1" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_paused", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "paused", + "type": "bool" + } + ] + }, + { + "name": "is_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_stopped", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_time_left", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_timer_process_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "callback", + "type": "enum::Timer.TimerProcessCallback" + } + ] + }, + { + "name": "get_timer_process_callback", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Timer.TimerProcessCallback" + } + } + ], + "signals": [ + { + "name": "timeout" + } + ], + "properties": [ + { + "type": "int", + "name": "process_callback", + "setter": "set_timer_process_callback", + "getter": "get_timer_process_callback", + "index": -1 + }, + { + "type": "float", + "name": "wait_time", + "setter": "set_wait_time", + "getter": "get_wait_time", + "index": -1 + }, + { + "type": "bool", + "name": "one_shot", + "setter": "set_one_shot", + "getter": "is_one_shot", + "index": -1 + }, + { + "type": "bool", + "name": "autostart", + "setter": "set_autostart", + "getter": "has_autostart", + "index": -1 + }, + { + "type": "bool", + "name": "paused", + "setter": "set_paused", + "getter": "is_paused", + "index": -1 + }, + { + "type": "float", + "name": "time_left", + "setter": "", + "getter": "get_time_left", + "index": -1 + } + ] + }, + { + "name": "TouchScreenButton", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "enums": [ + { + "name": "VisibilityMode", + "values": [ + { + "name": "VISIBILITY_ALWAYS", + "value": 0 + }, + { + "name": "VISIBILITY_TOUCHSCREEN_ONLY", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "set_texture_normal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_texture_pressed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_bitmask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bitmask", + "type": "BitMap" + } + ] + }, + { + "name": "get_bitmask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "BitMap" + } + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "shape", + "type": "Shape2D" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Shape2D" + } + }, + { + "name": "set_shape_centered", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bool", + "type": "bool" + } + ] + }, + { + "name": "is_shape_centered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shape_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bool", + "type": "bool" + } + ] + }, + { + "name": "is_shape_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "action", + "type": "String" + } + ] + }, + { + "name": "get_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_visibility_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::TouchScreenButton.VisibilityMode" + } + ] + }, + { + "name": "get_visibility_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::TouchScreenButton.VisibilityMode" + } + }, + { + "name": "set_passby_press", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_passby_press_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "pressed" + }, + { + "name": "released" + } + ], + "properties": [ + { + "type": "Texture2D", + "name": "texture_normal", + "setter": "set_texture_normal", + "getter": "get_texture_normal", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture_pressed", + "setter": "set_texture_pressed", + "getter": "get_texture_pressed", + "index": -1 + }, + { + "type": "BitMap", + "name": "bitmask", + "setter": "set_bitmask", + "getter": "get_bitmask", + "index": -1 + }, + { + "type": "Shape2D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "bool", + "name": "shape_centered", + "setter": "set_shape_centered", + "getter": "is_shape_centered", + "index": -1 + }, + { + "type": "bool", + "name": "shape_visible", + "setter": "set_shape_visible", + "getter": "is_shape_visible", + "index": -1 + }, + { + "type": "bool", + "name": "passby_press", + "setter": "set_passby_press", + "getter": "is_passby_press_enabled", + "index": -1 + }, + { + "type": "StringName", + "name": "action", + "setter": "set_action", + "getter": "get_action", + "index": -1 + }, + { + "type": "int", + "name": "visibility_mode", + "setter": "set_visibility_mode", + "getter": "get_visibility_mode", + "index": -1 + } + ] + }, + { + "name": "Translation", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "_get_plural_message", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "src_plural_message", + "type": "StringName" + }, + { + "name": "n", + "type": "int" + }, + { + "name": "context", + "type": "StringName" + } + ] + }, + { + "name": "_get_message", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "context", + "type": "StringName" + } + ] + }, + { + "name": "set_locale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "get_locale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "add_message", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "xlated_message", + "type": "StringName" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "add_plural_message", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "xlated_messages", + "type": "PackedStringArray" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_message", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_plural_message", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971308, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "src_plural_message", + "type": "StringName" + }, + { + "name": "n", + "type": "int", + "meta": "int32" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "erase_message", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "src_message", + "type": "StringName" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_message_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_message_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "messages", + "setter": "_set_messages", + "getter": "_get_messages", + "index": -1 + }, + { + "type": "String", + "name": "locale", + "setter": "set_locale", + "getter": "get_locale", + "index": -1 + } + ] + }, + { + "name": "TranslationServer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "set_locale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "get_locale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_tool_locale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + }, + { + "name": "compare_locales", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "locale_a", + "type": "String" + }, + { + "name": "locale_b", + "type": "String" + } + ] + }, + { + "name": "standardize_locale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "get_all_languages", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_language_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_all_scripts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_script_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "get_all_countries", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_country_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "country", + "type": "String" + } + ] + }, + { + "name": "get_locale_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "translate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "message", + "type": "StringName" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "translate_plural", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 175971308, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "message", + "type": "StringName" + }, + { + "name": "plural_message", + "type": "StringName" + }, + { + "name": "n", + "type": "int", + "meta": "int32" + }, + { + "name": "context", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "add_translation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "translation", + "type": "Translation" + } + ] + }, + { + "name": "remove_translation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "translation", + "type": "Translation" + } + ] + }, + { + "name": "get_translation_object", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Translation" + }, + "arguments": [ + { + "name": "locale", + "type": "String" + } + ] + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_loaded_locales", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "is_pseudolocalization_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_pseudolocalization_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "reload_pseudolocalization", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "pseudolocalize", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "message", + "type": "StringName" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "pseudolocalization_enabled", + "setter": "set_pseudolocalization_enabled", + "getter": "is_pseudolocalization_enabled", + "index": -1 + } + ] + }, + { + "name": "Tree", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "enums": [ + { + "name": "SelectMode", + "values": [ + { + "name": "SELECT_SINGLE", + "value": 0 + }, + { + "name": "SELECT_ROW", + "value": 1 + }, + { + "name": "SELECT_MULTI", + "value": 2 + } + ] + }, + { + "name": "DropModeFlags", + "values": [ + { + "name": "DROP_MODE_DISABLED", + "value": 0 + }, + { + "name": "DROP_MODE_ON_ITEM", + "value": 1 + }, + { + "name": "DROP_MODE_INBETWEEN", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "create_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1411790804, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "parent", + "type": "TreeItem", + "default_value": "null" + }, + { + "name": "idx", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_root", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "set_column_custom_minimum_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "min_width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_column_expand", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "expand", + "type": "bool" + } + ] + }, + { + "name": "set_column_expand_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "ratio", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_column_clip_content", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_column_expanding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_column_clipping_content", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_column_expand_ratio", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_column_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_hide_root", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_root_hidden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_next_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "from", + "type": "TreeItem" + } + ] + }, + { + "name": "get_selected", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "get_selected_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_pressed_button", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_select_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Tree.SelectMode" + } + ] + }, + { + "name": "get_select_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Tree.SelectMode" + } + }, + { + "name": "set_columns", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_columns", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_edited", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "get_edited_column", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "edit_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_custom_popup_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "get_item_area_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1450926230, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "item", + "type": "TreeItem" + }, + { + "name": "column", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "button_index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_item_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_column_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_drop_section_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_button_id_at_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "ensure_cursor_is_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_column_titles_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "are_column_titles_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_column_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_column_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_column_title_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_column_title_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Control.TextDirection" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_column_title_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_column_title_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_column_title_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_column_title_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_column_title_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_scroll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "scroll_to_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "item", + "type": "TreeItem" + }, + { + "name": "center_on_item", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "set_h_scroll_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "h_scroll", + "type": "bool" + } + ] + }, + { + "name": "is_h_scroll_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_v_scroll_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "h_scroll", + "type": "bool" + } + ] + }, + { + "name": "is_v_scroll_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hide_folding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hide", + "type": "bool" + } + ] + }, + { + "name": "is_folding_hidden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_drop_mode_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_drop_mode_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_allow_rmb_select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "get_allow_rmb_select", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_allow_reselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "allow", + "type": "bool" + } + ] + }, + { + "name": "get_allow_reselect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "item_selected" + }, + { + "name": "cell_selected" + }, + { + "name": "multi_selected", + "arguments": [ + { + "name": "item", + "type": "TreeItem" + }, + { + "name": "column", + "type": "int" + }, + { + "name": "selected", + "type": "bool" + } + ] + }, + { + "name": "item_mouse_selected", + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "mouse_button_index", + "type": "int" + } + ] + }, + { + "name": "empty_clicked", + "arguments": [ + { + "name": "position", + "type": "Vector2" + }, + { + "name": "mouse_button_index", + "type": "int" + } + ] + }, + { + "name": "item_edited" + }, + { + "name": "custom_item_clicked", + "arguments": [ + { + "name": "mouse_button_index", + "type": "int" + } + ] + }, + { + "name": "item_custom_button_pressed" + }, + { + "name": "item_double_clicked" + }, + { + "name": "item_collapsed", + "arguments": [ + { + "name": "item", + "type": "TreeItem" + } + ] + }, + { + "name": "check_propagated_to_item", + "arguments": [ + { + "name": "item", + "type": "TreeItem" + }, + { + "name": "column", + "type": "int" + } + ] + }, + { + "name": "button_clicked", + "arguments": [ + { + "name": "item", + "type": "TreeItem" + }, + { + "name": "column", + "type": "int" + }, + { + "name": "id", + "type": "int" + }, + { + "name": "mouse_button_index", + "type": "int" + } + ] + }, + { + "name": "custom_popup_edited", + "arguments": [ + { + "name": "arrow_clicked", + "type": "bool" + } + ] + }, + { + "name": "item_activated" + }, + { + "name": "column_title_pressed", + "arguments": [ + { + "name": "column", + "type": "int" + } + ] + }, + { + "name": "nothing_selected" + } + ], + "properties": [ + { + "type": "int", + "name": "columns", + "setter": "set_columns", + "getter": "get_columns", + "index": -1 + }, + { + "type": "bool", + "name": "column_titles_visible", + "setter": "set_column_titles_visible", + "getter": "are_column_titles_visible", + "index": -1 + }, + { + "type": "bool", + "name": "allow_reselect", + "setter": "set_allow_reselect", + "getter": "get_allow_reselect", + "index": -1 + }, + { + "type": "bool", + "name": "allow_rmb_select", + "setter": "set_allow_rmb_select", + "getter": "get_allow_rmb_select", + "index": -1 + }, + { + "type": "bool", + "name": "hide_folding", + "setter": "set_hide_folding", + "getter": "is_folding_hidden", + "index": -1 + }, + { + "type": "bool", + "name": "hide_root", + "setter": "set_hide_root", + "getter": "is_root_hidden", + "index": -1 + }, + { + "type": "int", + "name": "drop_mode_flags", + "setter": "set_drop_mode_flags", + "getter": "get_drop_mode_flags", + "index": -1 + }, + { + "type": "int", + "name": "select_mode", + "setter": "set_select_mode", + "getter": "get_select_mode", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_horizontal_enabled", + "setter": "set_h_scroll_enabled", + "getter": "is_h_scroll_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "scroll_vertical_enabled", + "setter": "set_v_scroll_enabled", + "getter": "is_v_scroll_enabled", + "index": -1 + } + ] + }, + { + "name": "TreeItem", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "TreeCellMode", + "values": [ + { + "name": "CELL_MODE_STRING", + "value": 0 + }, + { + "name": "CELL_MODE_CHECK", + "value": 1 + }, + { + "name": "CELL_MODE_RANGE", + "value": 2 + }, + { + "name": "CELL_MODE_ICON", + "value": 3 + }, + { + "name": "CELL_MODE_CUSTOM", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_cell_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "mode", + "type": "enum::TreeItem.TreeCellMode" + } + ] + }, + { + "name": "get_cell_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TreeItem.TreeCellMode" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_checked", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "checked", + "type": "bool" + } + ] + }, + { + "name": "set_indeterminate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "indeterminate", + "type": "bool" + } + ] + }, + { + "name": "is_checked", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_indeterminate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "propagate_check", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "emit_signal", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_text_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "direction", + "type": "enum::Control.TextDirection" + } + ] + }, + { + "name": "get_text_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Control.TextDirection" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_opentype_feature", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_opentype_feature", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "tag", + "type": "String" + } + ] + }, + { + "name": "clear_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_structured_text_bidi_override", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "parser", + "type": "enum::TextServer.StructuredTextParser" + } + ] + }, + { + "name": "get_structured_text_bidi_override", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::TextServer.StructuredTextParser" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_structured_text_bidi_override_options", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "get_structured_text_bidi_override_options", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_language", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "get_language", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_suffix", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_suffix", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_icon", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_icon_region", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "region", + "type": "Rect2" + } + ] + }, + { + "name": "get_icon_region", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Rect2" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_icon_max_width", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "width", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_icon_max_width", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_icon_modulate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "modulate", + "type": "Color" + } + ] + }, + { + "name": "get_icon_modulate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "double" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_range_config", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 138021803, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "min", + "type": "float", + "meta": "double" + }, + { + "name": "max", + "type": "float", + "meta": "double" + }, + { + "name": "step", + "type": "float", + "meta": "double" + }, + { + "name": "expr", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_range_config", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_metadata", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "meta", + "type": "Variant" + } + ] + }, + { + "name": "get_metadata", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "object", + "type": "Object" + }, + { + "name": "callback", + "type": "StringName" + } + ] + }, + { + "name": "set_collapsed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collapsed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "uncollapse_tree", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_custom_minimum_height", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "height", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_custom_minimum_height", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_selectable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "selectable", + "type": "bool" + } + ] + }, + { + "name": "is_selectable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "is_selected", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "select", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "deselect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_editable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_custom_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_custom_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_custom_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Font" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_custom_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_bg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "color", + "type": "Color" + }, + { + "name": "just_outline", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "clear_custom_bg_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_custom_bg_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_as_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_custom_set_as_button", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36949783, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button", + "type": "Texture2D" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "disabled", + "type": "bool", + "default_value": "false" + }, + { + "name": "tooltip", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_button_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_button_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_button_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_button_by_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_button", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "button", + "type": "Texture2D" + } + ] + }, + { + "name": "erase_button", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_button_disabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "disabled", + "type": "bool" + } + ] + }, + { + "name": "is_button_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "button_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tooltip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "tooltip", + "type": "String" + } + ] + }, + { + "name": "get_tooltip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_text_alignment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "text_alignment", + "type": "enum::HorizontalAlignment" + } + ] + }, + { + "name": "get_text_alignment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::HorizontalAlignment" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_expand_right", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_expand_right", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "column", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_disable_folding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_folding_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "create_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 149204402, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "get_tree", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Tree" + } + }, + { + "name": "get_next", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "get_prev", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "get_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "get_first_child", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "TreeItem" + } + }, + { + "name": "get_next_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "wrap", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_prev_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172413512, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "wrap", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "TreeItem" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_child_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_children", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Array" + } + }, + { + "name": "get_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "move_before", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "item", + "type": "TreeItem" + } + ] + }, + { + "name": "move_after", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "item", + "type": "TreeItem" + } + ] + }, + { + "name": "remove_child", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "child", + "type": "TreeItem" + } + ] + }, + { + "name": "call_recursive", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134188167, + "arguments": [ + { + "name": "method", + "type": "StringName" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "collapsed", + "setter": "set_collapsed", + "getter": "is_collapsed", + "index": -1 + }, + { + "type": "bool", + "name": "visible", + "setter": "set_visible", + "getter": "is_visible", + "index": -1 + }, + { + "type": "bool", + "name": "disable_folding", + "setter": "set_disable_folding", + "getter": "is_folding_disabled", + "index": -1 + }, + { + "type": "int", + "name": "custom_minimum_height", + "setter": "set_custom_minimum_height", + "getter": "get_custom_minimum_height", + "index": -1 + } + ] + }, + { + "name": "TriangleMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core" + }, + { + "name": "TubeTrailMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radial_steps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "radial_steps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_radial_steps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_sections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sections", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_sections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_section_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "section_length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_section_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_section_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "section_rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_section_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_curve", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "curve", + "type": "Curve" + } + ] + }, + { + "name": "get_curve", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Curve" + } + } + ], + "properties": [ + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "int", + "name": "radial_steps", + "setter": "set_radial_steps", + "getter": "get_radial_steps", + "index": -1 + }, + { + "type": "int", + "name": "sections", + "setter": "set_sections", + "getter": "get_sections", + "index": -1 + }, + { + "type": "float", + "name": "section_length", + "setter": "set_section_length", + "getter": "get_section_length", + "index": -1 + }, + { + "type": "int", + "name": "section_rings", + "setter": "set_section_rings", + "getter": "get_section_rings", + "index": -1 + }, + { + "type": "Curve", + "name": "curve", + "setter": "set_curve", + "getter": "get_curve", + "index": -1 + } + ] + }, + { + "name": "Tween", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "TweenProcessMode", + "values": [ + { + "name": "TWEEN_PROCESS_PHYSICS", + "value": 0 + }, + { + "name": "TWEEN_PROCESS_IDLE", + "value": 1 + } + ] + }, + { + "name": "TweenPauseMode", + "values": [ + { + "name": "TWEEN_PAUSE_BOUND", + "value": 0 + }, + { + "name": "TWEEN_PAUSE_STOP", + "value": 1 + }, + { + "name": "TWEEN_PAUSE_PROCESS", + "value": 2 + } + ] + }, + { + "name": "TransitionType", + "values": [ + { + "name": "TRANS_LINEAR", + "value": 0 + }, + { + "name": "TRANS_SINE", + "value": 1 + }, + { + "name": "TRANS_QUINT", + "value": 2 + }, + { + "name": "TRANS_QUART", + "value": 3 + }, + { + "name": "TRANS_QUAD", + "value": 4 + }, + { + "name": "TRANS_EXPO", + "value": 5 + }, + { + "name": "TRANS_ELASTIC", + "value": 6 + }, + { + "name": "TRANS_CUBIC", + "value": 7 + }, + { + "name": "TRANS_CIRC", + "value": 8 + }, + { + "name": "TRANS_BOUNCE", + "value": 9 + }, + { + "name": "TRANS_BACK", + "value": 10 + } + ] + }, + { + "name": "EaseType", + "values": [ + { + "name": "EASE_IN", + "value": 0 + }, + { + "name": "EASE_OUT", + "value": 1 + }, + { + "name": "EASE_IN_OUT", + "value": 2 + }, + { + "name": "EASE_OUT_IN", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "tween_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "PropertyTweener" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "property", + "type": "NodePath" + }, + { + "name": "final_val", + "type": "Variant" + }, + { + "name": "duration", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "tween_interval", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "IntervalTweener" + }, + "arguments": [ + { + "name": "time", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "tween_callback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "CallbackTweener" + }, + "arguments": [ + { + "name": "callback", + "type": "Callable" + } + ] + }, + { + "name": "tween_method", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "MethodTweener" + }, + "arguments": [ + { + "name": "method", + "type": "Callable" + }, + { + "name": "from", + "type": "Variant" + }, + { + "name": "to", + "type": "Variant" + }, + { + "name": "duration", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "custom_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "delta", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "pause", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "kill", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_total_elapsed_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "is_running", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "is_valid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "bind_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "node", + "type": "Node" + } + ] + }, + { + "name": "set_process_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Tween.TweenProcessMode" + } + ] + }, + { + "name": "set_pause_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Tween.TweenPauseMode" + } + ] + }, + { + "name": "set_parallel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 172414601, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "parallel", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_loops", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2590297011, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "loops", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_speed_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "speed", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "set_trans", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "trans", + "type": "enum::Tween.TransitionType" + } + ] + }, + { + "name": "set_ease", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Tween" + }, + "arguments": [ + { + "name": "ease", + "type": "enum::Tween.EaseType" + } + ] + }, + { + "name": "parallel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Tween" + } + }, + { + "name": "chain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Tween" + } + }, + { + "name": "interpolate_value", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 135553772, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "initial_value", + "type": "Variant" + }, + { + "name": "delta_value", + "type": "Variant" + }, + { + "name": "elapsed_time", + "type": "float", + "meta": "float" + }, + { + "name": "duration", + "type": "float", + "meta": "float" + }, + { + "name": "trans_type", + "type": "enum::Tween.TransitionType" + }, + { + "name": "ease_type", + "type": "enum::Tween.EaseType" + } + ] + } + ], + "signals": [ + { + "name": "step_finished", + "arguments": [ + { + "name": "idx", + "type": "int" + } + ] + }, + { + "name": "loop_finished", + "arguments": [ + { + "name": "loop_count", + "type": "int" + } + ] + }, + { + "name": "finished" + } + ] + }, + { + "name": "Tweener", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "signals": [ + { + "name": "finished" + } + ] + }, + { + "name": "UDPServer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "listen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "uint16" + }, + { + "name": "bind_address", + "type": "String", + "default_value": "\"*\"" + } + ] + }, + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "is_connection_available", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_local_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_listening", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "take_connection", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PacketPeerUDP" + } + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_max_pending_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_pending_connections", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_pending_connections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "max_pending_connections", + "setter": "set_max_pending_connections", + "getter": "get_max_pending_connections", + "index": -1 + } + ] + }, + { + "name": "UPNP", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "UPNPResult", + "values": [ + { + "name": "UPNP_RESULT_SUCCESS", + "value": 0 + }, + { + "name": "UPNP_RESULT_NOT_AUTHORIZED", + "value": 1 + }, + { + "name": "UPNP_RESULT_PORT_MAPPING_NOT_FOUND", + "value": 2 + }, + { + "name": "UPNP_RESULT_INCONSISTENT_PARAMETERS", + "value": 3 + }, + { + "name": "UPNP_RESULT_NO_SUCH_ENTRY_IN_ARRAY", + "value": 4 + }, + { + "name": "UPNP_RESULT_ACTION_FAILED", + "value": 5 + }, + { + "name": "UPNP_RESULT_SRC_IP_WILDCARD_NOT_PERMITTED", + "value": 6 + }, + { + "name": "UPNP_RESULT_EXT_PORT_WILDCARD_NOT_PERMITTED", + "value": 7 + }, + { + "name": "UPNP_RESULT_INT_PORT_WILDCARD_NOT_PERMITTED", + "value": 8 + }, + { + "name": "UPNP_RESULT_REMOTE_HOST_MUST_BE_WILDCARD", + "value": 9 + }, + { + "name": "UPNP_RESULT_EXT_PORT_MUST_BE_WILDCARD", + "value": 10 + }, + { + "name": "UPNP_RESULT_NO_PORT_MAPS_AVAILABLE", + "value": 11 + }, + { + "name": "UPNP_RESULT_CONFLICT_WITH_OTHER_MECHANISM", + "value": 12 + }, + { + "name": "UPNP_RESULT_CONFLICT_WITH_OTHER_MAPPING", + "value": 13 + }, + { + "name": "UPNP_RESULT_SAME_PORT_VALUES_REQUIRED", + "value": 14 + }, + { + "name": "UPNP_RESULT_ONLY_PERMANENT_LEASE_SUPPORTED", + "value": 15 + }, + { + "name": "UPNP_RESULT_INVALID_GATEWAY", + "value": 16 + }, + { + "name": "UPNP_RESULT_INVALID_PORT", + "value": 17 + }, + { + "name": "UPNP_RESULT_INVALID_PROTOCOL", + "value": 18 + }, + { + "name": "UPNP_RESULT_INVALID_DURATION", + "value": 19 + }, + { + "name": "UPNP_RESULT_INVALID_ARGS", + "value": 20 + }, + { + "name": "UPNP_RESULT_INVALID_RESPONSE", + "value": 21 + }, + { + "name": "UPNP_RESULT_INVALID_PARAM", + "value": 22 + }, + { + "name": "UPNP_RESULT_HTTP_ERROR", + "value": 23 + }, + { + "name": "UPNP_RESULT_SOCKET_ERROR", + "value": 24 + }, + { + "name": "UPNP_RESULT_MEM_ALLOC_ERROR", + "value": 25 + }, + { + "name": "UPNP_RESULT_NO_GATEWAY", + "value": 26 + }, + { + "name": "UPNP_RESULT_NO_DEVICES", + "value": 27 + }, + { + "name": "UPNP_RESULT_UNKNOWN_ERROR", + "value": 28 + } + ] + } + ], + "methods": [ + { + "name": "get_device_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_device", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "UPNPDevice" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "device", + "type": "UPNPDevice" + } + ] + }, + { + "name": "set_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "device", + "type": "UPNPDevice" + } + ] + }, + { + "name": "remove_device", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_devices", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_gateway", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "UPNPDevice" + } + }, + { + "name": "discover", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4001609007, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "timeout", + "type": "int", + "meta": "int32", + "default_value": "2000" + }, + { + "name": "ttl", + "type": "int", + "meta": "int32", + "default_value": "2" + }, + { + "name": "device_filter", + "type": "String", + "default_value": "\"InternetGatewayDevice\"" + } + ] + }, + { + "name": "query_external_address", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "add_port_mapping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1627097934, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "port_internal", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "desc", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "proto", + "type": "String", + "default_value": "\"UDP\"" + }, + { + "name": "duration", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "delete_port_mapping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "proto", + "type": "String", + "default_value": "\"UDP\"" + } + ] + }, + { + "name": "set_discover_multicast_if", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "m_if", + "type": "String" + } + ] + }, + { + "name": "get_discover_multicast_if", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_discover_local_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_discover_local_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_discover_ipv6", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ipv6", + "type": "bool" + } + ] + }, + { + "name": "is_discover_ipv6", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "String", + "name": "discover_multicast_if", + "setter": "set_discover_multicast_if", + "getter": "get_discover_multicast_if", + "index": -1 + }, + { + "type": "int", + "name": "discover_local_port", + "setter": "set_discover_local_port", + "getter": "get_discover_local_port", + "index": -1 + }, + { + "type": "bool", + "name": "discover_ipv6", + "setter": "set_discover_ipv6", + "getter": "is_discover_ipv6", + "index": -1 + } + ] + }, + { + "name": "UPNPDevice", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "IGDStatus", + "values": [ + { + "name": "IGD_STATUS_OK", + "value": 0 + }, + { + "name": "IGD_STATUS_HTTP_ERROR", + "value": 1 + }, + { + "name": "IGD_STATUS_HTTP_EMPTY", + "value": 2 + }, + { + "name": "IGD_STATUS_NO_URLS", + "value": 3 + }, + { + "name": "IGD_STATUS_NO_IGD", + "value": 4 + }, + { + "name": "IGD_STATUS_DISCONNECTED", + "value": 5 + }, + { + "name": "IGD_STATUS_UNKNOWN_DEVICE", + "value": 6 + }, + { + "name": "IGD_STATUS_INVALID_CONTROL", + "value": 7 + }, + { + "name": "IGD_STATUS_MALLOC_ERROR", + "value": 8 + }, + { + "name": "IGD_STATUS_UNKNOWN_ERROR", + "value": 9 + } + ] + } + ], + "methods": [ + { + "name": "is_valid_gateway", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "query_external_address", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "add_port_mapping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1627097934, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "port_internal", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "desc", + "type": "String", + "default_value": "\"\"" + }, + { + "name": "proto", + "type": "String", + "default_value": "\"UDP\"" + }, + { + "name": "duration", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "delete_port_mapping", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "proto", + "type": "String", + "default_value": "\"UDP\"" + } + ] + }, + { + "name": "set_description_url", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "url", + "type": "String" + } + ] + }, + { + "name": "get_description_url", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_service_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "String" + } + ] + }, + { + "name": "get_service_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_igd_control_url", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "url", + "type": "String" + } + ] + }, + { + "name": "get_igd_control_url", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_igd_service_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "String" + } + ] + }, + { + "name": "get_igd_service_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_igd_our_addr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "addr", + "type": "String" + } + ] + }, + { + "name": "get_igd_our_addr", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_igd_status", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "status", + "type": "enum::UPNPDevice.IGDStatus" + } + ] + }, + { + "name": "get_igd_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::UPNPDevice.IGDStatus" + } + } + ], + "properties": [ + { + "type": "String", + "name": "description_url", + "setter": "set_description_url", + "getter": "get_description_url", + "index": -1 + }, + { + "type": "String", + "name": "service_type", + "setter": "set_service_type", + "getter": "get_service_type", + "index": -1 + }, + { + "type": "String", + "name": "igd_control_url", + "setter": "set_igd_control_url", + "getter": "get_igd_control_url", + "index": -1 + }, + { + "type": "String", + "name": "igd_service_type", + "setter": "set_igd_service_type", + "getter": "get_igd_service_type", + "index": -1 + }, + { + "type": "String", + "name": "igd_our_addr", + "setter": "set_igd_our_addr", + "getter": "get_igd_our_addr", + "index": -1 + }, + { + "type": "int", + "name": "igd_status", + "setter": "set_igd_status", + "getter": "get_igd_status", + "index": -1 + } + ] + }, + { + "name": "UndoRedo", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "MergeMode", + "values": [ + { + "name": "MERGE_DISABLE", + "value": 0 + }, + { + "name": "MERGE_ENDS", + "value": 1 + }, + { + "name": "MERGE_ALL", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "create_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "merge_mode", + "type": "enum::UndoRedo.MergeMode", + "default_value": "0" + } + ] + }, + { + "name": "commit_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133279208, + "arguments": [ + { + "name": "execute", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "is_committing_action", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "add_do_method", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134224104, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "add_undo_method", + "is_const": false, + "is_vararg": true, + "is_static": false, + "is_virtual": false, + "hash": 134224104, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + } + ] + }, + { + "name": "add_do_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "add_undo_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "property", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "add_do_reference", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "add_undo_reference", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "object", + "type": "Object" + } + ] + }, + { + "name": "start_force_keep_in_merge_ends", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "end_force_keep_in_merge_ends", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_history_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_current_action", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_action_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_history", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 133279208, + "arguments": [ + { + "name": "increase_version", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "get_current_action_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "has_undo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "has_redo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_version", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "redo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "undo", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "version_changed" + } + ] + }, + { + "name": "UniformSetCacheRD", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core" + }, + { + "name": "VBoxContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "BoxContainer", + "api_type": "core" + }, + { + "name": "VFlowContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "FlowContainer", + "api_type": "core" + }, + { + "name": "VScrollBar", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "ScrollBar", + "api_type": "core" + }, + { + "name": "VSeparator", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Separator", + "api_type": "core" + }, + { + "name": "VSlider", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Slider", + "api_type": "core" + }, + { + "name": "VSplitContainer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "SplitContainer", + "api_type": "core" + }, + { + "name": "VehicleBody3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "RigidDynamicBody3D", + "api_type": "core", + "methods": [ + { + "name": "set_engine_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "engine_force", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_engine_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_brake", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "brake", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_brake", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_steering", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "steering", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_steering", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "engine_force", + "setter": "set_engine_force", + "getter": "get_engine_force", + "index": -1 + }, + { + "type": "float", + "name": "brake", + "setter": "set_brake", + "getter": "get_brake", + "index": -1 + }, + { + "type": "float", + "name": "steering", + "setter": "set_steering", + "getter": "get_steering", + "index": -1 + } + ] + }, + { + "name": "VehicleWheel3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_suspension_rest_length", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_suspension_rest_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_suspension_travel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_suspension_travel", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_suspension_stiffness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_suspension_stiffness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_suspension_max_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_suspension_max_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping_compression", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping_compression", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_damping_relaxation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_damping_relaxation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_as_traction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_used_as_traction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_as_steering", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_used_as_steering", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_friction_slip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "length", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_friction_slip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "is_in_contact", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_contact_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Node3D" + } + }, + { + "name": "set_roll_influence", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "roll_influence", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_roll_influence", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_skidinfo", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_rpm", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_engine_force", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "engine_force", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_engine_force", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_brake", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "brake", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_brake", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_steering", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "steering", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_steering", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "engine_force", + "setter": "set_engine_force", + "getter": "get_engine_force", + "index": -1 + }, + { + "type": "float", + "name": "brake", + "setter": "set_brake", + "getter": "get_brake", + "index": -1 + }, + { + "type": "float", + "name": "steering", + "setter": "set_steering", + "getter": "get_steering", + "index": -1 + }, + { + "type": "bool", + "name": "use_as_traction", + "setter": "set_use_as_traction", + "getter": "is_used_as_traction", + "index": -1 + }, + { + "type": "bool", + "name": "use_as_steering", + "setter": "set_use_as_steering", + "getter": "is_used_as_steering", + "index": -1 + }, + { + "type": "float", + "name": "wheel_roll_influence", + "setter": "set_roll_influence", + "getter": "get_roll_influence", + "index": -1 + }, + { + "type": "float", + "name": "wheel_radius", + "setter": "set_radius", + "getter": "get_radius", + "index": -1 + }, + { + "type": "float", + "name": "wheel_rest_length", + "setter": "set_suspension_rest_length", + "getter": "get_suspension_rest_length", + "index": -1 + }, + { + "type": "float", + "name": "wheel_friction_slip", + "setter": "set_friction_slip", + "getter": "get_friction_slip", + "index": -1 + }, + { + "type": "float", + "name": "suspension_travel", + "setter": "set_suspension_travel", + "getter": "get_suspension_travel", + "index": -1 + }, + { + "type": "float", + "name": "suspension_stiffness", + "setter": "set_suspension_stiffness", + "getter": "get_suspension_stiffness", + "index": -1 + }, + { + "type": "float", + "name": "suspension_max_force", + "setter": "set_suspension_max_force", + "getter": "get_suspension_max_force", + "index": -1 + }, + { + "type": "float", + "name": "damping_compression", + "setter": "set_damping_compression", + "getter": "get_damping_compression", + "index": -1 + }, + { + "type": "float", + "name": "damping_relaxation", + "setter": "set_damping_relaxation", + "getter": "get_damping_relaxation", + "index": -1 + } + ] + }, + { + "name": "VelocityTracker3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "set_track_physics_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_tracking_physics_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "update_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_tracked_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "reset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector3" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "track_physics_step", + "setter": "set_track_physics_step", + "getter": "is_tracking_physics_step", + "index": -1 + } + ] + }, + { + "name": "VideoStream", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core" + }, + { + "name": "VideoStreamPlayer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Control", + "api_type": "core", + "methods": [ + { + "name": "set_stream", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "stream", + "type": "VideoStream" + } + ] + }, + { + "name": "get_stream", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "VideoStream" + } + }, + { + "name": "play", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_playing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_paused", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "paused", + "type": "bool" + } + ] + }, + { + "name": "is_paused", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_volume", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "volume", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volume", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_volume_db", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "db", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_volume_db", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_audio_track", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "track", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_audio_track", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_stream_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_stream_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_stream_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_autoplay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "has_autoplay", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_expand", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_expand", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_buffering_msec", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msec", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_buffering_msec", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_bus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bus", + "type": "StringName" + } + ] + }, + { + "name": "get_bus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "get_video_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + } + ], + "signals": [ + { + "name": "finished" + } + ], + "properties": [ + { + "type": "int", + "name": "audio_track", + "setter": "set_audio_track", + "getter": "get_audio_track", + "index": -1 + }, + { + "type": "VideoStream", + "name": "stream", + "setter": "set_stream", + "getter": "get_stream", + "index": -1 + }, + { + "type": "float", + "name": "volume_db", + "setter": "set_volume_db", + "getter": "get_volume_db", + "index": -1 + }, + { + "type": "float", + "name": "volume", + "setter": "set_volume", + "getter": "get_volume", + "index": -1 + }, + { + "type": "bool", + "name": "autoplay", + "setter": "set_autoplay", + "getter": "has_autoplay", + "index": -1 + }, + { + "type": "bool", + "name": "paused", + "setter": "set_paused", + "getter": "is_paused", + "index": -1 + }, + { + "type": "bool", + "name": "expand", + "setter": "set_expand", + "getter": "has_expand", + "index": -1 + }, + { + "type": "int", + "name": "buffering_msec", + "setter": "set_buffering_msec", + "getter": "get_buffering_msec", + "index": -1 + }, + { + "type": "float", + "name": "stream_position", + "setter": "set_stream_position", + "getter": "get_stream_position", + "index": -1 + }, + { + "type": "StringName", + "name": "bus", + "setter": "set_bus", + "getter": "get_bus", + "index": -1 + } + ] + }, + { + "name": "VideoStreamTheora", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VideoStream", + "api_type": "core", + "methods": [ + { + "name": "set_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "get_file", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "file", + "setter": "set_file", + "getter": "get_file", + "index": -1 + } + ] + }, + { + "name": "Viewport", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node", + "api_type": "core", + "enums": [ + { + "name": "ShadowAtlasQuadrantSubdiv", + "values": [ + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_DISABLED", + "value": 0 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_1", + "value": 1 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_4", + "value": 2 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_16", + "value": 3 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_64", + "value": 4 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_256", + "value": 5 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_1024", + "value": 6 + }, + { + "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_MAX", + "value": 7 + } + ] + }, + { + "name": "Scaling3DMode", + "values": [ + { + "name": "SCALING_3D_MODE_BILINEAR", + "value": 0 + }, + { + "name": "SCALING_3D_MODE_FSR", + "value": 1 + }, + { + "name": "SCALING_3D_MODE_MAX", + "value": 2 + } + ] + }, + { + "name": "MSAA", + "values": [ + { + "name": "MSAA_DISABLED", + "value": 0 + }, + { + "name": "MSAA_2X", + "value": 1 + }, + { + "name": "MSAA_4X", + "value": 2 + }, + { + "name": "MSAA_8X", + "value": 3 + }, + { + "name": "MSAA_MAX", + "value": 4 + } + ] + }, + { + "name": "ScreenSpaceAA", + "values": [ + { + "name": "SCREEN_SPACE_AA_DISABLED", + "value": 0 + }, + { + "name": "SCREEN_SPACE_AA_FXAA", + "value": 1 + }, + { + "name": "SCREEN_SPACE_AA_MAX", + "value": 2 + } + ] + }, + { + "name": "RenderInfo", + "values": [ + { + "name": "RENDER_INFO_OBJECTS_IN_FRAME", + "value": 0 + }, + { + "name": "RENDER_INFO_PRIMITIVES_IN_FRAME", + "value": 1 + }, + { + "name": "RENDER_INFO_DRAW_CALLS_IN_FRAME", + "value": 2 + }, + { + "name": "RENDER_INFO_MAX", + "value": 3 + } + ] + }, + { + "name": "RenderInfoType", + "values": [ + { + "name": "RENDER_INFO_TYPE_VISIBLE", + "value": 0 + }, + { + "name": "RENDER_INFO_TYPE_SHADOW", + "value": 1 + }, + { + "name": "RENDER_INFO_TYPE_MAX", + "value": 2 + } + ] + }, + { + "name": "DebugDraw", + "values": [ + { + "name": "DEBUG_DRAW_DISABLED", + "value": 0 + }, + { + "name": "DEBUG_DRAW_UNSHADED", + "value": 1 + }, + { + "name": "DEBUG_DRAW_LIGHTING", + "value": 2 + }, + { + "name": "DEBUG_DRAW_OVERDRAW", + "value": 3 + }, + { + "name": "DEBUG_DRAW_WIREFRAME", + "value": 4 + }, + { + "name": "DEBUG_DRAW_NORMAL_BUFFER", + "value": 5 + }, + { + "name": "DEBUG_DRAW_VOXEL_GI_ALBEDO", + "value": 6 + }, + { + "name": "DEBUG_DRAW_VOXEL_GI_LIGHTING", + "value": 7 + }, + { + "name": "DEBUG_DRAW_VOXEL_GI_EMISSION", + "value": 8 + }, + { + "name": "DEBUG_DRAW_SHADOW_ATLAS", + "value": 9 + }, + { + "name": "DEBUG_DRAW_DIRECTIONAL_SHADOW_ATLAS", + "value": 10 + }, + { + "name": "DEBUG_DRAW_SCENE_LUMINANCE", + "value": 11 + }, + { + "name": "DEBUG_DRAW_SSAO", + "value": 12 + }, + { + "name": "DEBUG_DRAW_SSIL", + "value": 13 + }, + { + "name": "DEBUG_DRAW_PSSM_SPLITS", + "value": 14 + }, + { + "name": "DEBUG_DRAW_DECAL_ATLAS", + "value": 15 + }, + { + "name": "DEBUG_DRAW_SDFGI", + "value": 16 + }, + { + "name": "DEBUG_DRAW_SDFGI_PROBES", + "value": 17 + }, + { + "name": "DEBUG_DRAW_GI_BUFFER", + "value": 18 + }, + { + "name": "DEBUG_DRAW_DISABLE_LOD", + "value": 19 + }, + { + "name": "DEBUG_DRAW_CLUSTER_OMNI_LIGHTS", + "value": 20 + }, + { + "name": "DEBUG_DRAW_CLUSTER_SPOT_LIGHTS", + "value": 21 + }, + { + "name": "DEBUG_DRAW_CLUSTER_DECALS", + "value": 22 + }, + { + "name": "DEBUG_DRAW_CLUSTER_REFLECTION_PROBES", + "value": 23 + }, + { + "name": "DEBUG_DRAW_OCCLUDERS", + "value": 24 + }, + { + "name": "DEBUG_DRAW_MOTION_VECTORS", + "value": 25 + } + ] + }, + { + "name": "DefaultCanvasItemTextureFilter", + "values": [ + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST", + "value": 0 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_LINEAR", + "value": 1 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS", + "value": 2 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS", + "value": 3 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_MAX", + "value": 4 + } + ] + }, + { + "name": "DefaultCanvasItemTextureRepeat", + "values": [ + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_DISABLED", + "value": 0 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_ENABLED", + "value": 1 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_MIRROR", + "value": 2 + }, + { + "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_MAX", + "value": 3 + } + ] + }, + { + "name": "SDFOversize", + "values": [ + { + "name": "SDF_OVERSIZE_100_PERCENT", + "value": 0 + }, + { + "name": "SDF_OVERSIZE_120_PERCENT", + "value": 1 + }, + { + "name": "SDF_OVERSIZE_150_PERCENT", + "value": 2 + }, + { + "name": "SDF_OVERSIZE_200_PERCENT", + "value": 3 + }, + { + "name": "SDF_OVERSIZE_MAX", + "value": 4 + } + ] + }, + { + "name": "SDFScale", + "values": [ + { + "name": "SDF_SCALE_100_PERCENT", + "value": 0 + }, + { + "name": "SDF_SCALE_50_PERCENT", + "value": 1 + }, + { + "name": "SDF_SCALE_25_PERCENT", + "value": 2 + }, + { + "name": "SDF_SCALE_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_world_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "world_2d", + "type": "World2D" + } + ] + }, + { + "name": "get_world_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "World2D" + } + }, + { + "name": "find_world_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "World2D" + } + }, + { + "name": "set_canvas_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_canvas_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_global_canvas_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "xform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_global_canvas_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_final_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "get_visible_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "set_transparent_background", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "has_transparent_background", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_msaa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "msaa", + "type": "enum::Viewport.MSAA" + } + ] + }, + { + "name": "get_msaa", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.MSAA" + } + }, + { + "name": "set_screen_space_aa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "screen_space_aa", + "type": "enum::Viewport.ScreenSpaceAA" + } + ] + }, + { + "name": "get_screen_space_aa", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.ScreenSpaceAA" + } + }, + { + "name": "set_use_taa", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_taa", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_debanding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_debanding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_occlusion_culling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_occlusion_culling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_debug_draw", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "debug_draw", + "type": "enum::Viewport.DebugDraw" + } + ] + }, + { + "name": "get_debug_draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.DebugDraw" + } + }, + { + "name": "get_render_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "type", + "type": "enum::Viewport.RenderInfoType" + }, + { + "name": "info", + "type": "enum::Viewport.RenderInfo" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "ViewportTexture" + } + }, + { + "name": "set_physics_object_picking", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_physics_object_picking", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_viewport_rid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "push_text_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "push_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "in_local_coords", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "push_unhandled_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134464040, + "arguments": [ + { + "name": "event", + "type": "InputEvent" + }, + { + "name": "in_local_coords", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "get_camera_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Camera2D" + } + }, + { + "name": "set_as_audio_listener_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_audio_listener_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_mouse_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "warp_mouse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "gui_get_drag_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + }, + { + "name": "gui_is_dragging", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "gui_is_drag_successful", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "gui_release_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "gui_get_focus_owner", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Control" + } + }, + { + "name": "set_disable_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_input_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shadow_atlas_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_shadow_atlas_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_shadow_atlas_16_bits", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_shadow_atlas_16_bits", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_snap_controls_to_pixels", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_snap_controls_to_pixels_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_snap_2d_transforms_to_pixel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_snap_2d_transforms_to_pixel_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_snap_2d_vertices_to_pixel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_snap_2d_vertices_to_pixel_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shadow_atlas_quadrant_subdiv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "quadrant", + "type": "int", + "meta": "int32" + }, + { + "name": "subdiv", + "type": "enum::Viewport.ShadowAtlasQuadrantSubdiv" + } + ] + }, + { + "name": "get_shadow_atlas_quadrant_subdiv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "enum::Viewport.ShadowAtlasQuadrantSubdiv" + }, + "arguments": [ + { + "name": "quadrant", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_input_as_handled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "is_input_handled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_handle_input_locally", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_handling_input_locally", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_canvas_item_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Viewport.DefaultCanvasItemTextureFilter" + } + ] + }, + { + "name": "get_default_canvas_item_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.DefaultCanvasItemTextureFilter" + } + }, + { + "name": "set_embedding_subwindows", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_embedding_subwindows", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_canvas_item_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Viewport.DefaultCanvasItemTextureRepeat" + } + ] + }, + { + "name": "get_default_canvas_item_texture_repeat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.DefaultCanvasItemTextureRepeat" + } + }, + { + "name": "set_sdf_oversize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "oversize", + "type": "enum::Viewport.SDFOversize" + } + ] + }, + { + "name": "get_sdf_oversize", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.SDFOversize" + } + }, + { + "name": "set_sdf_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "enum::Viewport.SDFScale" + } + ] + }, + { + "name": "get_sdf_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.SDFScale" + } + }, + { + "name": "set_mesh_lod_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pixels", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_mesh_lod_threshold", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_world_3d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "world_3d", + "type": "World3D" + } + ] + }, + { + "name": "get_world_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "World3D" + } + }, + { + "name": "find_world_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "World3D" + } + }, + { + "name": "set_use_own_world_3d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_own_world_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_camera_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Camera3D" + } + }, + { + "name": "set_as_audio_listener_3d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_audio_listener_3d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_disable_3d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "disable", + "type": "bool" + } + ] + }, + { + "name": "is_3d_disabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_xr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "use", + "type": "bool" + } + ] + }, + { + "name": "is_using_xr", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_scaling_3d_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scaling_3d_mode", + "type": "enum::Viewport.Scaling3DMode" + } + ] + }, + { + "name": "get_scaling_3d_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Viewport.Scaling3DMode" + } + }, + { + "name": "set_scaling_3d_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_scaling_3d_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fsr_sharpness", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fsr_sharpness", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fsr_sharpness", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_fsr_mipmap_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "fsr_mipmap_bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_fsr_mipmap_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "signals": [ + { + "name": "size_changed" + }, + { + "name": "gui_focus_changed", + "arguments": [ + { + "name": "node", + "type": "Control" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "disable_3d", + "setter": "set_disable_3d", + "getter": "is_3d_disabled", + "index": -1 + }, + { + "type": "bool", + "name": "use_xr", + "setter": "set_use_xr", + "getter": "is_using_xr", + "index": -1 + }, + { + "type": "bool", + "name": "own_world_3d", + "setter": "set_use_own_world_3d", + "getter": "is_using_own_world_3d", + "index": -1 + }, + { + "type": "World3D", + "name": "world_3d", + "setter": "set_world_3d", + "getter": "get_world_3d", + "index": -1 + }, + { + "type": "World2D", + "name": "world_2d", + "setter": "set_world_2d", + "getter": "get_world_2d", + "index": -1 + }, + { + "type": "bool", + "name": "transparent_bg", + "setter": "set_transparent_background", + "getter": "has_transparent_background", + "index": -1 + }, + { + "type": "bool", + "name": "handle_input_locally", + "setter": "set_handle_input_locally", + "getter": "is_handling_input_locally", + "index": -1 + }, + { + "type": "bool", + "name": "snap_2d_transforms_to_pixel", + "setter": "set_snap_2d_transforms_to_pixel", + "getter": "is_snap_2d_transforms_to_pixel_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "snap_2d_vertices_to_pixel", + "setter": "set_snap_2d_vertices_to_pixel", + "getter": "is_snap_2d_vertices_to_pixel_enabled", + "index": -1 + }, + { + "type": "int", + "name": "msaa", + "setter": "set_msaa", + "getter": "get_msaa", + "index": -1 + }, + { + "type": "int", + "name": "screen_space_aa", + "setter": "set_screen_space_aa", + "getter": "get_screen_space_aa", + "index": -1 + }, + { + "type": "bool", + "name": "use_taa", + "setter": "set_use_taa", + "getter": "is_using_taa", + "index": -1 + }, + { + "type": "bool", + "name": "use_debanding", + "setter": "set_use_debanding", + "getter": "is_using_debanding", + "index": -1 + }, + { + "type": "bool", + "name": "use_occlusion_culling", + "setter": "set_use_occlusion_culling", + "getter": "is_using_occlusion_culling", + "index": -1 + }, + { + "type": "float", + "name": "mesh_lod_threshold", + "setter": "set_mesh_lod_threshold", + "getter": "get_mesh_lod_threshold", + "index": -1 + }, + { + "type": "int", + "name": "debug_draw", + "setter": "set_debug_draw", + "getter": "get_debug_draw", + "index": -1 + }, + { + "type": "int", + "name": "scaling_3d_mode", + "setter": "set_scaling_3d_mode", + "getter": "get_scaling_3d_mode", + "index": -1 + }, + { + "type": "float", + "name": "scaling_3d_scale", + "setter": "set_scaling_3d_scale", + "getter": "get_scaling_3d_scale", + "index": -1 + }, + { + "type": "float", + "name": "fsr_mipmap_bias", + "setter": "set_fsr_mipmap_bias", + "getter": "get_fsr_mipmap_bias", + "index": -1 + }, + { + "type": "float", + "name": "fsr_sharpness", + "setter": "set_fsr_sharpness", + "getter": "get_fsr_sharpness", + "index": -1 + }, + { + "type": "int", + "name": "canvas_item_default_texture_filter", + "setter": "set_default_canvas_item_texture_filter", + "getter": "get_default_canvas_item_texture_filter", + "index": -1 + }, + { + "type": "int", + "name": "canvas_item_default_texture_repeat", + "setter": "set_default_canvas_item_texture_repeat", + "getter": "get_default_canvas_item_texture_repeat", + "index": -1 + }, + { + "type": "bool", + "name": "audio_listener_enable_2d", + "setter": "set_as_audio_listener_2d", + "getter": "is_audio_listener_2d", + "index": -1 + }, + { + "type": "bool", + "name": "audio_listener_enable_3d", + "setter": "set_as_audio_listener_3d", + "getter": "is_audio_listener_3d", + "index": -1 + }, + { + "type": "bool", + "name": "physics_object_picking", + "setter": "set_physics_object_picking", + "getter": "get_physics_object_picking", + "index": -1 + }, + { + "type": "bool", + "name": "gui_disable_input", + "setter": "set_disable_input", + "getter": "is_input_disabled", + "index": -1 + }, + { + "type": "bool", + "name": "gui_snap_controls_to_pixels", + "setter": "set_snap_controls_to_pixels", + "getter": "is_snap_controls_to_pixels_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "gui_embed_subwindows", + "setter": "set_embedding_subwindows", + "getter": "is_embedding_subwindows", + "index": -1 + }, + { + "type": "int", + "name": "sdf_oversize", + "setter": "set_sdf_oversize", + "getter": "get_sdf_oversize", + "index": -1 + }, + { + "type": "int", + "name": "sdf_scale", + "setter": "set_sdf_scale", + "getter": "get_sdf_scale", + "index": -1 + }, + { + "type": "int", + "name": "shadow_atlas_size", + "setter": "set_shadow_atlas_size", + "getter": "get_shadow_atlas_size", + "index": -1 + }, + { + "type": "bool", + "name": "shadow_atlas_16_bits", + "setter": "set_shadow_atlas_16_bits", + "getter": "get_shadow_atlas_16_bits", + "index": -1 + }, + { + "type": "int", + "name": "shadow_atlas_quad_0", + "setter": "set_shadow_atlas_quadrant_subdiv", + "getter": "get_shadow_atlas_quadrant_subdiv", + "index": 0 + }, + { + "type": "int", + "name": "shadow_atlas_quad_1", + "setter": "set_shadow_atlas_quadrant_subdiv", + "getter": "get_shadow_atlas_quadrant_subdiv", + "index": 1 + }, + { + "type": "int", + "name": "shadow_atlas_quad_2", + "setter": "set_shadow_atlas_quadrant_subdiv", + "getter": "get_shadow_atlas_quadrant_subdiv", + "index": 2 + }, + { + "type": "int", + "name": "shadow_atlas_quad_3", + "setter": "set_shadow_atlas_quadrant_subdiv", + "getter": "get_shadow_atlas_quadrant_subdiv", + "index": 3 + }, + { + "type": "Transform2D", + "name": "canvas_transform", + "setter": "set_canvas_transform", + "getter": "get_canvas_transform", + "index": -1 + }, + { + "type": "Transform2D", + "name": "global_canvas_transform", + "setter": "set_global_canvas_transform", + "getter": "get_global_canvas_transform", + "index": -1 + } + ] + }, + { + "name": "ViewportTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Texture2D", + "api_type": "core", + "methods": [ + { + "name": "set_viewport_path_in_scene", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_viewport_path_in_scene", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "viewport_path", + "setter": "set_viewport_path_in_scene", + "getter": "get_viewport_path_in_scene", + "index": -1 + } + ] + }, + { + "name": "VisibleOnScreenEnabler2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisibleOnScreenNotifier2D", + "api_type": "core", + "enums": [ + { + "name": "EnableMode", + "values": [ + { + "name": "ENABLE_MODE_INHERIT", + "value": 0 + }, + { + "name": "ENABLE_MODE_ALWAYS", + "value": 1 + }, + { + "name": "ENABLE_MODE_WHEN_PAUSED", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_enable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisibleOnScreenEnabler2D.EnableMode" + } + ] + }, + { + "name": "get_enable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::VisibleOnScreenEnabler2D.EnableMode" + } + }, + { + "name": "set_enable_node_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_enable_node_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "int", + "name": "enable_mode", + "setter": "set_enable_mode", + "getter": "get_enable_mode", + "index": -1 + }, + { + "type": "NodePath", + "name": "enable_node_path", + "setter": "set_enable_node_path", + "getter": "get_enable_node_path", + "index": -1 + } + ] + }, + { + "name": "VisibleOnScreenEnabler3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisibleOnScreenNotifier3D", + "api_type": "core", + "enums": [ + { + "name": "EnableMode", + "values": [ + { + "name": "ENABLE_MODE_INHERIT", + "value": 0 + }, + { + "name": "ENABLE_MODE_ALWAYS", + "value": 1 + }, + { + "name": "ENABLE_MODE_WHEN_PAUSED", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_enable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisibleOnScreenEnabler3D.EnableMode" + } + ] + }, + { + "name": "get_enable_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::VisibleOnScreenEnabler3D.EnableMode" + } + }, + { + "name": "set_enable_node_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_enable_node_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "int", + "name": "enable_mode", + "setter": "set_enable_mode", + "getter": "get_enable_mode", + "index": -1 + }, + { + "type": "NodePath", + "name": "enable_node_path", + "setter": "set_enable_node_path", + "getter": "get_enable_node_path", + "index": -1 + } + ] + }, + { + "name": "VisibleOnScreenNotifier2D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node2D", + "api_type": "core", + "methods": [ + { + "name": "set_rect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "get_rect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Rect2" + } + }, + { + "name": "is_on_screen", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "screen_entered" + }, + { + "name": "screen_exited" + } + ], + "properties": [ + { + "type": "Rect2", + "name": "rect", + "setter": "set_rect", + "getter": "get_rect", + "index": -1 + } + ] + }, + { + "name": "VisibleOnScreenNotifier3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "methods": [ + { + "name": "set_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "rect", + "type": "AABB" + } + ] + }, + { + "name": "is_on_screen", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "signals": [ + { + "name": "screen_entered" + }, + { + "name": "screen_exited" + } + ], + "properties": [ + { + "type": "AABB", + "name": "aabb", + "setter": "set_aabb", + "getter": "get_aabb", + "index": -1 + } + ] + }, + { + "name": "VisualInstance3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "_get_aabb", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "AABB" + } + }, + { + "name": "set_base", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base", + "type": "RID" + } + ] + }, + { + "name": "get_base", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_instance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_layer_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_layer_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_layer_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_layer_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_transformed_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "get_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + } + ], + "properties": [ + { + "type": "int", + "name": "layers", + "setter": "set_layer_mask", + "getter": "get_layer_mask", + "index": -1 + } + ] + }, + { + "name": "VisualScript", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Script", + "api_type": "core", + "methods": [ + { + "name": "add_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "func_node_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "new_name", + "type": "StringName" + } + ] + }, + { + "name": "set_scroll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_scroll", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "add_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "node", + "type": "VisualScriptNode" + }, + { + "name": "position", + "type": "Vector2", + "default_value": "Vector2(0, 0)" + } + ] + }, + { + "name": "remove_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_function_node_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "VisualScriptNode" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_node_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_node_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "sequence_connect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_output", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "sequence_disconnect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_output", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_sequence_connection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445994, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_output", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "data_connect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "data_disconnect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_data_connection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481931, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_variable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 182667338, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "default_value", + "type": "Variant", + "default_value": "null" + }, + { + "name": "export", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "has_variable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "remove_variable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "set_variable_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_variable_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "set_variable_info", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Dictionary" + } + ] + }, + { + "name": "get_variable_info", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "set_variable_export", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_variable_export", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_variable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "new_name", + "type": "StringName" + } + ] + }, + { + "name": "add_custom_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "has_custom_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "custom_signal_add_argument", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 136835882, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "type", + "type": "enum::Variant.Type" + }, + { + "name": "argname", + "type": "String" + }, + { + "name": "index", + "type": "int", + "meta": "int32", + "default_value": "-1" + } + ] + }, + { + "name": "custom_signal_set_argument_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "argidx", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "custom_signal_get_argument_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "enum::Variant.Type" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "argidx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "custom_signal_set_argument_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "argidx", + "type": "int", + "meta": "int32" + }, + { + "name": "argname", + "type": "String" + } + ] + }, + { + "name": "custom_signal_get_argument_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "argidx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "custom_signal_remove_argument", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "argidx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "custom_signal_get_argument_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "custom_signal_swap_argument", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "argidx", + "type": "int", + "meta": "int32" + }, + { + "name": "withidx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_custom_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "rename_custom_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "new_name", + "type": "StringName" + } + ] + }, + { + "name": "set_instance_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "StringName" + } + ] + } + ], + "signals": [ + { + "name": "node_ports_changed", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "Dictionary", + "name": "data", + "setter": "_set_data", + "getter": "_get_data", + "index": -1 + } + ] + }, + { + "name": "VisualScriptBasicTypeConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_basic_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_basic_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_basic_type_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_basic_type_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "int", + "name": "basic_type", + "setter": "set_basic_type", + "getter": "get_basic_type", + "index": -1 + }, + { + "type": "String", + "name": "constant", + "setter": "set_basic_type_constant", + "getter": "get_basic_type_constant", + "index": -1 + } + ] + }, + { + "name": "VisualScriptBuiltinFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "BuiltinFunc", + "values": [ + { + "name": "MATH_SIN", + "value": 0 + }, + { + "name": "MATH_COS", + "value": 1 + }, + { + "name": "MATH_TAN", + "value": 2 + }, + { + "name": "MATH_SINH", + "value": 3 + }, + { + "name": "MATH_COSH", + "value": 4 + }, + { + "name": "MATH_TANH", + "value": 5 + }, + { + "name": "MATH_ASIN", + "value": 6 + }, + { + "name": "MATH_ACOS", + "value": 7 + }, + { + "name": "MATH_ATAN", + "value": 8 + }, + { + "name": "MATH_ATAN2", + "value": 9 + }, + { + "name": "MATH_SQRT", + "value": 10 + }, + { + "name": "MATH_FMOD", + "value": 11 + }, + { + "name": "MATH_FPOSMOD", + "value": 12 + }, + { + "name": "MATH_FLOOR", + "value": 13 + }, + { + "name": "MATH_CEIL", + "value": 14 + }, + { + "name": "MATH_ROUND", + "value": 15 + }, + { + "name": "MATH_ABS", + "value": 16 + }, + { + "name": "MATH_SIGN", + "value": 17 + }, + { + "name": "MATH_POW", + "value": 18 + }, + { + "name": "MATH_LOG", + "value": 19 + }, + { + "name": "MATH_EXP", + "value": 20 + }, + { + "name": "MATH_ISNAN", + "value": 21 + }, + { + "name": "MATH_ISINF", + "value": 22 + }, + { + "name": "MATH_EASE", + "value": 23 + }, + { + "name": "MATH_STEP_DECIMALS", + "value": 24 + }, + { + "name": "MATH_SNAPPED", + "value": 25 + }, + { + "name": "MATH_LERP", + "value": 26 + }, + { + "name": "MATH_CUBIC_INTERPOLATE", + "value": 27 + }, + { + "name": "MATH_INVERSE_LERP", + "value": 28 + }, + { + "name": "MATH_RANGE_LERP", + "value": 29 + }, + { + "name": "MATH_MOVE_TOWARD", + "value": 30 + }, + { + "name": "MATH_RANDOMIZE", + "value": 31 + }, + { + "name": "MATH_RANDI", + "value": 32 + }, + { + "name": "MATH_RANDF", + "value": 33 + }, + { + "name": "MATH_RANDI_RANGE", + "value": 34 + }, + { + "name": "MATH_RANDF_RANGE", + "value": 35 + }, + { + "name": "MATH_RANDFN", + "value": 36 + }, + { + "name": "MATH_SEED", + "value": 37 + }, + { + "name": "MATH_RANDSEED", + "value": 38 + }, + { + "name": "MATH_DEG2RAD", + "value": 39 + }, + { + "name": "MATH_RAD2DEG", + "value": 40 + }, + { + "name": "MATH_LINEAR2DB", + "value": 41 + }, + { + "name": "MATH_DB2LINEAR", + "value": 42 + }, + { + "name": "MATH_WRAP", + "value": 43 + }, + { + "name": "MATH_WRAPF", + "value": 44 + }, + { + "name": "MATH_PINGPONG", + "value": 45 + }, + { + "name": "LOGIC_MAX", + "value": 46 + }, + { + "name": "LOGIC_MIN", + "value": 47 + }, + { + "name": "LOGIC_CLAMP", + "value": 48 + }, + { + "name": "LOGIC_NEAREST_PO2", + "value": 49 + }, + { + "name": "OBJ_WEAKREF", + "value": 50 + }, + { + "name": "TYPE_CONVERT", + "value": 51 + }, + { + "name": "TYPE_OF", + "value": 52 + }, + { + "name": "TYPE_EXISTS", + "value": 53 + }, + { + "name": "TEXT_CHAR", + "value": 54 + }, + { + "name": "TEXT_STR", + "value": 55 + }, + { + "name": "TEXT_PRINT", + "value": 56 + }, + { + "name": "TEXT_PRINTERR", + "value": 57 + }, + { + "name": "TEXT_PRINTRAW", + "value": 58 + }, + { + "name": "TEXT_PRINT_VERBOSE", + "value": 59 + }, + { + "name": "VAR_TO_STR", + "value": 60 + }, + { + "name": "STR_TO_VAR", + "value": 61 + }, + { + "name": "VAR_TO_BYTES", + "value": 62 + }, + { + "name": "BYTES_TO_VAR", + "value": 63 + }, + { + "name": "MATH_SMOOTHSTEP", + "value": 64 + }, + { + "name": "MATH_POSMOD", + "value": 65 + }, + { + "name": "MATH_LERP_ANGLE", + "value": 66 + }, + { + "name": "TEXT_ORD", + "value": 67 + }, + { + "name": "FUNC_MAX", + "value": 68 + } + ] + } + ], + "methods": [ + { + "name": "set_func", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "which", + "type": "enum::VisualScriptBuiltinFunc.BuiltinFunc" + } + ] + }, + { + "name": "get_func", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::VisualScriptBuiltinFunc.BuiltinFunc" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_func", + "getter": "get_func", + "index": -1 + } + ] + }, + { + "name": "VisualScriptClassConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_class_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_class_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "String", + "name": "constant", + "setter": "set_class_constant", + "getter": "get_class_constant", + "index": -1 + } + ] + }, + { + "name": "VisualScriptComment", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_description", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "description", + "type": "String" + } + ] + }, + { + "name": "get_description", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "String", + "name": "title", + "setter": "set_title", + "getter": "get_title", + "index": -1 + }, + { + "type": "String", + "name": "description", + "setter": "set_description", + "getter": "get_description", + "index": -1 + }, + { + "type": "Vector2", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "VisualScriptComposeArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptLists", + "api_type": "core" + }, + { + "name": "VisualScriptCondition", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_constant_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_constant_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_constant_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_constant_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + } + ], + "properties": [ + { + "type": "int", + "name": "type", + "setter": "set_constant_type", + "getter": "get_constant_type", + "index": -1 + }, + { + "type": "Variant", + "name": "value", + "setter": "set_constant_value", + "getter": "get_constant_value", + "index": -1 + } + ] + }, + { + "name": "VisualScriptConstructor", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_constructor_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_constructor_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_constructor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constructor", + "type": "Dictionary" + } + ] + }, + { + "name": "get_constructor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + } + ], + "properties": [ + { + "type": "int", + "name": "type", + "setter": "set_constructor_type", + "getter": "get_constructor_type", + "index": -1 + }, + { + "type": "Dictionary", + "name": "constructor", + "setter": "set_constructor", + "getter": "get_constructor", + "index": -1 + } + ] + }, + { + "name": "VisualScriptCustomNode", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "constants": [ + { + "name": "STEP_PUSH_STACK_BIT", + "value": 16777216 + }, + { + "name": "STEP_GO_BACK_BIT", + "value": 33554432 + }, + { + "name": "STEP_NO_ADVANCE_BIT", + "value": 67108864 + }, + { + "name": "STEP_EXIT_FUNCTION_BIT", + "value": 134217728 + }, + { + "name": "STEP_YIELD_BIT", + "value": 268435456 + } + ], + "enums": [ + { + "name": "StartMode", + "values": [ + { + "name": "START_MODE_BEGIN_SEQUENCE", + "value": 0 + }, + { + "name": "START_MODE_CONTINUE_SEQUENCE", + "value": 1 + }, + { + "name": "START_MODE_RESUME_YIELD", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "_get_output_sequence_port_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_has_input_sequence_port", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_output_sequence_port_text", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "seq_idx", + "type": "int" + } + ] + }, + { + "name": "_get_input_value_port_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_input_value_port_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "input_idx", + "type": "int" + } + ] + }, + { + "name": "_get_input_value_port_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "input_idx", + "type": "int" + } + ] + }, + { + "name": "_get_input_value_port_hint", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "input_idx", + "type": "int" + } + ] + }, + { + "name": "_get_input_value_port_hint_string", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "input_idx", + "type": "int" + } + ] + }, + { + "name": "_get_output_value_port_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_output_value_port_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "output_idx", + "type": "int" + } + ] + }, + { + "name": "_get_output_value_port_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "output_idx", + "type": "int" + } + ] + }, + { + "name": "_get_output_value_port_hint", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "output_idx", + "type": "int" + } + ] + }, + { + "name": "_get_output_value_port_hint_string", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "output_idx", + "type": "int" + } + ] + }, + { + "name": "_get_caption", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_text", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_category", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_working_memory_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_step", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "inputs", + "type": "Array" + }, + { + "name": "outputs", + "type": "Array" + }, + { + "name": "start_mode", + "type": "int" + }, + { + "name": "working_mem", + "type": "Array" + } + ] + } + ] + }, + { + "name": "VisualScriptCustomNodes", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "editor", + "methods": [ + { + "name": "add_custom_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "category", + "type": "String" + }, + { + "name": "script", + "type": "Script" + } + ] + }, + { + "name": "remove_custom_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "category", + "type": "String" + } + ] + } + ], + "signals": [ + { + "name": "custom_nodes_updated" + } + ] + }, + { + "name": "VisualScriptDeconstruct", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_deconstruct_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_deconstruct_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + } + ], + "properties": [ + { + "type": "int", + "name": "type", + "setter": "set_deconstruct_type", + "getter": "get_deconstruct_type", + "index": -1 + }, + { + "type": "Array", + "name": "elem_cache", + "setter": "_set_elem_cache", + "getter": "_get_elem_cache", + "index": -1 + } + ] + }, + { + "name": "VisualScriptEmitSignal", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "String", + "name": "signal", + "setter": "set_signal", + "getter": "get_signal", + "index": -1 + } + ] + }, + { + "name": "VisualScriptEngineSingleton", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "constant", + "setter": "set_singleton", + "getter": "get_singleton", + "index": -1 + } + ] + }, + { + "name": "VisualScriptExpression", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptFunction", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptFunctionCall", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "CallMode", + "values": [ + { + "name": "CALL_MODE_SELF", + "value": 0 + }, + { + "name": "CALL_MODE_NODE_PATH", + "value": 1 + }, + { + "name": "CALL_MODE_INSTANCE", + "value": 2 + }, + { + "name": "CALL_MODE_BASIC_TYPE", + "value": 3 + }, + { + "name": "CALL_MODE_SINGLETON", + "value": 4 + } + ] + }, + { + "name": "RPCCallMode", + "values": [ + { + "name": "RPC_DISABLED", + "value": 0 + }, + { + "name": "RPC_RELIABLE", + "value": 1 + }, + { + "name": "RPC_UNRELIABLE", + "value": 2 + }, + { + "name": "RPC_RELIABLE_TO_ID", + "value": 3 + }, + { + "name": "RPC_UNRELIABLE_TO_ID", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "get_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_base_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_script", + "type": "String" + } + ] + }, + { + "name": "get_base_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_basic_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "basic_type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_basic_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_singleton", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "singleton", + "type": "StringName" + } + ] + }, + { + "name": "get_singleton", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "function", + "type": "StringName" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_call_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptFunctionCall.CallMode" + } + ] + }, + { + "name": "get_call_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptFunctionCall.CallMode" + } + }, + { + "name": "set_base_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_base_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_use_default_args", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "amount", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_use_default_args", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_rpc_call_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptFunctionCall.RPCCallMode" + } + ] + }, + { + "name": "get_rpc_call_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptFunctionCall.RPCCallMode" + } + }, + { + "name": "set_validate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_validate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "call_mode", + "setter": "set_call_mode", + "getter": "get_call_mode", + "index": -1 + }, + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "String", + "name": "base_script", + "setter": "set_base_script", + "getter": "get_base_script", + "index": -1 + }, + { + "type": "String", + "name": "singleton", + "setter": "set_singleton", + "getter": "get_singleton", + "index": -1 + }, + { + "type": "int", + "name": "basic_type", + "setter": "set_basic_type", + "getter": "get_basic_type", + "index": -1 + }, + { + "type": "NodePath", + "name": "node_path", + "setter": "set_base_path", + "getter": "get_base_path", + "index": -1 + }, + { + "type": "Dictionary", + "name": "argument_cache", + "setter": "_set_argument_cache", + "getter": "_get_argument_cache", + "index": -1 + }, + { + "type": "String", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + }, + { + "type": "int", + "name": "use_default_args", + "setter": "set_use_default_args", + "getter": "get_use_default_args", + "index": -1 + }, + { + "type": "bool", + "name": "validate", + "setter": "set_validate", + "getter": "get_validate", + "index": -1 + }, + { + "type": "int", + "name": "rpc_call_mode", + "setter": "set_rpc_call_mode", + "getter": "get_rpc_call_mode", + "index": -1 + } + ] + }, + { + "name": "VisualScriptFunctionState", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "connect_to_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "obj", + "type": "Object" + }, + { + "name": "signals", + "type": "String" + }, + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "resume", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 365817734, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "args", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "is_valid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ] + }, + { + "name": "VisualScriptGlobalConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_global_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_global_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "constant", + "setter": "set_global_constant", + "getter": "get_global_constant", + "index": -1 + } + ] + }, + { + "name": "VisualScriptIndexGet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptIndexSet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptInputAction", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_PRESSED", + "value": 0 + }, + { + "name": "MODE_RELEASED", + "value": 1 + }, + { + "name": "MODE_JUST_PRESSED", + "value": 2 + }, + { + "name": "MODE_JUST_RELEASED", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_action_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_action_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_action_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptInputAction.Mode" + } + ] + }, + { + "name": "get_action_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptInputAction.Mode" + } + } + ], + "properties": [ + { + "type": "String", + "name": "action", + "setter": "set_action_name", + "getter": "get_action_name", + "index": -1 + }, + { + "type": "int", + "name": "mode", + "setter": "set_action_mode", + "getter": "get_action_mode", + "index": -1 + } + ] + }, + { + "name": "VisualScriptIterator", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptLists", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "add_input_data_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + }, + { + "name": "name", + "type": "String" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_input_data_port_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_input_data_port_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "remove_input_data_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "add_output_data_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + }, + { + "name": "name", + "type": "String" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_output_data_port_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_output_data_port_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "remove_output_data_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + } + ] + }, + { + "name": "VisualScriptLocalVar", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_var_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_var_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_var_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_var_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + } + ], + "properties": [ + { + "type": "String", + "name": "var_name", + "setter": "set_var_name", + "getter": "get_var_name", + "index": -1 + }, + { + "type": "int", + "name": "type", + "setter": "set_var_type", + "getter": "get_var_type", + "index": -1 + } + ] + }, + { + "name": "VisualScriptLocalVarSet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_var_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_var_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_var_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_var_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + } + ], + "properties": [ + { + "type": "String", + "name": "var_name", + "setter": "set_var_name", + "getter": "get_var_name", + "index": -1 + }, + { + "type": "int", + "name": "type", + "setter": "set_var_type", + "getter": "get_var_type", + "index": -1 + } + ] + }, + { + "name": "VisualScriptMathConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "MathConstant", + "values": [ + { + "name": "MATH_CONSTANT_ONE", + "value": 0 + }, + { + "name": "MATH_CONSTANT_PI", + "value": 1 + }, + { + "name": "MATH_CONSTANT_HALF_PI", + "value": 2 + }, + { + "name": "MATH_CONSTANT_TAU", + "value": 3 + }, + { + "name": "MATH_CONSTANT_E", + "value": 4 + }, + { + "name": "MATH_CONSTANT_SQRT2", + "value": 5 + }, + { + "name": "MATH_CONSTANT_INF", + "value": 6 + }, + { + "name": "MATH_CONSTANT_NAN", + "value": 7 + }, + { + "name": "MATH_CONSTANT_MAX", + "value": 8 + } + ] + } + ], + "methods": [ + { + "name": "set_math_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "which", + "type": "enum::VisualScriptMathConstant.MathConstant" + } + ] + }, + { + "name": "get_math_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::VisualScriptMathConstant.MathConstant" + } + } + ], + "properties": [ + { + "type": "int", + "name": "constant", + "setter": "set_math_constant", + "getter": "get_math_constant", + "index": -1 + } + ] + }, + { + "name": "VisualScriptNode", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_visual_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "VisualScript" + } + }, + { + "name": "set_default_input_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "port_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "Variant" + } + ] + }, + { + "name": "get_default_input_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "port_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "ports_changed_notify", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "signals": [ + { + "name": "ports_changed" + } + ] + }, + { + "name": "VisualScriptOperator", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::Variant.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Operator" + } + }, + { + "name": "set_typed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_typed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + }, + { + "type": "int", + "name": "type", + "setter": "set_typed", + "getter": "get_typed", + "index": -1 + } + ] + }, + { + "name": "VisualScriptPreload", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_preload", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "get_preload", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Resource" + } + } + ], + "properties": [ + { + "type": "Resource", + "name": "resource", + "setter": "set_preload", + "getter": "get_preload", + "index": -1 + } + ] + }, + { + "name": "VisualScriptPropertyGet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "CallMode", + "values": [ + { + "name": "CALL_MODE_SELF", + "value": 0 + }, + { + "name": "CALL_MODE_NODE_PATH", + "value": 1 + }, + { + "name": "CALL_MODE_INSTANCE", + "value": 2 + }, + { + "name": "CALL_MODE_BASIC_TYPE", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "get_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_base_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_script", + "type": "String" + } + ] + }, + { + "name": "get_base_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_basic_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "basic_type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_basic_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "get_property", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_call_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptPropertyGet.CallMode" + } + ] + }, + { + "name": "get_call_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptPropertyGet.CallMode" + } + }, + { + "name": "set_base_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_base_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "StringName" + } + ] + }, + { + "name": "get_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "int", + "name": "set_mode", + "setter": "set_call_mode", + "getter": "get_call_mode", + "index": -1 + }, + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "String", + "name": "base_script", + "setter": "set_base_script", + "getter": "get_base_script", + "index": -1 + }, + { + "type": "int", + "name": "type_cache", + "setter": "_set_type_cache", + "getter": "_get_type_cache", + "index": -1 + }, + { + "type": "int", + "name": "basic_type", + "setter": "set_basic_type", + "getter": "get_basic_type", + "index": -1 + }, + { + "type": "NodePath", + "name": "node_path", + "setter": "set_base_path", + "getter": "get_base_path", + "index": -1 + }, + { + "type": "String", + "name": "property", + "setter": "set_property", + "getter": "get_property", + "index": -1 + }, + { + "type": "String", + "name": "index", + "setter": "set_index", + "getter": "get_index", + "index": -1 + } + ] + }, + { + "name": "VisualScriptPropertySet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "CallMode", + "values": [ + { + "name": "CALL_MODE_SELF", + "value": 0 + }, + { + "name": "CALL_MODE_NODE_PATH", + "value": 1 + }, + { + "name": "CALL_MODE_INSTANCE", + "value": 2 + }, + { + "name": "CALL_MODE_BASIC_TYPE", + "value": 3 + } + ] + }, + { + "name": "AssignOp", + "values": [ + { + "name": "ASSIGN_OP_NONE", + "value": 0 + }, + { + "name": "ASSIGN_OP_ADD", + "value": 1 + }, + { + "name": "ASSIGN_OP_SUB", + "value": 2 + }, + { + "name": "ASSIGN_OP_MUL", + "value": 3 + }, + { + "name": "ASSIGN_OP_DIV", + "value": 4 + }, + { + "name": "ASSIGN_OP_MOD", + "value": 5 + }, + { + "name": "ASSIGN_OP_SHIFT_LEFT", + "value": 6 + }, + { + "name": "ASSIGN_OP_SHIFT_RIGHT", + "value": 7 + }, + { + "name": "ASSIGN_OP_BIT_AND", + "value": 8 + }, + { + "name": "ASSIGN_OP_BIT_OR", + "value": 9 + }, + { + "name": "ASSIGN_OP_BIT_XOR", + "value": 10 + } + ] + } + ], + "methods": [ + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "get_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_base_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_script", + "type": "String" + } + ] + }, + { + "name": "get_base_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_basic_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "basic_type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_basic_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_property", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "property", + "type": "StringName" + } + ] + }, + { + "name": "get_property", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_call_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptPropertySet.CallMode" + } + ] + }, + { + "name": "get_call_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptPropertySet.CallMode" + } + }, + { + "name": "set_base_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_base_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "StringName" + } + ] + }, + { + "name": "get_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_assign_op", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "assign_op", + "type": "enum::VisualScriptPropertySet.AssignOp" + } + ] + }, + { + "name": "get_assign_op", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptPropertySet.AssignOp" + } + } + ], + "properties": [ + { + "type": "int", + "name": "set_mode", + "setter": "set_call_mode", + "getter": "get_call_mode", + "index": -1 + }, + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "String", + "name": "base_script", + "setter": "set_base_script", + "getter": "get_base_script", + "index": -1 + }, + { + "type": "int", + "name": "type_cache", + "setter": "_set_type_cache", + "getter": "_get_type_cache", + "index": -1 + }, + { + "type": "int", + "name": "basic_type", + "setter": "set_basic_type", + "getter": "get_basic_type", + "index": -1 + }, + { + "type": "NodePath", + "name": "node_path", + "setter": "set_base_path", + "getter": "get_base_path", + "index": -1 + }, + { + "type": "String", + "name": "property", + "setter": "set_property", + "getter": "get_property", + "index": -1 + }, + { + "type": "String", + "name": "index", + "setter": "set_index", + "getter": "get_index", + "index": -1 + }, + { + "type": "int", + "name": "assign_op", + "setter": "set_assign_op", + "getter": "get_assign_op", + "index": -1 + } + ] + }, + { + "name": "VisualScriptResourcePath", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_resource_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_resource_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "path", + "setter": "set_resource_path", + "getter": "get_resource_path", + "index": -1 + } + ] + }, + { + "name": "VisualScriptReturn", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_return_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_return_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + }, + { + "name": "set_enable_return_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_return_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "return_enabled", + "setter": "set_enable_return_value", + "getter": "is_return_value_enabled", + "index": -1 + }, + { + "type": "int", + "name": "return_type", + "setter": "set_return_type", + "getter": "get_return_type", + "index": -1 + } + ] + }, + { + "name": "VisualScriptSceneNode", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_node_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_node_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "NodePath", + "name": "node_path", + "setter": "set_node_path", + "getter": "get_node_path", + "index": -1 + } + ] + }, + { + "name": "VisualScriptSceneTree", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptSelect", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_typed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_typed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Variant.Type" + } + } + ], + "properties": [ + { + "type": "int", + "name": "type", + "setter": "set_typed", + "getter": "get_typed", + "index": -1 + } + ] + }, + { + "name": "VisualScriptSelf", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptSequence", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_steps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "steps", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_steps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "steps", + "setter": "set_steps", + "getter": "get_steps", + "index": -1 + } + ] + }, + { + "name": "VisualScriptSubCall", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptSwitch", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptTypeCast", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "StringName" + } + ] + }, + { + "name": "get_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_base_script", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "get_base_script", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "String", + "name": "base_script", + "setter": "set_base_script", + "getter": "get_base_script", + "index": -1 + } + ] + }, + { + "name": "VisualScriptVariableGet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_variable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_variable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "String", + "name": "var_name", + "setter": "set_variable", + "getter": "get_variable", + "index": -1 + } + ] + }, + { + "name": "VisualScriptVariableSet", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "methods": [ + { + "name": "set_variable", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_variable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + } + ], + "properties": [ + { + "type": "String", + "name": "var_name", + "setter": "set_variable", + "getter": "get_variable", + "index": -1 + } + ] + }, + { + "name": "VisualScriptWhile", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core" + }, + { + "name": "VisualScriptYield", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "YieldMode", + "values": [ + { + "name": "YIELD_FRAME", + "value": 1 + }, + { + "name": "YIELD_PHYSICS_FRAME", + "value": 2 + }, + { + "name": "YIELD_WAIT", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_yield_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptYield.YieldMode" + } + ] + }, + { + "name": "get_yield_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::VisualScriptYield.YieldMode" + } + }, + { + "name": "set_wait_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "sec", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_wait_time", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "float", + "meta": "double" + } + } + ], + "properties": [ + { + "type": "int", + "name": "mode", + "setter": "set_yield_mode", + "getter": "get_yield_mode", + "index": -1 + }, + { + "type": "float", + "name": "wait_time", + "setter": "set_wait_time", + "getter": "get_wait_time", + "index": -1 + } + ] + }, + { + "name": "VisualScriptYieldSignal", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualScriptNode", + "api_type": "core", + "enums": [ + { + "name": "CallMode", + "values": [ + { + "name": "CALL_MODE_SELF", + "value": 0 + }, + { + "name": "CALL_MODE_NODE_PATH", + "value": 1 + }, + { + "name": "CALL_MODE_INSTANCE", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_base_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_type", + "type": "StringName" + } + ] + }, + { + "name": "get_base_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_signal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "signal", + "type": "StringName" + } + ] + }, + { + "name": "get_signal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_call_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualScriptYieldSignal.CallMode" + } + ] + }, + { + "name": "get_call_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualScriptYieldSignal.CallMode" + } + }, + { + "name": "set_base_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "base_path", + "type": "NodePath" + } + ] + }, + { + "name": "get_base_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "NodePath" + } + } + ], + "properties": [ + { + "type": "int", + "name": "call_mode", + "setter": "set_call_mode", + "getter": "get_call_mode", + "index": -1 + }, + { + "type": "String", + "name": "base_type", + "setter": "set_base_type", + "getter": "get_base_type", + "index": -1 + }, + { + "type": "NodePath", + "name": "node_path", + "setter": "set_base_path", + "getter": "get_base_path", + "index": -1 + }, + { + "type": "String", + "name": "signal", + "setter": "set_signal", + "getter": "get_signal", + "index": -1 + } + ] + }, + { + "name": "VisualShader", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shader", + "api_type": "core", + "constants": [ + { + "name": "NODE_ID_INVALID", + "value": -1 + }, + { + "name": "NODE_ID_OUTPUT", + "value": 0 + } + ], + "enums": [ + { + "name": "Type", + "values": [ + { + "name": "TYPE_VERTEX", + "value": 0 + }, + { + "name": "TYPE_FRAGMENT", + "value": 1 + }, + { + "name": "TYPE_LIGHT", + "value": 2 + }, + { + "name": "TYPE_START", + "value": 3 + }, + { + "name": "TYPE_PROCESS", + "value": 4 + }, + { + "name": "TYPE_COLLIDE", + "value": 5 + }, + { + "name": "TYPE_START_CUSTOM", + "value": 6 + }, + { + "name": "TYPE_PROCESS_CUSTOM", + "value": 7 + }, + { + "name": "TYPE_SKY", + "value": 8 + }, + { + "name": "TYPE_FOG", + "value": 9 + }, + { + "name": "TYPE_MAX", + "value": 10 + } + ] + }, + { + "name": "VaryingMode", + "values": [ + { + "name": "VARYING_MODE_VERTEX_TO_FRAG_LIGHT", + "value": 0 + }, + { + "name": "VARYING_MODE_FRAG_TO_LIGHT", + "value": 1 + }, + { + "name": "VARYING_MODE_MAX", + "value": 2 + } + ] + }, + { + "name": "VaryingType", + "values": [ + { + "name": "VARYING_TYPE_FLOAT", + "value": 0 + }, + { + "name": "VARYING_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "VARYING_TYPE_VECTOR_3D", + "value": 2 + }, + { + "name": "VARYING_TYPE_VECTOR_4D", + "value": 3 + }, + { + "name": "VARYING_TYPE_COLOR", + "value": 4 + }, + { + "name": "VARYING_TYPE_TRANSFORM", + "value": 5 + }, + { + "name": "VARYING_TYPE_MAX", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Shader.Mode" + } + ] + }, + { + "name": "add_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134295977, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "node", + "type": "VisualShaderNode" + }, + { + "name": "position", + "type": "Vector2" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "VisualShaderNode" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_node_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "position", + "type": "Vector2" + } + ] + }, + { + "name": "get_node_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410057, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "PackedInt32Array" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + } + ] + }, + { + "name": "get_valid_node_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + } + ] + }, + { + "name": "remove_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "replace_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "new_class", + "type": "StringName" + } + ] + }, + { + "name": "is_node_connection", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517868, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "can_connect_nodes", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517868, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "connect_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135517835, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "disconnect_nodes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "connect_nodes_forced", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + }, + { + "name": "from_node", + "type": "int", + "meta": "int32" + }, + { + "name": "from_port", + "type": "int", + "meta": "int32" + }, + { + "name": "to_node", + "type": "int", + "meta": "int32" + }, + { + "name": "to_port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_node_connections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Array" + }, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.Type" + } + ] + }, + { + "name": "set_engine_version", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "version", + "type": "Dictionary" + } + ] + }, + { + "name": "get_engine_version", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_graph_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_graph_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "add_varying", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "mode", + "type": "enum::VisualShader.VaryingMode" + }, + { + "name": "type", + "type": "enum::VisualShader.VaryingType" + } + ] + }, + { + "name": "remove_varying", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "has_varying", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "Vector2", + "name": "graph_offset", + "setter": "set_graph_offset", + "getter": "get_graph_offset", + "index": -1 + }, + { + "type": "Dictionary", + "name": "engine_version", + "setter": "set_engine_version", + "getter": "get_engine_version", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNode", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "PortType", + "values": [ + { + "name": "PORT_TYPE_SCALAR", + "value": 0 + }, + { + "name": "PORT_TYPE_SCALAR_INT", + "value": 1 + }, + { + "name": "PORT_TYPE_VECTOR_2D", + "value": 2 + }, + { + "name": "PORT_TYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "PORT_TYPE_VECTOR_4D", + "value": 4 + }, + { + "name": "PORT_TYPE_BOOLEAN", + "value": 5 + }, + { + "name": "PORT_TYPE_TRANSFORM", + "value": 6 + }, + { + "name": "PORT_TYPE_SAMPLER", + "value": 7 + }, + { + "name": "PORT_TYPE_MAX", + "value": 8 + } + ] + } + ], + "methods": [ + { + "name": "set_output_port_for_preview", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_output_port_for_preview", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_input_port_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135649961, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "Variant" + }, + { + "name": "prev_value", + "type": "Variant", + "default_value": "null" + } + ] + }, + { + "name": "get_input_port_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "remove_input_port_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_default_input_values", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_default_input_values", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "values", + "type": "Array" + } + ] + }, + { + "name": "get_default_input_values", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + } + ], + "signals": [ + { + "name": "editor_refresh_request" + } + ], + "properties": [ + { + "type": "int", + "name": "output_port_for_preview", + "setter": "set_output_port_for_preview", + "getter": "get_output_port_for_preview", + "index": -1 + }, + { + "type": "Array", + "name": "default_input_values", + "setter": "set_default_input_values", + "getter": "get_default_input_values", + "index": -1 + }, + { + "type": "Array", + "name": "expanded_output_ports", + "setter": "_set_output_ports_expanded", + "getter": "_get_output_ports_expanded", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeBillboard", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "BillboardType", + "values": [ + { + "name": "BILLBOARD_TYPE_DISABLED", + "value": 0 + }, + { + "name": "BILLBOARD_TYPE_ENABLED", + "value": 1 + }, + { + "name": "BILLBOARD_TYPE_FIXED_Y", + "value": 2 + }, + { + "name": "BILLBOARD_TYPE_PARTICLES", + "value": 3 + }, + { + "name": "BILLBOARD_TYPE_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_billboard_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "billboard_type", + "type": "enum::VisualShaderNodeBillboard.BillboardType" + } + ] + }, + { + "name": "get_billboard_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeBillboard.BillboardType" + } + }, + { + "name": "set_keep_scale_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_keep_scale_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "int", + "name": "billboard_type", + "setter": "set_billboard_type", + "getter": "get_billboard_type", + "index": -1 + }, + { + "type": "bool", + "name": "keep_scale", + "setter": "set_keep_scale_enabled", + "getter": "is_keep_scale_enabled", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeBooleanConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "bool" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeBooleanUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "methods": [ + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeClamp", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_FLOAT", + "value": 0 + }, + { + "name": "OP_TYPE_INT", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 4 + }, + { + "name": "OP_TYPE_MAX", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op_type", + "type": "enum::VisualShaderNodeClamp.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeClamp.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeColorConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "Color" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + } + ], + "properties": [ + { + "type": "Color", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeColorFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_GRAYSCALE", + "value": 0 + }, + { + "name": "FUNC_HSV2RGB", + "value": 1 + }, + { + "name": "FUNC_RGB2HSV", + "value": 2 + }, + { + "name": "FUNC_SEPIA", + "value": 3 + }, + { + "name": "FUNC_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeColorFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeColorFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeColorOp", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Operator", + "values": [ + { + "name": "OP_SCREEN", + "value": 0 + }, + { + "name": "OP_DIFFERENCE", + "value": 1 + }, + { + "name": "OP_DARKEN", + "value": 2 + }, + { + "name": "OP_LIGHTEN", + "value": 3 + }, + { + "name": "OP_OVERLAY", + "value": 4 + }, + { + "name": "OP_DODGE", + "value": 5 + }, + { + "name": "OP_BURN", + "value": 6 + }, + { + "name": "OP_SOFT_LIGHT", + "value": 7 + }, + { + "name": "OP_HARD_LIGHT", + "value": 8 + }, + { + "name": "OP_MAX", + "value": 9 + } + ] + } + ], + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::VisualShaderNodeColorOp.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeColorOp.Operator" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeColorUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "methods": [ + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Color" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Color" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "Color", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeComment", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeResizableBase", + "api_type": "core", + "methods": [ + { + "name": "set_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_description", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "description", + "type": "String" + } + ] + }, + { + "name": "get_description", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "title", + "setter": "set_title", + "getter": "get_title", + "index": -1 + }, + { + "type": "String", + "name": "description", + "setter": "set_description", + "getter": "get_description", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeCompare", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "ComparisonType", + "values": [ + { + "name": "CTYPE_SCALAR", + "value": 0 + }, + { + "name": "CTYPE_SCALAR_INT", + "value": 1 + }, + { + "name": "CTYPE_VECTOR_2D", + "value": 2 + }, + { + "name": "CTYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "CTYPE_VECTOR_4D", + "value": 4 + }, + { + "name": "CTYPE_BOOLEAN", + "value": 5 + }, + { + "name": "CTYPE_TRANSFORM", + "value": 6 + }, + { + "name": "CTYPE_MAX", + "value": 7 + } + ] + }, + { + "name": "Function", + "values": [ + { + "name": "FUNC_EQUAL", + "value": 0 + }, + { + "name": "FUNC_NOT_EQUAL", + "value": 1 + }, + { + "name": "FUNC_GREATER_THAN", + "value": 2 + }, + { + "name": "FUNC_GREATER_THAN_EQUAL", + "value": 3 + }, + { + "name": "FUNC_LESS_THAN", + "value": 4 + }, + { + "name": "FUNC_LESS_THAN_EQUAL", + "value": 5 + }, + { + "name": "FUNC_MAX", + "value": 6 + } + ] + }, + { + "name": "Condition", + "values": [ + { + "name": "COND_ALL", + "value": 0 + }, + { + "name": "COND_ANY", + "value": 1 + }, + { + "name": "COND_MAX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_comparison_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeCompare.ComparisonType" + } + ] + }, + { + "name": "get_comparison_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeCompare.ComparisonType" + } + }, + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeCompare.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeCompare.Function" + } + }, + { + "name": "set_condition", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "condition", + "type": "enum::VisualShaderNodeCompare.Condition" + } + ] + }, + { + "name": "get_condition", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeCompare.Condition" + } + } + ], + "properties": [ + { + "type": "int", + "name": "type", + "setter": "set_comparison_type", + "getter": "get_comparison_type", + "index": -1 + }, + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + }, + { + "type": "int", + "name": "condition", + "setter": "set_condition", + "getter": "get_condition", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeConstant", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeCubemap", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Source", + "values": [ + { + "name": "SOURCE_TEXTURE", + "value": 0 + }, + { + "name": "SOURCE_PORT", + "value": 1 + }, + { + "name": "SOURCE_MAX", + "value": 2 + } + ] + }, + { + "name": "TextureType", + "values": [ + { + "name": "TYPE_DATA", + "value": 0 + }, + { + "name": "TYPE_COLOR", + "value": 1 + }, + { + "name": "TYPE_NORMAL_MAP", + "value": 2 + }, + { + "name": "TYPE_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "enum::VisualShaderNodeCubemap.Source" + } + ] + }, + { + "name": "get_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeCubemap.Source" + } + }, + { + "name": "set_cube_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Cubemap" + } + ] + }, + { + "name": "get_cube_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Cubemap" + } + }, + { + "name": "set_texture_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "enum::VisualShaderNodeCubemap.TextureType" + } + ] + }, + { + "name": "get_texture_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeCubemap.TextureType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "source", + "setter": "set_source", + "getter": "get_source", + "index": -1 + }, + { + "type": "Cubemap", + "name": "cube_map", + "setter": "set_cube_map", + "getter": "get_cube_map", + "index": -1 + }, + { + "type": "int", + "name": "texture_type", + "setter": "set_texture_type", + "getter": "get_texture_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeCubemapUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeTextureUniform", + "api_type": "core" + }, + { + "name": "VisualShaderNodeCurveTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeResizableBase", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "CurveTexture" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CurveTexture" + } + } + ], + "properties": [ + { + "type": "CurveTexture", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeCurveXYZTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeResizableBase", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "texture", + "type": "CurveXYZTexture" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CurveXYZTexture" + } + } + ], + "properties": [ + { + "type": "CurveXYZTexture", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeCustom", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "_get_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_description", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_category", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_get_return_icon_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_input_port_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_input_port_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "port", + "type": "int" + } + ] + }, + { + "name": "_get_input_port_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "port", + "type": "int" + } + ] + }, + { + "name": "_get_output_port_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_output_port_type", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "port", + "type": "int" + } + ] + }, + { + "name": "_get_output_port_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "port", + "type": "int" + } + ] + }, + { + "name": "_get_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "input_vars", + "type": "Array" + }, + { + "name": "output_vars", + "type": "Array" + }, + { + "name": "mode", + "type": "enum::Shader.Mode" + }, + { + "name": "type", + "type": "enum::VisualShader.Type" + } + ] + }, + { + "name": "_get_func_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Shader.Mode" + }, + { + "name": "type", + "type": "enum::VisualShader.Type" + } + ] + }, + { + "name": "_get_global_code", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Shader.Mode" + } + ] + }, + { + "name": "_is_highend", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_is_available", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::Shader.Mode" + }, + { + "name": "type", + "type": "enum::VisualShader.Type" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "initialized", + "setter": "_set_initialized", + "getter": "_is_initialized", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeDerivativeFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_SCALAR", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 3 + }, + { + "name": "OP_TYPE_MAX", + "value": 4 + } + ] + }, + { + "name": "Function", + "values": [ + { + "name": "FUNC_SUM", + "value": 0 + }, + { + "name": "FUNC_X", + "value": 1 + }, + { + "name": "FUNC_Y", + "value": 2 + }, + { + "name": "FUNC_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeDerivativeFunc.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeDerivativeFunc.OpType" + } + }, + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeDerivativeFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeDerivativeFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + }, + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeDeterminant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeDotProduct", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeExpression", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeGroupBase", + "api_type": "core", + "methods": [ + { + "name": "set_expression", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "expression", + "type": "String" + } + ] + }, + { + "name": "get_expression", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "expression", + "setter": "set_expression", + "getter": "get_expression", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeFaceForward", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core" + }, + { + "name": "VisualShaderNodeFloatConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeFloatFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_SIN", + "value": 0 + }, + { + "name": "FUNC_COS", + "value": 1 + }, + { + "name": "FUNC_TAN", + "value": 2 + }, + { + "name": "FUNC_ASIN", + "value": 3 + }, + { + "name": "FUNC_ACOS", + "value": 4 + }, + { + "name": "FUNC_ATAN", + "value": 5 + }, + { + "name": "FUNC_SINH", + "value": 6 + }, + { + "name": "FUNC_COSH", + "value": 7 + }, + { + "name": "FUNC_TANH", + "value": 8 + }, + { + "name": "FUNC_LOG", + "value": 9 + }, + { + "name": "FUNC_EXP", + "value": 10 + }, + { + "name": "FUNC_SQRT", + "value": 11 + }, + { + "name": "FUNC_ABS", + "value": 12 + }, + { + "name": "FUNC_SIGN", + "value": 13 + }, + { + "name": "FUNC_FLOOR", + "value": 14 + }, + { + "name": "FUNC_ROUND", + "value": 15 + }, + { + "name": "FUNC_CEIL", + "value": 16 + }, + { + "name": "FUNC_FRACT", + "value": 17 + }, + { + "name": "FUNC_SATURATE", + "value": 18 + }, + { + "name": "FUNC_NEGATE", + "value": 19 + }, + { + "name": "FUNC_ACOSH", + "value": 20 + }, + { + "name": "FUNC_ASINH", + "value": 21 + }, + { + "name": "FUNC_ATANH", + "value": 22 + }, + { + "name": "FUNC_DEGREES", + "value": 23 + }, + { + "name": "FUNC_EXP2", + "value": 24 + }, + { + "name": "FUNC_INVERSE_SQRT", + "value": 25 + }, + { + "name": "FUNC_LOG2", + "value": 26 + }, + { + "name": "FUNC_RADIANS", + "value": 27 + }, + { + "name": "FUNC_RECIPROCAL", + "value": 28 + }, + { + "name": "FUNC_ROUNDEVEN", + "value": 29 + }, + { + "name": "FUNC_TRUNC", + "value": 30 + }, + { + "name": "FUNC_ONEMINUS", + "value": 31 + }, + { + "name": "FUNC_MAX", + "value": 32 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeFloatFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeFloatFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeFloatOp", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Operator", + "values": [ + { + "name": "OP_ADD", + "value": 0 + }, + { + "name": "OP_SUB", + "value": 1 + }, + { + "name": "OP_MUL", + "value": 2 + }, + { + "name": "OP_DIV", + "value": 3 + }, + { + "name": "OP_MOD", + "value": 4 + }, + { + "name": "OP_POW", + "value": 5 + }, + { + "name": "OP_MAX", + "value": 6 + }, + { + "name": "OP_MIN", + "value": 7 + }, + { + "name": "OP_ATAN2", + "value": 8 + }, + { + "name": "OP_STEP", + "value": 9 + }, + { + "name": "OP_ENUM_SIZE", + "value": 10 + } + ] + } + ], + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::VisualShaderNodeFloatOp.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeFloatOp.Operator" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeFloatUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "enums": [ + { + "name": "Hint", + "values": [ + { + "name": "HINT_NONE", + "value": 0 + }, + { + "name": "HINT_RANGE", + "value": 1 + }, + { + "name": "HINT_RANGE_STEP", + "value": 2 + }, + { + "name": "HINT_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hint", + "type": "enum::VisualShaderNodeFloatUniform.Hint" + } + ] + }, + { + "name": "get_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeFloatUniform.Hint" + } + }, + { + "name": "set_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "int", + "name": "hint", + "setter": "set_hint", + "getter": "get_hint", + "index": -1 + }, + { + "type": "float", + "name": "min", + "setter": "set_min", + "getter": "get_min", + "index": -1 + }, + { + "type": "float", + "name": "max", + "setter": "set_max", + "getter": "get_max", + "index": -1 + }, + { + "type": "float", + "name": "step", + "setter": "set_step", + "getter": "get_step", + "index": -1 + }, + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "float", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeFresnel", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeGlobalExpression", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeExpression", + "api_type": "core" + }, + { + "name": "VisualShaderNodeGroupBase", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNodeResizableBase", + "api_type": "core", + "methods": [ + { + "name": "set_inputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "inputs", + "type": "String" + } + ] + }, + { + "name": "get_inputs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_outputs", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "outputs", + "type": "String" + } + ] + }, + { + "name": "get_outputs", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_valid_port_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "add_input_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "remove_input_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_input_port_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "has_input_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_input_ports", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "add_output_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134260040, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "remove_output_port", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_output_port_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "has_output_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "clear_output_ports", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_input_port_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_input_port_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_output_port_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_output_port_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "type", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_free_input_port_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_free_output_port_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "VisualShaderNodeIf", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeInput", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "set_input_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_input_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_input_real_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "signals": [ + { + "name": "input_type_changed" + } + ], + "properties": [ + { + "type": "StringName", + "name": "input_name", + "setter": "set_input_name", + "getter": "get_input_name", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeIntConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeIntFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_ABS", + "value": 0 + }, + { + "name": "FUNC_NEGATE", + "value": 1 + }, + { + "name": "FUNC_SIGN", + "value": 2 + }, + { + "name": "FUNC_BITWISE_NOT", + "value": 3 + }, + { + "name": "FUNC_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeIntFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeIntFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeIntOp", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Operator", + "values": [ + { + "name": "OP_ADD", + "value": 0 + }, + { + "name": "OP_SUB", + "value": 1 + }, + { + "name": "OP_MUL", + "value": 2 + }, + { + "name": "OP_DIV", + "value": 3 + }, + { + "name": "OP_MOD", + "value": 4 + }, + { + "name": "OP_MAX", + "value": 5 + }, + { + "name": "OP_MIN", + "value": 6 + }, + { + "name": "OP_BITWISE_AND", + "value": 7 + }, + { + "name": "OP_BITWISE_OR", + "value": 8 + }, + { + "name": "OP_BITWISE_XOR", + "value": 9 + }, + { + "name": "OP_BITWISE_LEFT_SHIFT", + "value": 10 + }, + { + "name": "OP_BITWISE_RIGHT_SHIFT", + "value": 11 + }, + { + "name": "OP_ENUM_SIZE", + "value": 12 + } + ] + } + ], + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::VisualShaderNodeIntOp.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeIntOp.Operator" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeIntUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "enums": [ + { + "name": "Hint", + "values": [ + { + "name": "HINT_NONE", + "value": 0 + }, + { + "name": "HINT_RANGE", + "value": 1 + }, + { + "name": "HINT_RANGE_STEP", + "value": 2 + }, + { + "name": "HINT_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hint", + "type": "enum::VisualShaderNodeIntUniform.Hint" + } + ] + }, + { + "name": "get_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeIntUniform.Hint" + } + }, + { + "name": "set_min", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_min", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_max", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "hint", + "setter": "set_hint", + "getter": "get_hint", + "index": -1 + }, + { + "type": "int", + "name": "min", + "setter": "set_min", + "getter": "get_min", + "index": -1 + }, + { + "type": "int", + "name": "max", + "setter": "set_max", + "getter": "get_max", + "index": -1 + }, + { + "type": "int", + "name": "step", + "setter": "set_step", + "getter": "get_step", + "index": -1 + }, + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "int", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeIs", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_IS_INF", + "value": 0 + }, + { + "name": "FUNC_IS_NAN", + "value": 1 + }, + { + "name": "FUNC_MAX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeIs.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeIs.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeMix", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_SCALAR", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_2D_SCALAR", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "OP_TYPE_VECTOR_3D_SCALAR", + "value": 4 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 5 + }, + { + "name": "OP_TYPE_VECTOR_4D_SCALAR", + "value": 6 + }, + { + "name": "OP_TYPE_MAX", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op_type", + "type": "enum::VisualShaderNodeMix.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeMix.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeMultiplyAdd", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_SCALAR", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 3 + }, + { + "name": "OP_TYPE_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeMultiplyAdd.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeMultiplyAdd.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeOuterProduct", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeOutput", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeParticleAccelerator", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_LINEAR", + "value": 0 + }, + { + "name": "MODE_RADIAL", + "value": 1 + }, + { + "name": "MODE_TANGENTIAL", + "value": 2 + }, + { + "name": "MODE_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::VisualShaderNodeParticleAccelerator.Mode" + } + ] + }, + { + "name": "get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeParticleAccelerator.Mode" + } + } + ], + "properties": [ + { + "type": "int", + "name": "mode", + "setter": "set_mode", + "getter": "get_mode", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeParticleBoxEmitter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeParticleEmitter", + "api_type": "core" + }, + { + "name": "VisualShaderNodeParticleConeVelocity", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeParticleEmit", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "EmitFlags", + "values": [ + { + "name": "EMIT_FLAG_POSITION", + "value": 1 + }, + { + "name": "EMIT_FLAG_ROT_SCALE", + "value": 2 + }, + { + "name": "EMIT_FLAG_VELOCITY", + "value": 4 + }, + { + "name": "EMIT_FLAG_COLOR", + "value": 8 + }, + { + "name": "EMIT_FLAG_CUSTOM", + "value": 16 + } + ] + } + ], + "methods": [ + { + "name": "set_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "flags", + "type": "enum::VisualShaderNodeParticleEmit.EmitFlags" + } + ] + }, + { + "name": "get_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeParticleEmit.EmitFlags" + } + } + ], + "properties": [ + { + "type": "int", + "name": "flags", + "setter": "set_flags", + "getter": "get_flags", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeParticleEmitter", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "set_mode_2d", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_mode_2d", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "mode_2d", + "setter": "set_mode_2d", + "getter": "is_mode_2d", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeParticleMeshEmitter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeParticleEmitter", + "api_type": "core", + "methods": [ + { + "name": "set_mesh", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mesh", + "type": "Mesh" + } + ] + }, + { + "name": "get_mesh", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Mesh" + } + }, + { + "name": "set_use_all_surfaces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_use_all_surfaces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_surface_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "surface_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_surface_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "Mesh", + "name": "mesh", + "setter": "set_mesh", + "getter": "get_mesh", + "index": -1 + }, + { + "type": "bool", + "name": "use_all_surfaces", + "setter": "set_use_all_surfaces", + "getter": "is_use_all_surfaces", + "index": -1 + }, + { + "type": "int", + "name": "surface_index", + "setter": "set_surface_index", + "getter": "get_surface_index", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeParticleMultiplyByAxisAngle", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "set_degrees_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_degrees_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "degrees_mode", + "setter": "set_degrees_mode", + "getter": "is_degrees_mode", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeParticleOutput", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeOutput", + "api_type": "core" + }, + { + "name": "VisualShaderNodeParticleRandomness", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_SCALAR", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 2 + }, + { + "name": "OP_TYPE_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeParticleRandomness.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeParticleRandomness.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeParticleRingEmitter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeParticleEmitter", + "api_type": "core" + }, + { + "name": "VisualShaderNodeParticleSphereEmitter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeParticleEmitter", + "api_type": "core" + }, + { + "name": "VisualShaderNodeResizableBase", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeSDFRaymarch", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeSDFToScreenUV", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeSample3D", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Source", + "values": [ + { + "name": "SOURCE_TEXTURE", + "value": 0 + }, + { + "name": "SOURCE_PORT", + "value": 1 + }, + { + "name": "SOURCE_MAX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "enum::VisualShaderNodeSample3D.Source" + } + ] + }, + { + "name": "get_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeSample3D.Source" + } + } + ], + "properties": [ + { + "type": "int", + "name": "source", + "setter": "set_source", + "getter": "get_source", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeScreenUVToSDF", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeSmoothStep", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_SCALAR", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_2D_SCALAR", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "OP_TYPE_VECTOR_3D_SCALAR", + "value": 4 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 5 + }, + { + "name": "OP_TYPE_VECTOR_4D_SCALAR", + "value": 6 + }, + { + "name": "OP_TYPE_MAX", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op_type", + "type": "enum::VisualShaderNodeSmoothStep.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeSmoothStep.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeStep", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_SCALAR", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_2D_SCALAR", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "OP_TYPE_VECTOR_3D_SCALAR", + "value": 4 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 5 + }, + { + "name": "OP_TYPE_VECTOR_4D_SCALAR", + "value": 6 + }, + { + "name": "OP_TYPE_MAX", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op_type", + "type": "enum::VisualShaderNodeStep.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeStep.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeSwitch", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_FLOAT", + "value": 0 + }, + { + "name": "OP_TYPE_INT", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_2D", + "value": 2 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 3 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 4 + }, + { + "name": "OP_TYPE_BOOLEAN", + "value": 5 + }, + { + "name": "OP_TYPE_TRANSFORM", + "value": 6 + }, + { + "name": "OP_TYPE_MAX", + "value": 7 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeSwitch.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeSwitch.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTexture", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Source", + "values": [ + { + "name": "SOURCE_TEXTURE", + "value": 0 + }, + { + "name": "SOURCE_SCREEN", + "value": 1 + }, + { + "name": "SOURCE_2D_TEXTURE", + "value": 2 + }, + { + "name": "SOURCE_2D_NORMAL", + "value": 3 + }, + { + "name": "SOURCE_DEPTH", + "value": 4 + }, + { + "name": "SOURCE_PORT", + "value": 5 + }, + { + "name": "SOURCE_MAX", + "value": 6 + } + ] + }, + { + "name": "TextureType", + "values": [ + { + "name": "TYPE_DATA", + "value": 0 + }, + { + "name": "TYPE_COLOR", + "value": 1 + }, + { + "name": "TYPE_NORMAL_MAP", + "value": 2 + }, + { + "name": "TYPE_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_source", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "enum::VisualShaderNodeTexture.Source" + } + ] + }, + { + "name": "get_source", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTexture.Source" + } + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Texture2D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2D" + } + }, + { + "name": "set_texture_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "enum::VisualShaderNodeTexture.TextureType" + } + ] + }, + { + "name": "get_texture_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTexture.TextureType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "source", + "setter": "set_source", + "getter": "get_source", + "index": -1 + }, + { + "type": "Texture2D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + }, + { + "type": "int", + "name": "texture_type", + "setter": "set_texture_type", + "getter": "get_texture_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTexture2DArray", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeSample3D", + "api_type": "core", + "methods": [ + { + "name": "set_texture_array", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Texture2DArray" + } + ] + }, + { + "name": "get_texture_array", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture2DArray" + } + } + ], + "properties": [ + { + "type": "Texture2DArray", + "name": "texture_array", + "setter": "set_texture_array", + "getter": "get_texture_array", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTexture2DArrayUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeTextureUniform", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTexture3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeSample3D", + "api_type": "core", + "methods": [ + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Texture3D" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Texture3D" + } + } + ], + "properties": [ + { + "type": "Texture3D", + "name": "texture", + "setter": "set_texture", + "getter": "get_texture", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTexture3DUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeTextureUniform", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTextureSDF", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTextureSDFNormal", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTextureUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "enums": [ + { + "name": "TextureType", + "values": [ + { + "name": "TYPE_DATA", + "value": 0 + }, + { + "name": "TYPE_COLOR", + "value": 1 + }, + { + "name": "TYPE_NORMAL_MAP", + "value": 2 + }, + { + "name": "TYPE_ANISOTROPY", + "value": 3 + }, + { + "name": "TYPE_MAX", + "value": 4 + } + ] + }, + { + "name": "ColorDefault", + "values": [ + { + "name": "COLOR_DEFAULT_WHITE", + "value": 0 + }, + { + "name": "COLOR_DEFAULT_BLACK", + "value": 1 + }, + { + "name": "COLOR_DEFAULT_MAX", + "value": 2 + } + ] + }, + { + "name": "TextureFilter", + "values": [ + { + "name": "FILTER_DEFAULT", + "value": 0 + }, + { + "name": "FILTER_NEAREST", + "value": 1 + }, + { + "name": "FILTER_LINEAR", + "value": 2 + }, + { + "name": "FILTER_NEAREST_MIPMAP", + "value": 3 + }, + { + "name": "FILTER_LINEAR_MIPMAP", + "value": 4 + }, + { + "name": "FILTER_NEAREST_MIPMAP_ANISOTROPIC", + "value": 5 + }, + { + "name": "FILTER_LINEAR_MIPMAP_ANISOTROPIC", + "value": 6 + }, + { + "name": "FILTER_MAX", + "value": 7 + } + ] + }, + { + "name": "TextureRepeat", + "values": [ + { + "name": "REPEAT_DEFAULT", + "value": 0 + }, + { + "name": "REPEAT_ENABLED", + "value": 1 + }, + { + "name": "REPEAT_DISABLED", + "value": 2 + }, + { + "name": "REPEAT_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_texture_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeTextureUniform.TextureType" + } + ] + }, + { + "name": "get_texture_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTextureUniform.TextureType" + } + }, + { + "name": "set_color_default", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeTextureUniform.ColorDefault" + } + ] + }, + { + "name": "get_color_default", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTextureUniform.ColorDefault" + } + }, + { + "name": "set_texture_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "filter", + "type": "enum::VisualShaderNodeTextureUniform.TextureFilter" + } + ] + }, + { + "name": "get_texture_filter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTextureUniform.TextureFilter" + } + }, + { + "name": "set_texture_repeat", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeTextureUniform.TextureRepeat" + } + ] + }, + { + "name": "get_texture_repeat", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTextureUniform.TextureRepeat" + } + } + ], + "properties": [ + { + "type": "int", + "name": "texture_type", + "setter": "set_texture_type", + "getter": "get_texture_type", + "index": -1 + }, + { + "type": "int", + "name": "color_default", + "setter": "set_color_default", + "getter": "get_color_default", + "index": -1 + }, + { + "type": "int", + "name": "texture_filter", + "setter": "set_texture_filter", + "getter": "get_texture_filter", + "index": -1 + }, + { + "type": "int", + "name": "texture_repeat", + "setter": "set_texture_repeat", + "getter": "get_texture_repeat", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTextureUniformTriplanar", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeTextureUniform", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTransformCompose", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTransformConstant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "Transform3D" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + } + ], + "properties": [ + { + "type": "Transform3D", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTransformDecompose", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VisualShaderNodeTransformFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_INVERSE", + "value": 0 + }, + { + "name": "FUNC_TRANSPOSE", + "value": 1 + }, + { + "name": "FUNC_MAX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeTransformFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTransformFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTransformOp", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Operator", + "values": [ + { + "name": "OP_AxB", + "value": 0 + }, + { + "name": "OP_BxA", + "value": 1 + }, + { + "name": "OP_AxB_COMP", + "value": 2 + }, + { + "name": "OP_BxA_COMP", + "value": 3 + }, + { + "name": "OP_ADD", + "value": 4 + }, + { + "name": "OP_A_MINUS_B", + "value": 5 + }, + { + "name": "OP_B_MINUS_A", + "value": 6 + }, + { + "name": "OP_A_DIV_B", + "value": 7 + }, + { + "name": "OP_B_DIV_A", + "value": 8 + }, + { + "name": "OP_MAX", + "value": 9 + } + ] + } + ], + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::VisualShaderNodeTransformOp.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTransformOp.Operator" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTransformUniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "methods": [ + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Transform3D" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "Transform3D", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeTransformVecMult", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Operator", + "values": [ + { + "name": "OP_AxB", + "value": 0 + }, + { + "name": "OP_BxA", + "value": 1 + }, + { + "name": "OP_3x3_AxB", + "value": 2 + }, + { + "name": "OP_3x3_BxA", + "value": 3 + }, + { + "name": "OP_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::VisualShaderNodeTransformVecMult.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeTransformVecMult.Operator" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeUVFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_PANNING", + "value": 0 + }, + { + "name": "FUNC_SCALING", + "value": 1 + }, + { + "name": "FUNC_MAX", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeUVFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeUVFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeUniform", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "Qualifier", + "values": [ + { + "name": "QUAL_NONE", + "value": 0 + }, + { + "name": "QUAL_GLOBAL", + "value": 1 + }, + { + "name": "QUAL_INSTANCE", + "value": 2 + }, + { + "name": "QUAL_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_uniform_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_uniform_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_qualifier", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "qualifier", + "type": "enum::VisualShaderNodeUniform.Qualifier" + } + ] + }, + { + "name": "get_qualifier", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeUniform.Qualifier" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "uniform_name", + "setter": "set_uniform_name", + "getter": "get_uniform_name", + "index": -1 + }, + { + "type": "int", + "name": "qualifier", + "setter": "set_qualifier", + "getter": "get_qualifier", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeUniformRef", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "set_uniform_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_uniform_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "uniform_name", + "setter": "set_uniform_name", + "getter": "get_uniform_name", + "index": -1 + }, + { + "type": "int", + "name": "uniform_type", + "setter": "_set_uniform_type", + "getter": "_get_uniform_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVarying", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core", + "methods": [ + { + "name": "set_varying_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_varying_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_varying_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShader.VaryingType" + } + ] + }, + { + "name": "get_varying_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShader.VaryingType" + } + } + ], + "properties": [ + { + "type": "StringName", + "name": "varying_name", + "setter": "set_varying_name", + "getter": "get_varying_name", + "index": -1 + }, + { + "type": "int", + "name": "varying_type", + "setter": "set_varying_type", + "getter": "get_varying_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVaryingGetter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVarying", + "api_type": "core" + }, + { + "name": "VisualShaderNodeVaryingSetter", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVarying", + "api_type": "core" + }, + { + "name": "VisualShaderNodeVec2Constant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "Vector2" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVec2Uniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "methods": [ + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Vector2" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "Vector2", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVec3Constant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "Vector3" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "Vector3", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVec3Uniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "methods": [ + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Vector3" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "Vector3", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVec4Constant", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeConstant", + "api_type": "core", + "methods": [ + { + "name": "set_constant", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "constant", + "type": "Quaternion" + } + ] + }, + { + "name": "get_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Quaternion" + } + } + ], + "properties": [ + { + "type": "Quaternion", + "name": "constant", + "setter": "set_constant", + "getter": "get_constant", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVec4Uniform", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeUniform", + "api_type": "core", + "methods": [ + { + "name": "set_default_value_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_default_value_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_default_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "value", + "type": "Quaternion" + } + ] + }, + { + "name": "get_default_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Quaternion" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "default_value_enabled", + "setter": "set_default_value_enabled", + "getter": "is_default_value_enabled", + "index": -1 + }, + { + "type": "Quaternion", + "name": "default_value", + "setter": "set_default_value", + "getter": "get_default_value", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVectorBase", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "VisualShaderNode", + "api_type": "core", + "enums": [ + { + "name": "OpType", + "values": [ + { + "name": "OP_TYPE_VECTOR_2D", + "value": 0 + }, + { + "name": "OP_TYPE_VECTOR_3D", + "value": 1 + }, + { + "name": "OP_TYPE_VECTOR_4D", + "value": 2 + }, + { + "name": "OP_TYPE_MAX", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_op_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::VisualShaderNodeVectorBase.OpType" + } + ] + }, + { + "name": "get_op_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeVectorBase.OpType" + } + } + ], + "properties": [ + { + "type": "int", + "name": "op_type", + "setter": "set_op_type", + "getter": "get_op_type", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVectorCompose", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core" + }, + { + "name": "VisualShaderNodeVectorDecompose", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core" + }, + { + "name": "VisualShaderNodeVectorDistance", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core" + }, + { + "name": "VisualShaderNodeVectorFunc", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core", + "enums": [ + { + "name": "Function", + "values": [ + { + "name": "FUNC_NORMALIZE", + "value": 0 + }, + { + "name": "FUNC_SATURATE", + "value": 1 + }, + { + "name": "FUNC_NEGATE", + "value": 2 + }, + { + "name": "FUNC_RECIPROCAL", + "value": 3 + }, + { + "name": "FUNC_ABS", + "value": 4 + }, + { + "name": "FUNC_ACOS", + "value": 5 + }, + { + "name": "FUNC_ACOSH", + "value": 6 + }, + { + "name": "FUNC_ASIN", + "value": 7 + }, + { + "name": "FUNC_ASINH", + "value": 8 + }, + { + "name": "FUNC_ATAN", + "value": 9 + }, + { + "name": "FUNC_ATANH", + "value": 10 + }, + { + "name": "FUNC_CEIL", + "value": 11 + }, + { + "name": "FUNC_COS", + "value": 12 + }, + { + "name": "FUNC_COSH", + "value": 13 + }, + { + "name": "FUNC_DEGREES", + "value": 14 + }, + { + "name": "FUNC_EXP", + "value": 15 + }, + { + "name": "FUNC_EXP2", + "value": 16 + }, + { + "name": "FUNC_FLOOR", + "value": 17 + }, + { + "name": "FUNC_FRACT", + "value": 18 + }, + { + "name": "FUNC_INVERSE_SQRT", + "value": 19 + }, + { + "name": "FUNC_LOG", + "value": 20 + }, + { + "name": "FUNC_LOG2", + "value": 21 + }, + { + "name": "FUNC_RADIANS", + "value": 22 + }, + { + "name": "FUNC_ROUND", + "value": 23 + }, + { + "name": "FUNC_ROUNDEVEN", + "value": 24 + }, + { + "name": "FUNC_SIGN", + "value": 25 + }, + { + "name": "FUNC_SIN", + "value": 26 + }, + { + "name": "FUNC_SINH", + "value": 27 + }, + { + "name": "FUNC_SQRT", + "value": 28 + }, + { + "name": "FUNC_TAN", + "value": 29 + }, + { + "name": "FUNC_TANH", + "value": 30 + }, + { + "name": "FUNC_TRUNC", + "value": 31 + }, + { + "name": "FUNC_ONEMINUS", + "value": 32 + }, + { + "name": "FUNC_MAX", + "value": 33 + } + ] + } + ], + "methods": [ + { + "name": "set_function", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "func", + "type": "enum::VisualShaderNodeVectorFunc.Function" + } + ] + }, + { + "name": "get_function", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeVectorFunc.Function" + } + } + ], + "properties": [ + { + "type": "int", + "name": "function", + "setter": "set_function", + "getter": "get_function", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVectorLen", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core" + }, + { + "name": "VisualShaderNodeVectorOp", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNodeVectorBase", + "api_type": "core", + "enums": [ + { + "name": "Operator", + "values": [ + { + "name": "OP_ADD", + "value": 0 + }, + { + "name": "OP_SUB", + "value": 1 + }, + { + "name": "OP_MUL", + "value": 2 + }, + { + "name": "OP_DIV", + "value": 3 + }, + { + "name": "OP_MOD", + "value": 4 + }, + { + "name": "OP_POW", + "value": 5 + }, + { + "name": "OP_MAX", + "value": 6 + }, + { + "name": "OP_MIN", + "value": 7 + }, + { + "name": "OP_CROSS", + "value": 8 + }, + { + "name": "OP_ATAN2", + "value": 9 + }, + { + "name": "OP_REFLECT", + "value": 10 + }, + { + "name": "OP_STEP", + "value": 11 + }, + { + "name": "OP_ENUM_SIZE", + "value": 12 + } + ] + } + ], + "methods": [ + { + "name": "set_operator", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "op", + "type": "enum::VisualShaderNodeVectorOp.Operator" + } + ] + }, + { + "name": "get_operator", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VisualShaderNodeVectorOp.Operator" + } + } + ], + "properties": [ + { + "type": "int", + "name": "operator", + "setter": "set_operator", + "getter": "get_operator", + "index": -1 + } + ] + }, + { + "name": "VisualShaderNodeVectorRefract", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "VisualShaderNode", + "api_type": "core" + }, + { + "name": "VoxelGI", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "VisualInstance3D", + "api_type": "core", + "enums": [ + { + "name": "Subdiv", + "values": [ + { + "name": "SUBDIV_64", + "value": 0 + }, + { + "name": "SUBDIV_128", + "value": 1 + }, + { + "name": "SUBDIV_256", + "value": 2 + }, + { + "name": "SUBDIV_512", + "value": 3 + }, + { + "name": "SUBDIV_MAX", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "set_probe_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "data", + "type": "VoxelGIData" + } + ] + }, + { + "name": "get_probe_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "VoxelGIData" + } + }, + { + "name": "set_subdiv", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "subdiv", + "type": "enum::VoxelGI.Subdiv" + } + ] + }, + { + "name": "get_subdiv", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::VoxelGI.Subdiv" + } + }, + { + "name": "set_extents", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "extents", + "type": "Vector3" + } + ] + }, + { + "name": "get_extents", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "bake", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 143531945, + "arguments": [ + { + "name": "from_node", + "type": "Node", + "default_value": "null" + }, + { + "name": "create_visual_debug", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "debug_bake", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ], + "properties": [ + { + "type": "int", + "name": "subdiv", + "setter": "set_subdiv", + "getter": "get_subdiv", + "index": -1 + }, + { + "type": "Vector3", + "name": "extents", + "setter": "set_extents", + "getter": "get_extents", + "index": -1 + }, + { + "type": "VoxelGIData", + "name": "data", + "setter": "set_probe_data", + "getter": "get_probe_data", + "index": -1 + } + ] + }, + { + "name": "VoxelGIData", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "allocate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134403788, + "arguments": [ + { + "name": "to_cell_xform", + "type": "Transform3D" + }, + { + "name": "aabb", + "type": "AABB" + }, + { + "name": "octree_size", + "type": "Vector3" + }, + { + "name": "octree_cells", + "type": "PackedByteArray" + }, + { + "name": "data_cells", + "type": "PackedByteArray" + }, + { + "name": "distance_field", + "type": "PackedByteArray" + }, + { + "name": "level_counts", + "type": "PackedInt32Array" + } + ] + }, + { + "name": "get_bounds", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "AABB" + } + }, + { + "name": "get_octree_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_to_cell_xform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "get_octree_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "get_data_cells", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "get_level_counts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "set_dynamic_range", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "dynamic_range", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_dynamic_range", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_energy", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "energy", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_energy", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_normal_bias", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "bias", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_normal_bias", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_propagation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "propagation", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_propagation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_interior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interior", + "type": "bool" + } + ] + }, + { + "name": "is_interior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_use_two_bounces", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_two_bounces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "float", + "name": "dynamic_range", + "setter": "set_dynamic_range", + "getter": "get_dynamic_range", + "index": -1 + }, + { + "type": "float", + "name": "energy", + "setter": "set_energy", + "getter": "get_energy", + "index": -1 + }, + { + "type": "float", + "name": "bias", + "setter": "set_bias", + "getter": "get_bias", + "index": -1 + }, + { + "type": "float", + "name": "normal_bias", + "setter": "set_normal_bias", + "getter": "get_normal_bias", + "index": -1 + }, + { + "type": "float", + "name": "propagation", + "setter": "set_propagation", + "getter": "get_propagation", + "index": -1 + }, + { + "type": "bool", + "name": "use_two_bounces", + "setter": "set_use_two_bounces", + "getter": "is_using_two_bounces", + "index": -1 + }, + { + "type": "bool", + "name": "interior", + "setter": "set_interior", + "getter": "is_interior", + "index": -1 + } + ] + }, + { + "name": "WeakRef", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "methods": [ + { + "name": "get_ref", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Variant" + } + } + ] + }, + { + "name": "WebRTCDataChannel", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "PacketPeer", + "api_type": "core", + "enums": [ + { + "name": "WriteMode", + "values": [ + { + "name": "WRITE_MODE_TEXT", + "value": 0 + }, + { + "name": "WRITE_MODE_BINARY", + "value": 1 + } + ] + }, + { + "name": "ChannelState", + "values": [ + { + "name": "STATE_CONNECTING", + "value": 0 + }, + { + "name": "STATE_OPEN", + "value": 1 + }, + { + "name": "STATE_CLOSING", + "value": 2 + }, + { + "name": "STATE_CLOSED", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "was_string_packet", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_write_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "write_mode", + "type": "enum::WebRTCDataChannel.WriteMode" + } + ] + }, + { + "name": "get_write_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::WebRTCDataChannel.WriteMode" + } + }, + { + "name": "get_ready_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::WebRTCDataChannel.ChannelState" + } + }, + { + "name": "get_label", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_ordered", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_id", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_max_packet_life_time", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_max_retransmits", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_protocol", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "is_negotiated", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_buffered_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "int", + "name": "write_mode", + "setter": "set_write_mode", + "getter": "get_write_mode", + "index": -1 + } + ] + }, + { + "name": "WebRTCDataChannelExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "WebRTCDataChannel", + "api_type": "core", + "methods": [ + { + "name": "_get_packet", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "r_buffer", + "type": "const uint8_t **" + }, + { + "name": "r_buffer_size", + "type": "int32_t*" + } + ] + }, + { + "name": "_put_packet", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_buffer", + "type": "const uint8_t*" + }, + { + "name": "p_buffer_size", + "type": "int" + } + ] + }, + { + "name": "_get_available_packet_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_max_packet_size", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_poll", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_close", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_set_write_mode", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "p_write_mode", + "type": "int" + } + ] + }, + { + "name": "_get_write_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_was_string_packet", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_ready_state", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_label", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_is_ordered", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_max_packet_life_time", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_max_retransmits", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_protocol", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "String" + } + }, + { + "name": "_is_negotiated", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_get_buffered_amount", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + } + ] + }, + { + "name": "WebRTCMultiplayerPeer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "MultiplayerPeer", + "api_type": "core", + "methods": [ + { + "name": "initialize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1474135307, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "peer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "server_compatibility", + "type": "bool", + "default_value": "false" + }, + { + "name": "channels_config", + "type": "Array", + "default_value": "[]" + } + ] + }, + { + "name": "add_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 174785354, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "peer", + "type": "WebRTCPeerConnection" + }, + { + "name": "peer_id", + "type": "int", + "meta": "int32" + }, + { + "name": "unreliable_lifetime", + "type": "int", + "meta": "int32", + "default_value": "1" + } + ] + }, + { + "name": "remove_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "peer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "peer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "peer_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_peers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "WebRTCPeerConnection", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "ConnectionState", + "values": [ + { + "name": "STATE_NEW", + "value": 0 + }, + { + "name": "STATE_CONNECTING", + "value": 1 + }, + { + "name": "STATE_CONNECTED", + "value": 2 + }, + { + "name": "STATE_DISCONNECTED", + "value": 3 + }, + { + "name": "STATE_FAILED", + "value": 4 + }, + { + "name": "STATE_CLOSED", + "value": 5 + } + ] + } + ], + "methods": [ + { + "name": "initialize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 365816645, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "configuration", + "type": "Dictionary", + "default_value": "{}" + } + ] + }, + { + "name": "create_data_channel", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599433, + "return_value": { + "type": "WebRTCDataChannel" + }, + "arguments": [ + { + "name": "label", + "type": "String" + }, + { + "name": "options", + "type": "Dictionary", + "default_value": "{}" + } + ] + }, + { + "name": "create_offer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "set_local_description", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "type", + "type": "String" + }, + { + "name": "sdp", + "type": "String" + } + ] + }, + { + "name": "set_remote_description", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135410024, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "type", + "type": "String" + }, + { + "name": "sdp", + "type": "String" + } + ] + }, + { + "name": "add_ice_candidate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135445961, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "media", + "type": "String" + }, + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "poll", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_connection_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::WebRTCPeerConnection.ConnectionState" + } + } + ], + "signals": [ + { + "name": "session_description_created", + "arguments": [ + { + "name": "type", + "type": "String" + }, + { + "name": "sdp", + "type": "String" + } + ] + }, + { + "name": "ice_candidate_created", + "arguments": [ + { + "name": "media", + "type": "String" + }, + { + "name": "index", + "type": "int" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "data_channel_received", + "arguments": [ + { + "name": "channel", + "type": "WebRTCDataChannel" + } + ] + } + ] + }, + { + "name": "WebRTCPeerConnectionExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "WebRTCPeerConnection", + "api_type": "core", + "methods": [ + { + "name": "_get_connection_state", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_initialize", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_config", + "type": "Dictionary" + } + ] + }, + { + "name": "_create_data_channel", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "p_label", + "type": "String" + }, + { + "name": "p_config", + "type": "Dictionary" + } + ] + }, + { + "name": "_create_offer", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_set_remote_description", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_type", + "type": "String" + }, + { + "name": "p_sdp", + "type": "String" + } + ] + }, + { + "name": "_set_local_description", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_type", + "type": "String" + }, + { + "name": "p_sdp", + "type": "String" + } + ] + }, + { + "name": "_add_ice_candidate", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_sdp_mid_name", + "type": "String" + }, + { + "name": "p_sdp_mline_index", + "type": "int" + }, + { + "name": "p_sdp_name", + "type": "String" + } + ] + }, + { + "name": "_poll", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_close", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "make_default", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + } + ] + }, + { + "name": "WebSocketClient", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "WebSocketMultiplayerPeer", + "api_type": "core", + "methods": [ + { + "name": "connect_to_url", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2941976884, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "url", + "type": "String" + }, + { + "name": "protocols", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + }, + { + "name": "gd_mp_api", + "type": "bool", + "default_value": "false" + }, + { + "name": "custom_headers", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + } + ] + }, + { + "name": "disconnect_from_host", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4251720975, + "arguments": [ + { + "name": "code", + "type": "int", + "meta": "int32", + "default_value": "1000" + }, + { + "name": "reason", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_connected_host", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_connected_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "set_verify_ssl_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_verify_ssl_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_trusted_ssl_certificate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "X509Certificate" + } + }, + { + "name": "set_trusted_ssl_certificate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cert", + "type": "X509Certificate" + } + ] + } + ], + "signals": [ + { + "name": "data_received" + }, + { + "name": "connection_established", + "arguments": [ + { + "name": "protocol", + "type": "String" + } + ] + }, + { + "name": "server_close_request", + "arguments": [ + { + "name": "code", + "type": "int" + }, + { + "name": "reason", + "type": "String" + } + ] + }, + { + "name": "connection_closed", + "arguments": [ + { + "name": "was_clean_close", + "type": "bool" + } + ] + }, + { + "name": "connection_error" + } + ], + "properties": [ + { + "type": "bool", + "name": "verify_ssl", + "setter": "set_verify_ssl_enabled", + "getter": "is_verify_ssl_enabled", + "index": -1 + }, + { + "type": "X509Certificate", + "name": "trusted_ssl_certificate", + "setter": "set_trusted_ssl_certificate", + "getter": "get_trusted_ssl_certificate", + "index": -1 + } + ] + }, + { + "name": "WebSocketMultiplayerPeer", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "MultiplayerPeer", + "api_type": "core", + "methods": [ + { + "name": "set_buffers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135481898, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "input_buffer_size_kb", + "type": "int", + "meta": "int32" + }, + { + "name": "input_max_packets", + "type": "int", + "meta": "int32" + }, + { + "name": "output_buffer_size_kb", + "type": "int", + "meta": "int32" + }, + { + "name": "output_max_packets", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "WebSocketPeer" + }, + "arguments": [ + { + "name": "peer_id", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "peer_packet", + "arguments": [ + { + "name": "peer_source", + "type": "int" + } + ] + } + ] + }, + { + "name": "WebSocketPeer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PacketPeer", + "api_type": "core", + "enums": [ + { + "name": "WriteMode", + "values": [ + { + "name": "WRITE_MODE_TEXT", + "value": 0 + }, + { + "name": "WRITE_MODE_BINARY", + "value": 1 + } + ] + } + ], + "methods": [ + { + "name": "get_write_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::WebSocketPeer.WriteMode" + } + }, + { + "name": "set_write_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::WebSocketPeer.WriteMode" + } + ] + }, + { + "name": "is_connected_to_host", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "was_string_packet", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "close", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4251720975, + "arguments": [ + { + "name": "code", + "type": "int", + "meta": "int32", + "default_value": "1000" + }, + { + "name": "reason", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_connected_host", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_connected_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint16" + } + }, + { + "name": "set_no_delay", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_current_outbound_buffered_amount", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ] + }, + { + "name": "WebSocketServer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "WebSocketMultiplayerPeer", + "api_type": "core", + "methods": [ + { + "name": "is_listening", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_extra_headers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 139628078, + "arguments": [ + { + "name": "headers", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + } + ] + }, + { + "name": "listen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1480485266, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "port", + "type": "int", + "meta": "int32" + }, + { + "name": "protocols", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + }, + { + "name": "gd_mp_api", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "stop", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "has_peer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_peer_address", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_peer_port", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "disconnect_peer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1738636107, + "arguments": [ + { + "name": "id", + "type": "int", + "meta": "int32" + }, + { + "name": "code", + "type": "int", + "meta": "int32", + "default_value": "1000" + }, + { + "name": "reason", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_bind_ip", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_bind_ip", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ip", + "type": "String" + } + ] + }, + { + "name": "get_private_key", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CryptoKey" + } + }, + { + "name": "set_private_key", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "key", + "type": "CryptoKey" + } + ] + }, + { + "name": "get_ssl_certificate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "X509Certificate" + } + }, + { + "name": "set_ssl_certificate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "cert", + "type": "X509Certificate" + } + ] + }, + { + "name": "get_ca_chain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "X509Certificate" + } + }, + { + "name": "set_ca_chain", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "ca_chain", + "type": "X509Certificate" + } + ] + }, + { + "name": "get_handshake_timeout", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_handshake_timeout", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "timeout", + "type": "float", + "meta": "float" + } + ] + } + ], + "signals": [ + { + "name": "client_close_request", + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "code", + "type": "int" + }, + { + "name": "reason", + "type": "String" + } + ] + }, + { + "name": "client_disconnected", + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "was_clean_close", + "type": "bool" + } + ] + }, + { + "name": "client_connected", + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "protocol", + "type": "String" + }, + { + "name": "resource_name", + "type": "String" + } + ] + }, + { + "name": "data_received", + "arguments": [ + { + "name": "id", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "bind_ip", + "setter": "set_bind_ip", + "getter": "get_bind_ip", + "index": -1 + }, + { + "type": "CryptoKey", + "name": "private_key", + "setter": "set_private_key", + "getter": "get_private_key", + "index": -1 + }, + { + "type": "X509Certificate", + "name": "ssl_certificate", + "setter": "set_ssl_certificate", + "getter": "get_ssl_certificate", + "index": -1 + }, + { + "type": "X509Certificate", + "name": "ca_chain", + "setter": "set_ca_chain", + "getter": "get_ca_chain", + "index": -1 + }, + { + "type": "float", + "name": "handshake_timeout", + "setter": "set_handshake_timeout", + "getter": "get_handshake_timeout", + "index": -1 + } + ] + }, + { + "name": "WebXRInterface", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "XRInterface", + "api_type": "core", + "methods": [ + { + "name": "is_session_supported", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "session_mode", + "type": "String" + } + ] + }, + { + "name": "set_session_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "session_mode", + "type": "String" + } + ] + }, + { + "name": "get_session_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_required_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "required_features", + "type": "String" + } + ] + }, + { + "name": "get_required_features", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_optional_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "optional_features", + "type": "String" + } + ] + }, + { + "name": "get_optional_features", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_reference_space_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_requested_reference_space_types", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "requested_reference_space_types", + "type": "String" + } + ] + }, + { + "name": "get_requested_reference_space_types", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_controller", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "XRPositionalTracker" + }, + "arguments": [ + { + "name": "controller_id", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_visibility_state", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_bounds_geometry", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + } + ], + "signals": [ + { + "name": "session_supported", + "arguments": [ + { + "name": "session_mode", + "type": "String" + }, + { + "name": "supported", + "type": "bool" + } + ] + }, + { + "name": "session_started" + }, + { + "name": "session_ended" + }, + { + "name": "session_failed", + "arguments": [ + { + "name": "message", + "type": "String" + } + ] + }, + { + "name": "selectstart", + "arguments": [ + { + "name": "controller_id", + "type": "int" + } + ] + }, + { + "name": "select", + "arguments": [ + { + "name": "controller_id", + "type": "int" + } + ] + }, + { + "name": "selectend", + "arguments": [ + { + "name": "controller_id", + "type": "int" + } + ] + }, + { + "name": "squeezestart", + "arguments": [ + { + "name": "controller_id", + "type": "int" + } + ] + }, + { + "name": "squeeze", + "arguments": [ + { + "name": "controller_id", + "type": "int" + } + ] + }, + { + "name": "squeezeend", + "arguments": [ + { + "name": "controller_id", + "type": "int" + } + ] + }, + { + "name": "visibility_state_changed" + }, + { + "name": "reference_space_reset" + } + ], + "properties": [ + { + "type": "String", + "name": "session_mode", + "setter": "set_session_mode", + "getter": "get_session_mode", + "index": -1 + }, + { + "type": "String", + "name": "required_features", + "setter": "set_required_features", + "getter": "get_required_features", + "index": -1 + }, + { + "type": "String", + "name": "optional_features", + "setter": "set_optional_features", + "getter": "get_optional_features", + "index": -1 + }, + { + "type": "String", + "name": "requested_reference_space_types", + "setter": "set_requested_reference_space_types", + "getter": "get_requested_reference_space_types", + "index": -1 + }, + { + "type": "String", + "name": "reference_space_type", + "setter": "", + "getter": "get_reference_space_type", + "index": -1 + }, + { + "type": "String", + "name": "visibility_state", + "setter": "", + "getter": "get_visibility_state", + "index": -1 + }, + { + "type": "PackedVector3Array", + "name": "bounds_geometry", + "setter": "", + "getter": "get_bounds_geometry", + "index": -1 + } + ] + }, + { + "name": "Window", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Viewport", + "api_type": "core", + "constants": [ + { + "name": "NOTIFICATION_VISIBILITY_CHANGED", + "value": 30 + } + ], + "enums": [ + { + "name": "Mode", + "values": [ + { + "name": "MODE_WINDOWED", + "value": 0 + }, + { + "name": "MODE_MINIMIZED", + "value": 1 + }, + { + "name": "MODE_MAXIMIZED", + "value": 2 + }, + { + "name": "MODE_FULLSCREEN", + "value": 3 + }, + { + "name": "MODE_EXCLUSIVE_FULLSCREEN", + "value": 4 + } + ] + }, + { + "name": "Flags", + "values": [ + { + "name": "FLAG_RESIZE_DISABLED", + "value": 0 + }, + { + "name": "FLAG_BORDERLESS", + "value": 1 + }, + { + "name": "FLAG_ALWAYS_ON_TOP", + "value": 2 + }, + { + "name": "FLAG_TRANSPARENT", + "value": 3 + }, + { + "name": "FLAG_NO_FOCUS", + "value": 4 + }, + { + "name": "FLAG_POPUP", + "value": 5 + }, + { + "name": "FLAG_MAX", + "value": 6 + } + ] + }, + { + "name": "ContentScaleMode", + "values": [ + { + "name": "CONTENT_SCALE_MODE_DISABLED", + "value": 0 + }, + { + "name": "CONTENT_SCALE_MODE_CANVAS_ITEMS", + "value": 1 + }, + { + "name": "CONTENT_SCALE_MODE_VIEWPORT", + "value": 2 + } + ] + }, + { + "name": "ContentScaleAspect", + "values": [ + { + "name": "CONTENT_SCALE_ASPECT_IGNORE", + "value": 0 + }, + { + "name": "CONTENT_SCALE_ASPECT_KEEP", + "value": 1 + }, + { + "name": "CONTENT_SCALE_ASPECT_KEEP_WIDTH", + "value": 2 + }, + { + "name": "CONTENT_SCALE_ASPECT_KEEP_HEIGHT", + "value": 3 + }, + { + "name": "CONTENT_SCALE_ASPECT_EXPAND", + "value": 4 + } + ] + }, + { + "name": "LayoutDirection", + "values": [ + { + "name": "LAYOUT_DIRECTION_INHERITED", + "value": 0 + }, + { + "name": "LAYOUT_DIRECTION_LOCALE", + "value": 1 + }, + { + "name": "LAYOUT_DIRECTION_LTR", + "value": 2 + }, + { + "name": "LAYOUT_DIRECTION_RTL", + "value": 3 + } + ] + } + ], + "methods": [ + { + "name": "set_title", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "title", + "type": "String" + } + ] + }, + { + "name": "get_title", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_current_screen", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_current_screen", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + } + ] + }, + { + "name": "get_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "reset_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_real_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_max_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "max_size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_max_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_min_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "min_size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_min_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Window.Mode" + } + ] + }, + { + "name": "get_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Window.Mode" + } + }, + { + "name": "set_flag", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "flag", + "type": "enum::Window.Flags" + }, + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "get_flag", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "flag", + "type": "enum::Window.Flags" + } + ] + }, + { + "name": "is_maximize_allowed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "request_attention", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "move_to_foreground", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_visible", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "is_visible", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "hide", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "show", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_transient", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transient", + "type": "bool" + } + ] + }, + { + "name": "is_transient", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_exclusive", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "exclusive", + "type": "bool" + } + ] + }, + { + "name": "is_exclusive", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "can_draw", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "has_focus", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "grab_focus", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_ime_active", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "active", + "type": "bool" + } + ] + }, + { + "name": "set_ime_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "position", + "type": "Vector2i" + } + ] + }, + { + "name": "is_embedded", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_contents_minimum_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_content_scale_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "size", + "type": "Vector2i" + } + ] + }, + { + "name": "get_content_scale_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2i" + } + }, + { + "name": "set_content_scale_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "mode", + "type": "enum::Window.ContentScaleMode" + } + ] + }, + { + "name": "get_content_scale_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Window.ContentScaleMode" + } + }, + { + "name": "set_content_scale_aspect", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "aspect", + "type": "enum::Window.ContentScaleAspect" + } + ] + }, + { + "name": "get_content_scale_aspect", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Window.ContentScaleAspect" + } + }, + { + "name": "set_content_scale_factor", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "factor", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_content_scale_factor", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_use_font_oversampling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_font_oversampling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_wrap_controls", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_wrapping_controls", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "child_controls_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "set_theme", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme", + "type": "Theme" + } + ] + }, + { + "name": "get_theme", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Theme" + } + }, + { + "name": "set_theme_type_variation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "theme_type", + "type": "StringName" + } + ] + }, + { + "name": "get_theme_type_variation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "get_theme_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "StyleBox" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Font" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "Color" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_icon", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_stylebox", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "has_theme_constant", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 173599466, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "theme_type", + "type": "StringName", + "default_value": "\"\"" + } + ] + }, + { + "name": "get_theme_default_base_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_theme_default_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Font" + } + }, + { + "name": "get_theme_default_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_layout_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "direction", + "type": "enum::Window.LayoutDirection" + } + ] + }, + { + "name": "get_layout_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::Window.LayoutDirection" + } + }, + { + "name": "is_layout_rtl", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_auto_translate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_auto_translating", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "popup", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 265334380, + "arguments": [ + { + "name": "rect", + "type": "Rect2i", + "default_value": "Rect2i(0, 0, 0, 0)" + } + ] + }, + { + "name": "popup_on_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "parent_rect", + "type": "Rect2i" + } + ] + }, + { + "name": "popup_centered_ratio", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2502430199, + "arguments": [ + { + "name": "ratio", + "type": "float", + "meta": "float", + "default_value": "0.8" + } + ] + }, + { + "name": "popup_centered", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2219751724, + "arguments": [ + { + "name": "minsize", + "type": "Vector2i", + "default_value": "Vector2i(0, 0)" + } + ] + }, + { + "name": "popup_centered_clamped", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3173471955, + "arguments": [ + { + "name": "minsize", + "type": "Vector2i", + "default_value": "Vector2i(0, 0)" + }, + { + "name": "fallback_ratio", + "type": "float", + "meta": "float", + "default_value": "0.75" + } + ] + } + ], + "signals": [ + { + "name": "window_input", + "arguments": [ + { + "name": "event", + "type": "InputEvent" + } + ] + }, + { + "name": "files_dropped", + "arguments": [ + { + "name": "files", + "type": "PackedStringArray" + } + ] + }, + { + "name": "mouse_entered" + }, + { + "name": "mouse_exited" + }, + { + "name": "focus_entered" + }, + { + "name": "focus_exited" + }, + { + "name": "close_requested" + }, + { + "name": "go_back_requested" + }, + { + "name": "visibility_changed" + }, + { + "name": "about_to_popup" + }, + { + "name": "theme_changed" + } + ], + "properties": [ + { + "type": "String", + "name": "title", + "setter": "set_title", + "getter": "get_title", + "index": -1 + }, + { + "type": "Vector2i", + "name": "position", + "setter": "set_position", + "getter": "get_position", + "index": -1 + }, + { + "type": "Vector2i", + "name": "size", + "setter": "set_size", + "getter": "get_size", + "index": -1 + }, + { + "type": "int", + "name": "mode", + "setter": "set_mode", + "getter": "get_mode", + "index": -1 + }, + { + "type": "int", + "name": "current_screen", + "setter": "set_current_screen", + "getter": "get_current_screen", + "index": -1 + }, + { + "type": "bool", + "name": "visible", + "setter": "set_visible", + "getter": "is_visible", + "index": -1 + }, + { + "type": "bool", + "name": "wrap_controls", + "setter": "set_wrap_controls", + "getter": "is_wrapping_controls", + "index": -1 + }, + { + "type": "bool", + "name": "transient", + "setter": "set_transient", + "getter": "is_transient", + "index": -1 + }, + { + "type": "bool", + "name": "exclusive", + "setter": "set_exclusive", + "getter": "is_exclusive", + "index": -1 + }, + { + "type": "bool", + "name": "unresizable", + "setter": "set_flag", + "getter": "get_flag", + "index": 0 + }, + { + "type": "bool", + "name": "borderless", + "setter": "set_flag", + "getter": "get_flag", + "index": 1 + }, + { + "type": "bool", + "name": "always_on_top", + "setter": "set_flag", + "getter": "get_flag", + "index": 2 + }, + { + "type": "bool", + "name": "transparent", + "setter": "set_flag", + "getter": "get_flag", + "index": 3 + }, + { + "type": "bool", + "name": "unfocusable", + "setter": "set_flag", + "getter": "get_flag", + "index": 4 + }, + { + "type": "bool", + "name": "popup_window", + "setter": "set_flag", + "getter": "get_flag", + "index": 5 + }, + { + "type": "Vector2i", + "name": "min_size", + "setter": "set_min_size", + "getter": "get_min_size", + "index": -1 + }, + { + "type": "Vector2i", + "name": "max_size", + "setter": "set_max_size", + "getter": "get_max_size", + "index": -1 + }, + { + "type": "Vector2i", + "name": "content_scale_size", + "setter": "set_content_scale_size", + "getter": "get_content_scale_size", + "index": -1 + }, + { + "type": "int", + "name": "content_scale_mode", + "setter": "set_content_scale_mode", + "getter": "get_content_scale_mode", + "index": -1 + }, + { + "type": "int", + "name": "content_scale_aspect", + "setter": "set_content_scale_aspect", + "getter": "get_content_scale_aspect", + "index": -1 + }, + { + "type": "float", + "name": "content_scale_factor", + "setter": "set_content_scale_factor", + "getter": "get_content_scale_factor", + "index": -1 + }, + { + "type": "Theme", + "name": "theme", + "setter": "set_theme", + "getter": "get_theme", + "index": -1 + }, + { + "type": "String", + "name": "theme_type_variation", + "setter": "set_theme_type_variation", + "getter": "get_theme_type_variation", + "index": -1 + }, + { + "type": "bool", + "name": "auto_translate", + "setter": "set_auto_translate", + "getter": "is_auto_translating", + "index": -1 + } + ] + }, + { + "name": "World2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_canvas", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_navigation_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_direct_space_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PhysicsDirectSpaceState2D" + } + } + ], + "properties": [ + { + "type": "RID", + "name": "canvas", + "setter": "", + "getter": "get_canvas", + "index": -1 + }, + { + "type": "RID", + "name": "space", + "setter": "", + "getter": "get_space", + "index": -1 + }, + { + "type": "RID", + "name": "navigation_map", + "setter": "", + "getter": "get_navigation_map", + "index": -1 + }, + { + "type": "PhysicsDirectSpaceState2D", + "name": "direct_space_state", + "setter": "", + "getter": "get_direct_space_state", + "index": -1 + } + ] + }, + { + "name": "World3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_space", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_navigation_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "get_scenario", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "RID" + } + }, + { + "name": "set_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "env", + "type": "Environment" + } + ] + }, + { + "name": "get_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Environment" + } + }, + { + "name": "set_fallback_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "env", + "type": "Environment" + } + ] + }, + { + "name": "get_fallback_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Environment" + } + }, + { + "name": "set_camera_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "effects", + "type": "CameraEffects" + } + ] + }, + { + "name": "get_camera_effects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CameraEffects" + } + }, + { + "name": "get_direct_space_state", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "PhysicsDirectSpaceState3D" + } + } + ], + "properties": [ + { + "type": "Environment", + "name": "environment", + "setter": "set_environment", + "getter": "get_environment", + "index": -1 + }, + { + "type": "Environment", + "name": "fallback_environment", + "setter": "set_fallback_environment", + "getter": "get_fallback_environment", + "index": -1 + }, + { + "type": "CameraEffects", + "name": "camera_effects", + "setter": "set_camera_effects", + "getter": "get_camera_effects", + "index": -1 + }, + { + "type": "RID", + "name": "space", + "setter": "", + "getter": "get_space", + "index": -1 + }, + { + "type": "RID", + "name": "navigation_map", + "setter": "", + "getter": "get_navigation_map", + "index": -1 + }, + { + "type": "RID", + "name": "scenario", + "setter": "", + "getter": "get_scenario", + "index": -1 + }, + { + "type": "PhysicsDirectSpaceState3D", + "name": "direct_space_state", + "setter": "", + "getter": "get_direct_space_state", + "index": -1 + } + ] + }, + { + "name": "WorldBoundaryShape2D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape2D", + "api_type": "core", + "methods": [ + { + "name": "set_normal", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "normal", + "type": "Vector2" + } + ] + }, + { + "name": "get_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "set_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Vector2", + "name": "normal", + "setter": "set_normal", + "getter": "get_normal", + "index": -1 + }, + { + "type": "float", + "name": "distance", + "setter": "set_distance", + "getter": "get_distance", + "index": -1 + } + ] + }, + { + "name": "WorldBoundaryShape3D", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Shape3D", + "api_type": "core", + "methods": [ + { + "name": "set_plane", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "plane", + "type": "Plane" + } + ] + }, + { + "name": "get_plane", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Plane" + } + } + ], + "properties": [ + { + "type": "Plane", + "name": "plane", + "setter": "set_plane", + "getter": "get_plane", + "index": -1 + } + ] + }, + { + "name": "WorldEnvironment", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node", + "api_type": "core", + "methods": [ + { + "name": "set_environment", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "env", + "type": "Environment" + } + ] + }, + { + "name": "get_environment", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Environment" + } + }, + { + "name": "set_camera_effects", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "env", + "type": "CameraEffects" + } + ] + }, + { + "name": "get_camera_effects", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "CameraEffects" + } + } + ], + "properties": [ + { + "type": "Environment", + "name": "environment", + "setter": "set_environment", + "getter": "get_environment", + "index": -1 + }, + { + "type": "CameraEffects", + "name": "camera_effects", + "setter": "set_camera_effects", + "getter": "get_camera_effects", + "index": -1 + } + ] + }, + { + "name": "X509Certificate", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "save", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "load", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + } + ] + }, + { + "name": "XMLParser", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "NodeType", + "values": [ + { + "name": "NODE_NONE", + "value": 0 + }, + { + "name": "NODE_ELEMENT", + "value": 1 + }, + { + "name": "NODE_ELEMENT_END", + "value": 2 + }, + { + "name": "NODE_TEXT", + "value": 3 + }, + { + "name": "NODE_COMMENT", + "value": 4 + }, + { + "name": "NODE_CDATA", + "value": 5 + }, + { + "name": "NODE_UNKNOWN", + "value": 6 + } + ] + } + ], + "methods": [ + { + "name": "read", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::Error" + } + }, + { + "name": "get_node_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "enum::XMLParser.NodeType" + } + }, + { + "name": "get_node_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_node_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "get_node_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint64" + } + }, + { + "name": "get_attribute_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_attribute_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_attribute_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "has_attribute", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_named_attribute_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_named_attribute_value_safe", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "is_empty", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_current_line", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "skip_section", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "seek", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "position", + "type": "int", + "meta": "uint64" + } + ] + }, + { + "name": "open", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "file", + "type": "String" + } + ] + }, + { + "name": "open_buffer", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "buffer", + "type": "PackedByteArray" + } + ] + } + ] + }, + { + "name": "XRAnchor3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "XRNode3D", + "api_type": "core", + "methods": [ + { + "name": "get_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "get_plane", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Plane" + } + } + ] + }, + { + "name": "XRCamera3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Camera3D", + "api_type": "core" + }, + { + "name": "XRController3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "XRNode3D", + "api_type": "core", + "methods": [ + { + "name": "is_button_pressed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_axis", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_tracker_hand", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::XRPositionalTracker.TrackerHand" + } + } + ], + "signals": [ + { + "name": "button_pressed", + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "button_released", + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "input_value_changed", + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "input_axis_changed", + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "Vector2" + } + ] + } + ] + }, + { + "name": "XRInterface", + "is_refcounted": true, + "is_instantiable": false, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "Capabilities", + "values": [ + { + "name": "XR_NONE", + "value": 0 + }, + { + "name": "XR_MONO", + "value": 1 + }, + { + "name": "XR_STEREO", + "value": 2 + }, + { + "name": "XR_QUAD", + "value": 4 + }, + { + "name": "XR_VR", + "value": 8 + }, + { + "name": "XR_AR", + "value": 16 + }, + { + "name": "XR_EXTERNAL", + "value": 32 + } + ] + }, + { + "name": "TrackingStatus", + "values": [ + { + "name": "XR_NORMAL_TRACKING", + "value": 0 + }, + { + "name": "XR_EXCESSIVE_MOTION", + "value": 1 + }, + { + "name": "XR_INSUFFICIENT_FEATURES", + "value": 2 + }, + { + "name": "XR_UNKNOWN_TRACKING", + "value": 3 + }, + { + "name": "XR_NOT_TRACKING", + "value": 4 + } + ] + }, + { + "name": "PlayAreaMode", + "values": [ + { + "name": "XR_PLAY_AREA_UNKNOWN", + "value": 0 + }, + { + "name": "XR_PLAY_AREA_3DOF", + "value": 1 + }, + { + "name": "XR_PLAY_AREA_SITTING", + "value": 2 + }, + { + "name": "XR_PLAY_AREA_ROOMSCALE", + "value": 3 + }, + { + "name": "XR_PLAY_AREA_STAGE", + "value": 4 + } + ] + } + ], + "methods": [ + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "get_capabilities", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "is_primary", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_primary", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "primary", + "type": "bool" + } + ] + }, + { + "name": "is_initialized", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "initialize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "bool" + } + }, + { + "name": "uninitialize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134152229 + }, + { + "name": "get_tracking_status", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::XRInterface.TrackingStatus" + } + }, + { + "name": "get_render_target_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "get_view_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "trigger_haptic_pulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134367851, + "arguments": [ + { + "name": "action_name", + "type": "String" + }, + { + "name": "tracker_name", + "type": "StringName" + }, + { + "name": "frequency", + "type": "float", + "meta": "double" + }, + { + "name": "amplitude", + "type": "float", + "meta": "double" + }, + { + "name": "duration_sec", + "type": "float", + "meta": "double" + }, + { + "name": "delay_sec", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "supports_play_area_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::XRInterface.PlayAreaMode" + } + ] + }, + { + "name": "get_play_area_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::XRInterface.PlayAreaMode" + } + }, + { + "name": "set_play_area_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::XRInterface.PlayAreaMode" + } + ] + }, + { + "name": "get_play_area", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "get_anchor_detection_is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_anchor_detection_is_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_camera_feed_id", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "signals": [ + { + "name": "play_area_changed", + "arguments": [ + { + "name": "mode", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "bool", + "name": "interface_is_primary", + "setter": "set_primary", + "getter": "is_primary", + "index": -1 + }, + { + "type": "int", + "name": "xr_play_area_mode", + "setter": "set_play_area_mode", + "getter": "get_play_area_mode", + "index": -1 + }, + { + "type": "bool", + "name": "ar_is_anchor_detection_enabled", + "setter": "set_anchor_detection_is_enabled", + "getter": "get_anchor_detection_is_enabled", + "index": -1 + } + ] + }, + { + "name": "XRInterfaceExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "XRInterface", + "api_type": "core", + "methods": [ + { + "name": "_get_name", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "StringName" + } + }, + { + "name": "_get_capabilities", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_is_initialized", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_initialize", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_uninitialize", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_supports_play_area_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "mode", + "type": "enum::XRInterface.PlayAreaMode" + } + ] + }, + { + "name": "_get_play_area_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_set_play_area_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "mode", + "type": "int" + } + ] + }, + { + "name": "_get_play_area", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedVector3Array" + } + }, + { + "name": "_get_render_target_size", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Vector2" + } + }, + { + "name": "_get_view_count", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_camera_transform", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "_get_transform_for_view", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "view", + "type": "int" + }, + { + "name": "cam_transform", + "type": "Transform3D" + } + ] + }, + { + "name": "_get_projection_for_view", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedFloat64Array" + }, + "arguments": [ + { + "name": "view", + "type": "int" + }, + { + "name": "aspect", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + } + ] + }, + { + "name": "_process", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_pre_render", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_pre_draw_viewport", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "render_target", + "type": "RID" + } + ] + }, + { + "name": "_post_draw_viewport", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "render_target", + "type": "RID" + }, + { + "name": "screen_rect", + "type": "Rect2" + } + ] + }, + { + "name": "_end_frame", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "_notification", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "what", + "type": "int" + } + ] + }, + { + "name": "_get_suggested_tracker_names", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "_get_suggested_pose_names", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "tracker_name", + "type": "StringName" + } + ] + }, + { + "name": "_get_tracking_status", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_trigger_haptic_pulse", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "action_name", + "type": "String" + }, + { + "name": "tracker_name", + "type": "StringName" + }, + { + "name": "frequency", + "type": "float" + }, + { + "name": "amplitude", + "type": "float" + }, + { + "name": "duration_sec", + "type": "float" + }, + { + "name": "delay_sec", + "type": "float" + } + ] + }, + { + "name": "_get_anchor_detection_is_enabled", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + } + }, + { + "name": "_set_anchor_detection_is_enabled", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "_get_camera_feed_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "add_blit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134547536, + "arguments": [ + { + "name": "render_target", + "type": "RID" + }, + { + "name": "src_rect", + "type": "Rect2" + }, + { + "name": "dst_rect", + "type": "Rect2i" + }, + { + "name": "use_layer", + "type": "bool" + }, + { + "name": "layer", + "type": "int", + "meta": "uint32" + }, + { + "name": "apply_lens_distortion", + "type": "bool" + }, + { + "name": "eye_center", + "type": "Vector2" + }, + { + "name": "k1", + "type": "float", + "meta": "double" + }, + { + "name": "k2", + "type": "float", + "meta": "double" + }, + { + "name": "upscale", + "type": "float", + "meta": "double" + }, + { + "name": "aspect_ratio", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_render_target_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "RID" + }, + "arguments": [ + { + "name": "render_target", + "type": "RID" + } + ] + } + ] + }, + { + "name": "XRNode3D", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_tracker", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tracker_name", + "type": "StringName" + } + ] + }, + { + "name": "get_tracker", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_pose_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "pose", + "type": "StringName" + } + ] + }, + { + "name": "get_pose_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "get_is_active", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_has_tracking_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "XRPose" + } + }, + { + "name": "trigger_haptic_pulse", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "action_name", + "type": "String" + }, + { + "name": "frequency", + "type": "float", + "meta": "double" + }, + { + "name": "amplitude", + "type": "float", + "meta": "double" + }, + { + "name": "duration_sec", + "type": "float", + "meta": "double" + }, + { + "name": "delay_sec", + "type": "float", + "meta": "double" + } + ] + } + ], + "properties": [ + { + "type": "String", + "name": "tracker", + "setter": "set_tracker", + "getter": "get_tracker", + "index": -1 + }, + { + "type": "String", + "name": "pose", + "setter": "set_pose_name", + "getter": "get_pose_name", + "index": -1 + } + ] + }, + { + "name": "XROrigin3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "set_world_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "world_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_world_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "float", + "name": "world_scale", + "setter": "set_world_scale", + "getter": "get_world_scale", + "index": -1 + } + ] + }, + { + "name": "XRPose", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "TrackingConfidence", + "values": [ + { + "name": "XR_TRACKING_CONFIDENCE_NONE", + "value": 0 + }, + { + "name": "XR_TRACKING_CONFIDENCE_LOW", + "value": 1 + }, + { + "name": "XR_TRACKING_CONFIDENCE_HIGH", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_has_tracking_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "has_tracking_data", + "type": "bool" + } + ] + }, + { + "name": "get_has_tracking_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "transform", + "type": "Transform3D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "get_adjusted_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "set_linear_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_linear_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_angular_velocity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "velocity", + "type": "Vector3" + } + ] + }, + { + "name": "get_angular_velocity", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_tracking_confidence", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tracking_confidence", + "type": "enum::XRPose.TrackingConfidence" + } + ] + }, + { + "name": "get_tracking_confidence", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::XRPose.TrackingConfidence" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "has_tracking_data", + "setter": "set_has_tracking_data", + "getter": "get_has_tracking_data", + "index": -1 + }, + { + "type": "String", + "name": "name", + "setter": "set_name", + "getter": "get_name", + "index": -1 + }, + { + "type": "String", + "name": "transform", + "setter": "set_transform", + "getter": "get_transform", + "index": -1 + }, + { + "type": "String", + "name": "linear_velocity", + "setter": "set_linear_velocity", + "getter": "get_linear_velocity", + "index": -1 + }, + { + "type": "String", + "name": "angular_velocity", + "setter": "set_angular_velocity", + "getter": "get_angular_velocity", + "index": -1 + }, + { + "type": "int", + "name": "tracking_confidence", + "setter": "set_tracking_confidence", + "getter": "get_tracking_confidence", + "index": -1 + } + ] + }, + { + "name": "XRPositionalTracker", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core", + "enums": [ + { + "name": "TrackerHand", + "values": [ + { + "name": "TRACKER_HAND_UNKNOWN", + "value": 0 + }, + { + "name": "TRACKER_HAND_LEFT", + "value": 1 + }, + { + "name": "TRACKER_HAND_RIGHT", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "get_tracker_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::XRServer.TrackerType" + } + }, + { + "name": "set_tracker_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "type", + "type": "enum::XRServer.TrackerType" + } + ] + }, + { + "name": "get_tracker_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_tracker_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_tracker_desc", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_tracker_desc", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "description", + "type": "String" + } + ] + }, + { + "name": "get_tracker_profile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "String" + } + }, + { + "name": "set_tracker_profile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "profile", + "type": "String" + } + ] + }, + { + "name": "get_tracker_hand", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "enum::XRPositionalTracker.TrackerHand" + } + }, + { + "name": "set_tracker_hand", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "hand", + "type": "enum::XRPositionalTracker.TrackerHand" + } + ] + }, + { + "name": "has_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "get_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "XRPose" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "invalidate_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "set_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134331914, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "transform", + "type": "Transform3D" + }, + { + "name": "linear_velocity", + "type": "Vector3" + }, + { + "name": "angular_velocity", + "type": "Vector3" + }, + { + "name": "tracking_confidence", + "type": "enum::XRPose.TrackingConfidence" + } + ] + }, + { + "name": "get_input", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "Variant" + }, + "arguments": [ + { + "name": "name", + "type": "StringName" + } + ] + }, + { + "name": "set_input", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "name", + "type": "StringName" + }, + { + "name": "value", + "type": "Variant" + } + ] + } + ], + "signals": [ + { + "name": "pose_changed", + "arguments": [ + { + "name": "pose", + "type": "XRPose" + } + ] + }, + { + "name": "button_pressed", + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "button_released", + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "input_value_changed", + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "value", + "type": "float" + } + ] + }, + { + "name": "input_axis_changed", + "arguments": [ + { + "name": "name", + "type": "String" + }, + { + "name": "vector", + "type": "Vector2" + } + ] + }, + { + "name": "profile_changed", + "arguments": [ + { + "name": "role", + "type": "String" + } + ] + } + ], + "properties": [ + { + "type": "int", + "name": "type", + "setter": "set_tracker_type", + "getter": "get_tracker_type", + "index": -1 + }, + { + "type": "String", + "name": "name", + "setter": "set_tracker_name", + "getter": "get_tracker_name", + "index": -1 + }, + { + "type": "String", + "name": "description", + "setter": "set_tracker_desc", + "getter": "get_tracker_desc", + "index": -1 + }, + { + "type": "String", + "name": "profile", + "setter": "set_tracker_profile", + "getter": "get_tracker_profile", + "index": -1 + }, + { + "type": "int", + "name": "hand", + "setter": "set_tracker_hand", + "getter": "get_tracker_hand", + "index": -1 + } + ] + }, + { + "name": "XRServer", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "enums": [ + { + "name": "TrackerType", + "values": [ + { + "name": "TRACKER_HEAD", + "value": 1 + }, + { + "name": "TRACKER_CONTROLLER", + "value": 2 + }, + { + "name": "TRACKER_BASESTATION", + "value": 4 + }, + { + "name": "TRACKER_ANCHOR", + "value": 8 + }, + { + "name": "TRACKER_ANY_KNOWN", + "value": 127 + }, + { + "name": "TRACKER_UNKNOWN", + "value": 128 + }, + { + "name": "TRACKER_ANY", + "value": 255 + } + ] + }, + { + "name": "RotationMode", + "values": [ + { + "name": "RESET_FULL_ROTATION", + "value": 0 + }, + { + "name": "RESET_BUT_KEEP_TILT", + "value": 1 + }, + { + "name": "DONT_RESET_ROTATION", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "get_world_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_world_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "scale", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_reference_frame", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "center_on_hmd", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134224103, + "arguments": [ + { + "name": "rotation_mode", + "type": "enum::XRServer.RotationMode" + }, + { + "name": "keep_height", + "type": "bool" + } + ] + }, + { + "name": "get_hmd_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338150, + "return_value": { + "type": "Transform3D" + } + }, + { + "name": "add_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interface", + "type": "XRInterface" + } + ] + }, + { + "name": "get_interface_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "remove_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interface", + "type": "XRInterface" + } + ] + }, + { + "name": "get_interface", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "XRInterface" + }, + "arguments": [ + { + "name": "idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_interfaces", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "Array" + } + }, + { + "name": "find_interface", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "XRInterface" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "add_tracker", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tracker", + "type": "XRPositionalTracker" + } + ] + }, + { + "name": "remove_tracker", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "tracker", + "type": "XRPositionalTracker" + } + ] + }, + { + "name": "get_trackers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374087, + "return_value": { + "type": "Dictionary" + }, + "arguments": [ + { + "name": "tracker_types", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_tracker", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135374120, + "return_value": { + "type": "XRPositionalTracker" + }, + "arguments": [ + { + "name": "tracker_name", + "type": "StringName" + } + ] + }, + { + "name": "get_primary_interface", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 135338183, + "return_value": { + "type": "XRInterface" + } + }, + { + "name": "set_primary_interface", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 134188166, + "arguments": [ + { + "name": "interface", + "type": "XRInterface" + } + ] + } + ], + "signals": [ + { + "name": "interface_added", + "arguments": [ + { + "name": "interface_name", + "type": "StringName" + } + ] + }, + { + "name": "interface_removed", + "arguments": [ + { + "name": "interface_name", + "type": "StringName" + } + ] + }, + { + "name": "tracker_added", + "arguments": [ + { + "name": "tracker_name", + "type": "StringName" + }, + { + "name": "type", + "type": "int" + } + ] + }, + { + "name": "tracker_updated", + "arguments": [ + { + "name": "tracker_name", + "type": "StringName" + }, + { + "name": "type", + "type": "int" + } + ] + }, + { + "name": "tracker_removed", + "arguments": [ + { + "name": "tracker_name", + "type": "StringName" + }, + { + "name": "type", + "type": "int" + } + ] + } + ], + "properties": [ + { + "type": "float", + "name": "world_scale", + "setter": "set_world_scale", + "getter": "get_world_scale", + "index": -1 + }, + { + "type": "Object", + "name": "primary_interface", + "setter": "set_primary_interface", + "getter": "get_primary_interface", + "index": -1 + } + ] + } + ], + "singletons": [ + { + "name": "Performance", + "type": "Performance" + }, + { + "name": "TextServerManager", + "type": "TextServerManager" + }, + { + "name": "NavigationMeshGenerator", + "type": "NavigationMeshGenerator" + }, + { + "name": "ProjectSettings", + "type": "ProjectSettings" + }, + { + "name": "IP", + "type": "IP" + }, + { + "name": "Geometry2D", + "type": "Geometry2D" + }, + { + "name": "Geometry3D", + "type": "Geometry3D" + }, + { + "name": "ResourceLoader", + "type": "ResourceLoader" + }, + { + "name": "ResourceSaver", + "type": "ResourceSaver" + }, + { + "name": "OS", + "type": "OS" + }, + { + "name": "Engine", + "type": "Engine" + }, + { + "name": "ClassDB", + "type": "ClassDB" + }, + { + "name": "Marshalls", + "type": "Marshalls" + }, + { + "name": "TranslationServer", + "type": "TranslationServer" + }, + { + "name": "Input", + "type": "Input" + }, + { + "name": "InputMap", + "type": "InputMap" + }, + { + "name": "EngineDebugger", + "type": "EngineDebugger" + }, + { + "name": "Time", + "type": "Time" + }, + { + "name": "NativeExtensionManager", + "type": "NativeExtensionManager" + }, + { + "name": "ResourceUID", + "type": "ResourceUID" + }, + { + "name": "VisualScriptCustomNodes", + "type": "VisualScriptCustomNodes" + }, + { + "name": "JavaClassWrapper", + "type": "JavaClassWrapper" + }, + { + "name": "JavaScript", + "type": "JavaScript" + }, + { + "name": "DisplayServer", + "type": "DisplayServer" + }, + { + "name": "RenderingServer", + "type": "RenderingServer" + }, + { + "name": "AudioServer", + "type": "AudioServer" + }, + { + "name": "PhysicsServer2D", + "type": "PhysicsServer2D" + }, + { + "name": "PhysicsServer3D", + "type": "PhysicsServer3D" + }, + { + "name": "NavigationServer2D", + "type": "NavigationServer2D" + }, + { + "name": "NavigationServer3D", + "type": "NavigationServer3D" + }, + { + "name": "XRServer", + "type": "XRServer" + }, + { + "name": "CameraServer", + "type": "CameraServer" + } + ], + "native_structures": [ + { + "name": "AudioFrame", + "format": "float left;float right" + }, + { + "name": "CaretInfo", + "format": "Rect2 leading_caret;Rect2 trailing_caret;TextServer::Direction leading_direction;TextServer::Direction trailing_direction" + }, + { + "name": "Glyph", + "format": "int start = -1;int end = -1;uint8_t count = 0;uint8_t repeat = 1;uint16_t flags = 0;float x_off = 0.f;float y_off = 0.f;float advance = 0.f;RID font_rid;int font_size = 0;int32_t index = 0" + }, + { + "name": "PhysicsServer3DExtensionMotionCollision", + "format": "Vector3 position;Vector3 normal;Vector3 collider_velocity;real_t depth;int local_shape;ObjectID collider_id;RID collider;int collider_shape" + }, + { + "name": "PhysicsServer3DExtensionMotionResult", + "format": "Vector3 travel;Vector3 remainder;real_t collision_safe_fraction;real_t collision_unsafe_fraction;PhysicsServer3DExtensionMotionCollision collisions[32];int collision_count" + }, + { + "name": "PhysicsServer3DExtensionRayResult", + "format": "Vector3 position;Vector3 normal;RID rid;ObjectID collider_id;Object *collider;int shape" + }, + { + "name": "PhysicsServer3DExtensionShapeRestInfo", + "format": "Vector3 point;Vector3 normal;RID rid;ObjectID collider_id;int shape;Vector3 linear_velocity" + }, + { + "name": "PhysicsServer3DExtensionShapeResult", + "format": "RID rid;ObjectID collider_id;Object *collider;int shape" + }, + { + "name": "PhysicsServer3DExtensionStateCallback", + "format": "void *instance;void (*callback)(void *p_instance, PhysicsDirectBodyState3D *p_state)" + }, + { + "name": "ScriptLanguageExtensionProfilingInfo", + "format": "StringName signature;uint64_t call_count;uint64_t total_time;uint64_t self_time" + } + ] +} \ No newline at end of file diff --git a/godot-git-plugin/SCsub b/godot-git-plugin/SCsub index 2df48ed..d89fafe 100644 --- a/godot-git-plugin/SCsub +++ b/godot-git-plugin/SCsub @@ -8,20 +8,21 @@ Import("env") godot_headers_path = "../godot-cpp/godot-headers/" cpp_bindings_path = "../godot-cpp/" cpp_library = "libgodot-cpp" -bits = env["bits"] +target_arch = env["bits"] +dynamic_lib_extension = "" # Process some arguments if env["use_llvm"]: env["CC"] = "clang" env["CXX"] = "clang++" -if env["p"] != "": - env["platform"] = env["p"] - if env["platform"] == "": print("No valid target platform selected.") quit() +if env["bits"] == "64": + target_arch = "x86_64" + env["target_path"] = "../" + env["target_path"] if not os.path.isdir(env["target_path"]): @@ -31,6 +32,8 @@ if not os.path.isdir(env["target_path"]): if env["platform"] == "osx": env["target_path"] += "osx/" cpp_library += ".osx" + dynamic_lib_extension = "dylib" + target_arch = env["macos_arch"] # Force static linkage (https://stackoverflow.com/a/2995999/7370948) static_ssl = File(env["macos_openssl_static_ssl"]) @@ -46,6 +49,7 @@ elif env["platform"] == "linux": env["target_path"] += "linux/" cpp_library += ".linux" env.Append(LIBS=["ssl", "crypto"]) + dynamic_lib_extension = "so" if env["target"] in ("debug", "d"): env.Append(CCFLAGS=["-fPIC", "-g3", "-Og", "-std=c++17"]) @@ -53,12 +57,14 @@ elif env["platform"] == "linux": env.Append(CCFLAGS=["-fPIC", "-g", "-O3", "-std=c++17"]) elif env["platform"] == "windows": - env.Append(CPPDEFINES=["TYPED_METHOD_BIND"]) # TODO: Make this only apply when using MSVC + # TODO: Make this only apply when using MSVC + env.Append(CPPDEFINES=["TYPED_METHOD_BIND"]) env["target_path"] += "win64/" cpp_library += ".windows" # This makes sure to keep the session environment variables on windows, # that way you can run scons in a vs 2017 prompt and it will find all the required tools env.Append(ENV=os.environ) + dynamic_lib_extension = "dll" env.Append(CCFLAGS=["-DWIN32", "-D_WIN32", "-D_WINDOWS", "-W3", "-GR", "-D_CRT_SECURE_NO_WARNINGS", "/std:c++17"]) @@ -78,7 +84,7 @@ else: if env['platform'] == 'osx' and env['macos_arch'] != 'universal': cpp_library += "." + env['macos_arch'] else: - cpp_library += "." + str(bits) + cpp_library += "." + "x86_64" env.Append(CPPPATH=[".", "src/"]) env.Append(CPPPATH=[ @@ -86,11 +92,14 @@ env.Append(CPPPATH=[ cpp_bindings_path + "include/", cpp_bindings_path + "gen/include/" ]) + env.Append(CPPPATH=["../thirdparty/git2/libgit2/include/"]) env.Append(LIBPATH=[cpp_bindings_path + "bin/", "../thirdparty/bin/"]) env.Prepend(LIBS=[cpp_library, "git2", "ssh2"]) library = env.SharedLibrary( - target=env["target_path"] + env["target_name"], + target=env["target_path"] + env["target_name"] + "." + + env["platform"] + "." + target_arch + "." + + env["target"] + "." + dynamic_lib_extension, source=Glob("src/*.cpp")) Default(library) diff --git a/godot-git-plugin/src/git_callbacks.cpp b/godot-git-plugin/src/git_callbacks.cpp index 8c6c688..3b8ebb7 100644 --- a/godot-git-plugin/src/git_callbacks.cpp +++ b/godot-git-plugin/src/git_callbacks.cpp @@ -38,15 +38,9 @@ extern "C" int transfer_progress_cb(const git_indexer_progress *stats, void *pay (void)payload; if (stats->received_objects == stats->total_objects) { - std::cout << "Resolving deltas " << stats->indexed_deltas << "/" << stats->total_deltas << std::endl; + printf("Resolving deltas %d/%d\n", stats->indexed_deltas, stats->total_deltas); } else if (stats->total_objects > 0) { - std::cout << "Received %d/%d objects (%d) in %d bytes" - << stats->received_objects << "/" - << stats->total_objects << " objects (" - << stats->indexed_objects << ") in " - << static_cast(stats->received_bytes) - << " bytes" - << std::endl; + printf("Received %d/%d objects (%d) in %zu bytes\n", stats->received_objects, stats->total_objects, stats->indexed_objects, stats->received_bytes); } return 0; } diff --git a/godot-git-plugin/src/git_plugin.cpp b/godot-git-plugin/src/git_plugin.cpp index 8a01788..f71836a 100644 --- a/godot-git-plugin/src/git_plugin.cpp +++ b/godot-git-plugin/src/git_plugin.cpp @@ -26,29 +26,7 @@ #define COMMA , void GitPlugin::_bind_methods() { - godot::ClassDB::bind_method(godot::D_METHOD("_commit", "msg"), &GitPlugin::_commit); - godot::ClassDB::bind_method(godot::D_METHOD("_get_modified_files_data"), &GitPlugin::_get_modified_files_data); - godot::ClassDB::bind_method(godot::D_METHOD("_get_remotes"), &GitPlugin::_get_remotes); - godot::ClassDB::bind_method(godot::D_METHOD("_get_diff", "identifier", "area"), &GitPlugin::_get_diff); - godot::ClassDB::bind_method(godot::D_METHOD("_get_vcs_name"), &GitPlugin::_get_vcs_name); - godot::ClassDB::bind_method(godot::D_METHOD("_initialize", "project_path"), &GitPlugin::_initialize); - godot::ClassDB::bind_method(godot::D_METHOD("_shut_down"), &GitPlugin::_shut_down); - godot::ClassDB::bind_method(godot::D_METHOD("_stage_file", "file_path"), &GitPlugin::_stage_file); - godot::ClassDB::bind_method(godot::D_METHOD("_discard_file", "file_path"), &GitPlugin::_discard_file); - godot::ClassDB::bind_method(godot::D_METHOD("_unstage_file", "file_path"), &GitPlugin::_unstage_file); - godot::ClassDB::bind_method(godot::D_METHOD("_get_previous_commits", "max_commits"), &GitPlugin::_get_previous_commits); - godot::ClassDB::bind_method(godot::D_METHOD("_get_branch_list"), &GitPlugin::_get_branch_list); - godot::ClassDB::bind_method(godot::D_METHOD("_create_branch", "branch_name"), &GitPlugin::_create_branch); - godot::ClassDB::bind_method(godot::D_METHOD("_create_remote", "remote_url"), &GitPlugin::_create_remote); - godot::ClassDB::bind_method(godot::D_METHOD("_remove_branch", "branch_name"), &GitPlugin::_remove_branch); - godot::ClassDB::bind_method(godot::D_METHOD("_remove_remote", "remote_name"), &GitPlugin::_remove_remote); - godot::ClassDB::bind_method(godot::D_METHOD("_get_current_branch_name"), &GitPlugin::_get_current_branch_name); - godot::ClassDB::bind_method(godot::D_METHOD("_checkout_branch", "branch_name"), &GitPlugin::_checkout_branch); - godot::ClassDB::bind_method(godot::D_METHOD("_fetch", "remote"), &GitPlugin::_fetch); - godot::ClassDB::bind_method(godot::D_METHOD("_pull", "remote"), &GitPlugin::_pull); - godot::ClassDB::bind_method(godot::D_METHOD("_push", "remote", "force"), &GitPlugin::_push); - godot::ClassDB::bind_method(godot::D_METHOD("_get_line_diff", "file_path", "text"), &GitPlugin::_get_line_diff); - godot::ClassDB::bind_method(godot::D_METHOD("_set_credentials", "username", "password", "ssh_public_key_path", "ssh_private_key_path", "ssh_passphrase"), &GitPlugin::_set_credentials); + // Doesn't seem to require binding functions for now } GitPlugin::GitPlugin() { @@ -207,17 +185,8 @@ void GitPlugin::create_gitignore_and_gitattributes() { godot::File file; file.open("res://.gitignore", godot::File::ModeFlags::WRITE); file.store_string( - "# Godot-specific ignores\n" - ".import/\n" - "export.cfg\n" - "export_presets.cfg\n\n" - - "# Imported translations (automatically generated from CSV files)\n" - "*.translation\n\n" - - "# Mono-specific ignores\n" - ".mono/\n" - "data_*/\n"); + "# Godot 4+ specific ignores\n" + ".godot/\n"); file.close(); } diff --git a/release.sh b/release.sh old mode 100755 new mode 100644 diff --git a/thirdparty/SCsub b/thirdparty/SCsub index 405e14a..9b9252e 100644 --- a/thirdparty/SCsub +++ b/thirdparty/SCsub @@ -1,4 +1,6 @@ #!/usr/bin/env python +Import("env") + SConscript("ssh2/SCsub") SConscript("git2/SCsub") From 0029af37eb069895496b4d9ecd124b0b50cbce60 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sun, 31 Jul 2022 21:35:20 +0530 Subject: [PATCH 03/15] Fix custom api file name in build.yaml --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c5a4e8..581d0c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: run: | git submodule update --init --recursive pip3 install --user scons - scons platform=linux target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=api.ci.json -j $(nproc) + scons platform=linux target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json -j $(nproc) ldd demo/addons/godot-git-plugin/linux/libgit_plugin.so - uses: actions/upload-artifact@v2 with: @@ -33,7 +33,7 @@ jobs: run: | git submodule update --init --recursive pip3 install --user scons - scons platform=windows target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=api.ci.json -j $env:NUMBER_OF_PROCESSORS + scons platform=windows target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json -j $env:NUMBER_OF_PROCESSORS dumpbin /dependents .\demo\addons\godot-git-plugin\win64\libgit_plugin.dll - uses: actions/upload-artifact@v2 with: @@ -50,7 +50,7 @@ jobs: run: | git submodule update --init --recursive brew install scons - scons platform=osx target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=api.ci.json macos_arch=universal use_llvm=yes -j $(sysctl -n hw.logicalcpu) + scons platform=osx target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json macos_arch=universal use_llvm=yes -j $(sysctl -n hw.logicalcpu) otool -L demo/addons/godot-git-plugin/osx/libgit_plugin.dylib - uses: actions/upload-artifact@v2 with: From f029aa555c28cb17a98627e2037d4907fb723fb7 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sun, 31 Jul 2022 21:42:36 +0530 Subject: [PATCH 04/15] Fix Linux build error - memcpy not found --- godot-git-plugin/src/git_wrappers.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/godot-git-plugin/src/git_wrappers.cpp b/godot-git-plugin/src/git_wrappers.cpp index ebbaa15..9825906 100644 --- a/godot-git-plugin/src/git_wrappers.cpp +++ b/godot-git-plugin/src/git_wrappers.cpp @@ -1,5 +1,7 @@ #include "git_wrappers.h" +#include + CString::CString(const godot::String &string) { godot::CharString godot_char_str = string.utf8(); From 93c175cd1da903afcbb32dd94b766b426f082c10 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sun, 31 Jul 2022 21:52:25 +0530 Subject: [PATCH 05/15] Fix bin analysis commands in CI --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 581d0c3..45bc192 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: git submodule update --init --recursive pip3 install --user scons scons platform=linux target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json -j $(nproc) - ldd demo/addons/godot-git-plugin/linux/libgit_plugin.so + ldd demo/addons/godot-git-plugin/linux/*.so - uses: actions/upload-artifact@v2 with: name: libgit_plugin.linux.x86_64.release.dll-${{ github.sha }} @@ -34,7 +34,7 @@ jobs: git submodule update --init --recursive pip3 install --user scons scons platform=windows target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json -j $env:NUMBER_OF_PROCESSORS - dumpbin /dependents .\demo\addons\godot-git-plugin\win64\libgit_plugin.dll + dumpbin /dependents .\demo\addons\godot-git-plugin\win64\*.dll - uses: actions/upload-artifact@v2 with: name: libgit_plugin.windows.x86_64.release.dll-${{ github.sha }} @@ -51,7 +51,7 @@ jobs: git submodule update --init --recursive brew install scons scons platform=osx target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json macos_arch=universal use_llvm=yes -j $(sysctl -n hw.logicalcpu) - otool -L demo/addons/godot-git-plugin/osx/libgit_plugin.dylib + otool -L demo/addons/godot-git-plugin/osx/*.dylib - uses: actions/upload-artifact@v2 with: name: libgit_plugin.osx.x86_64.release.dylib-${{ github.sha }} From ff4015448592cb8dfa12741b2c7ced1189820c85 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sun, 31 Jul 2022 21:53:48 +0530 Subject: [PATCH 06/15] Use std::memcpy instead of memcpy --- godot-git-plugin/src/git_callbacks.cpp | 3 ++- godot-git-plugin/src/git_plugin.cpp | 4 +++- godot-git-plugin/src/git_wrappers.cpp | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/godot-git-plugin/src/git_callbacks.cpp b/godot-git-plugin/src/git_callbacks.cpp index 3b8ebb7..0d2f0e7 100644 --- a/godot-git-plugin/src/git_callbacks.cpp +++ b/godot-git-plugin/src/git_callbacks.cpp @@ -1,4 +1,5 @@ #include +#include #include "git_callbacks.h" @@ -9,7 +10,7 @@ extern "C" int progress_cb(const char *str, int len, void *data) { (void)data; char *progress_str = new char[len + 1]; - memcpy(progress_str, str, len); + std::memcpy(progress_str, str, len); progress_str[len] = '\0'; std::cout << "remote: " << CString(godot::String(progress_str).strip_edges()).data << std::endl; delete[] progress_str; diff --git a/godot-git-plugin/src/git_plugin.cpp b/godot-git-plugin/src/git_plugin.cpp index f71836a..6df61b8 100644 --- a/godot-git-plugin/src/git_plugin.cpp +++ b/godot-git-plugin/src/git_plugin.cpp @@ -1,5 +1,7 @@ #include "git_plugin.h" +#include + #include "godot_cpp/core/class_db.hpp" #include "godot_cpp/classes/file.hpp" @@ -644,7 +646,7 @@ godot::Array GitPlugin::_parse_diff(git_diff *diff) { GIT2_CALL_R(git_patch_get_line_in_hunk(&git_diff_line, patch.get(), j, k), "Could not get line from hunk in patch", godot::Array()); char *content = new char[git_diff_line->content_len + 1]; - memcpy(content, git_diff_line->content, git_diff_line->content_len); + std::memcpy(content, git_diff_line->content, git_diff_line->content_len); content[git_diff_line->content_len] = '\0'; godot::String status = " "; // We reserve 1 null terminated space to fill the + or the - character at git_diff_line->origin diff --git a/godot-git-plugin/src/git_wrappers.cpp b/godot-git-plugin/src/git_wrappers.cpp index 9825906..ffbd740 100644 --- a/godot-git-plugin/src/git_wrappers.cpp +++ b/godot-git-plugin/src/git_wrappers.cpp @@ -6,7 +6,7 @@ CString::CString(const godot::String &string) { godot::CharString godot_char_str = string.utf8(); data = new char[godot_char_str.length() + 1]; - memcpy(data, (void *)godot_char_str.get_data(), godot_char_str.length()); + std::memcpy(data, (void *)godot_char_str.get_data(), godot_char_str.length()); data[godot_char_str.length()] = '\0'; } From 2296d3e39316fe3779b9689bd18a0e568a938cf6 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Mon, 1 Aug 2022 00:35:29 +0530 Subject: [PATCH 07/15] Set plugin version to 3 --- demo/addons/godot-git-plugin/plugin.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/addons/godot-git-plugin/plugin.cfg b/demo/addons/godot-git-plugin/plugin.cfg index 45e861e..fd8caef 100644 --- a/demo/addons/godot-git-plugin/plugin.cfg +++ b/demo/addons/godot-git-plugin/plugin.cfg @@ -3,5 +3,5 @@ name="Godot Git Plugin" description="This plugin lets you interact with Git without leaving the Godot editor. More information can be found at https://github.com/godotengine/godot-git-plugin/wiki" author="ChronicallySerious" -version="v3.0.0-beta" +version="v3.0.0" script="git_plugin.gdns" From acece9526724b63260d1cf6d0534bca4b2e285bb Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Mon, 1 Aug 2022 00:36:21 +0530 Subject: [PATCH 08/15] Update godot-cpp to upstream --- godot-cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godot-cpp b/godot-cpp index 8dbaf5a..9e210c1 160000 --- a/godot-cpp +++ b/godot-cpp @@ -1 +1 @@ -Subproject commit 8dbaf5a7ff0b75222948d9e53633f584499f12bf +Subproject commit 9e210c1a02f9ac75c29628403da0533f64158914 From b603dcadaa6a5222dcbf7038a6b746cf45db4b0e Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Tue, 9 Aug 2022 03:46:20 +0530 Subject: [PATCH 09/15] Intermediate --- godot-git-plugin/src/git_plugin.cpp | 11 +++++++---- godot-git-plugin/src/git_plugin.h | 1 + godot-git-plugin/src/git_wrappers.h | 1 + 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/godot-git-plugin/src/git_plugin.cpp b/godot-git-plugin/src/git_plugin.cpp index 6df61b8..bacfaf3 100644 --- a/godot-git-plugin/src/git_plugin.cpp +++ b/godot-git-plugin/src/git_plugin.cpp @@ -2,6 +2,7 @@ #include +#include #include "godot_cpp/core/class_db.hpp" #include "godot_cpp/classes/file.hpp" @@ -183,18 +184,18 @@ void GitPlugin::_unstage_file(const godot::String &file_path) { } void GitPlugin::create_gitignore_and_gitattributes() { - if (!godot::File::file_exists("res://.gitignore")) { + if (!godot::File::file_exists(repo_project_path + "/.gitignore")) { godot::File file; - file.open("res://.gitignore", godot::File::ModeFlags::WRITE); + file.open(repo_project_path + "/.gitignore", godot::File::ModeFlags::WRITE); file.store_string( "# Godot 4+ specific ignores\n" ".godot/\n"); file.close(); } - if (!godot::File::file_exists("res://.gitattributes")) { + if (!godot::File::file_exists(repo_project_path + "/.gitattributes")) { godot::File file; - file.open("res://.gitattributes", godot::File::ModeFlags::WRITE); + file.open(repo_project_path + "/.gitattributes", godot::File::ModeFlags::WRITE); file.store_string( "# Set the default behavior, in case people don't have core.autocrlf set.\n" "* text=auto\n\n" @@ -674,6 +675,8 @@ bool GitPlugin::_initialize(const godot::String &project_path) { ERR_FAIL_COND_V(project_path == "", false); + repo_project_path = project_path; + int init = git_libgit2_init(); if (init > 1) { WARN_PRINT("Multiple libgit2 instances are running"); diff --git a/godot-git-plugin/src/git_plugin.h b/godot-git-plugin/src/git_plugin.h index 25627da..f39bb53 100644 --- a/godot-git-plugin/src/git_plugin.h +++ b/godot-git-plugin/src/git_plugin.h @@ -27,6 +27,7 @@ public: bool has_merge = false; git_repository_ptr repo; git_oid pull_merge_oid = {}; + godot::String repo_project_path; std::unordered_map map_changes; GitPlugin(); diff --git a/godot-git-plugin/src/git_wrappers.h b/godot-git-plugin/src/git_wrappers.h index a88611f..a9ca62f 100644 --- a/godot-git-plugin/src/git_wrappers.h +++ b/godot-git-plugin/src/git_wrappers.h @@ -71,3 +71,4 @@ using git_revwalk_ptr = unique_ptr_deleter; using git_signature_ptr = unique_ptr_deleter; using git_status_list_ptr = unique_ptr_deleter; using git_tree_ptr = unique_ptr_deleter; +using git_tree_entry_ptr = unique_ptr_deleter; From 51b068f0435d75584b5e66ee2ece63594087d456 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Wed, 10 Aug 2022 03:39:50 +0530 Subject: [PATCH 10/15] Update godot-cpp to 8ba1c059da5e97428d40612dd0afc2be4079b5c6 --- godot-cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godot-cpp b/godot-cpp index 9e210c1..8ba1c05 160000 --- a/godot-cpp +++ b/godot-cpp @@ -1 +1 @@ -Subproject commit 9e210c1a02f9ac75c29628403da0533f64158914 +Subproject commit 8ba1c059da5e97428d40612dd0afc2be4079b5c6 From 424cc616574d835c2d376d0ec878ab7f587e9dba Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Wed, 10 Aug 2022 03:43:40 +0530 Subject: [PATCH 11/15] Rename osx to macos --- .github/workflows/build.yml | 6 +++--- .gitignore | 2 +- README.md | 2 +- SConstruct | 8 ++++---- ...l_universal_osx.sh => build_openssl_universal_macos.sh | 0 demo/addons/godot-git-plugin/git_plugin.gdextension | 4 ++-- godot-git-plugin/SCsub | 8 ++++---- release.sh | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) rename build_openssl_universal_osx.sh => build_openssl_universal_macos.sh (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45bc192..8afc4d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,11 +50,11 @@ jobs: run: | git submodule update --init --recursive brew install scons - scons platform=osx target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json macos_arch=universal use_llvm=yes -j $(sysctl -n hw.logicalcpu) - otool -L demo/addons/godot-git-plugin/osx/*.dylib + scons platform=macos target=release bits=64 godot_cpp=yes generate_bindings=yes use_custom_api_file=yes custom_api_file=extension_api.ci.json macos_arch=universal use_llvm=yes -j $(sysctl -n hw.logicalcpu) + otool -L demo/addons/godot-git-plugin/macos/*.dylib - uses: actions/upload-artifact@v2 with: - name: libgit_plugin.osx.x86_64.release.dylib-${{ github.sha }} + name: libgit_plugin.macos.x86_64.release.dylib-${{ github.sha }} if-no-files-found: error path: | demo/ diff --git a/.gitignore b/.gitignore index b93d1a0..fc31b2e 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,7 @@ extension_api.json # Binaries build/ bin/ -osx/ +macos/ linux/ win64/ *.lib diff --git a/README.md b/README.md index ad97a9f..e0244cb 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This section onwards is only meant to be used if you intend to compile the plugi - Windows - No extra steps required other than setting up the compilers. - MacOS - - For making universal builds targeting both Apple Silicon and x86_64, you can optionally run `build_openssl_universal_osx.sh` to build OpenSSL yourself and replace the already prebuilt libraries provided inside `thirdparty/openssl/`, otherwise, just run `brew install openssl@1.1` to use the prebuilt libraries provided in this repository. + - For making universal builds targeting both Apple Silicon and x86_64, you can optionally run `build_openssl_universal_macos.sh` to build OpenSSL yourself and replace the already prebuilt libraries provided inside `thirdparty/openssl/`, otherwise, just run `brew install openssl@1.1` to use the prebuilt libraries provided in this repository. - Linux - Run `sudo apt-get install libssl-dev`, or your local package manager's equivalent. diff --git a/SConstruct b/SConstruct index c0da884..9df66a1 100644 --- a/SConstruct +++ b/SConstruct @@ -13,9 +13,9 @@ env = Environment(ENV=os.environ) opts.Add(EnumVariable("target", "Compilation target", "debug", ["d", "debug", "r", "release"])) opts.Add(EnumVariable("platform", "Compilation platform", - "", ["", "windows", "linux", "osx"])) + "", ["", "windows", "linux", "macos"])) opts.Add(EnumVariable("p", "Compilation target, alias for \"platform\"", - "", ["", "windows", "linux", "osx"])) + "", ["", "windows", "linux", "macos"])) opts.Add(BoolVariable( "godot_cpp", "Build godot-cpp by forwarding arguments to it.", "no")) opts.Add(BoolVariable("use_llvm", @@ -40,8 +40,8 @@ opts.Update(env) if env["p"] != "": env["platform"] = env["p"] -if env["platform"] == "osx": - # Use only clang on osx because we need to do universal builds +if env["platform"] == "macos": + # Use only clang on macos because we need to do universal builds env["CXX"] = "clang++" env["CC"] = "clang" diff --git a/build_openssl_universal_osx.sh b/build_openssl_universal_macos.sh similarity index 100% rename from build_openssl_universal_osx.sh rename to build_openssl_universal_macos.sh diff --git a/demo/addons/godot-git-plugin/git_plugin.gdextension b/demo/addons/godot-git-plugin/git_plugin.gdextension index cee1b42..6e46547 100644 --- a/demo/addons/godot-git-plugin/git_plugin.gdextension +++ b/demo/addons/godot-git-plugin/git_plugin.gdextension @@ -4,8 +4,8 @@ entry_symbol = "git_plugin_init" [libraries] -macos.debug = "osx/libgit_plugin.osx.universal.debug.dylib" -macos.release = "osx/libgit_plugin.osx.universal.release.dylib" +macos.debug = "macos/libgit_plugin.macos.universal.debug.dylib" +macos.release = "macos/libgit_plugin.macos.universal.release.dylib" windows.debug.x86_64 = "win64/libgit_plugin.windows.x86_64.debug.dll" windows.release.x86_64 = "win64/libgit_plugin.windows.x86_64.release.dll" linux.debug.x86_64 = "linux/libgit_plugin.linux.x86_64.debug.so" diff --git a/godot-git-plugin/SCsub b/godot-git-plugin/SCsub index d89fafe..e06858e 100644 --- a/godot-git-plugin/SCsub +++ b/godot-git-plugin/SCsub @@ -29,9 +29,9 @@ if not os.path.isdir(env["target_path"]): os.mkdir(env["target_path"]) # Check our platform specifics -if env["platform"] == "osx": - env["target_path"] += "osx/" - cpp_library += ".osx" +if env["platform"] == "macos": + env["target_path"] += "macos/" + cpp_library += ".macos" dynamic_lib_extension = "dylib" target_arch = env["macos_arch"] @@ -81,7 +81,7 @@ if env["target"] in ("debug", "d"): else: cpp_library += ".release" -if env['platform'] == 'osx' and env['macos_arch'] != 'universal': +if env['platform'] == 'macos' and env['macos_arch'] != 'universal': cpp_library += "." + env['macos_arch'] else: cpp_library += "." + "x86_64" diff --git a/release.sh b/release.sh index 08e0cee..9235887 100644 --- a/release.sh +++ b/release.sh @@ -35,9 +35,9 @@ addonsPath=$releasePath/addons pluginPath=$addonsPath/godot-git-plugin mkdir $pluginPath/linux -mkdir $pluginPath/osx +mkdir $pluginPath/macos cp -r linux/addons/godot-git-plugin/linux/ $pluginPath/ -cp -r mac/addons/godot-git-plugin/osx/ $pluginPath/ +cp -r mac/addons/godot-git-plugin/macos/ $pluginPath/ sed -i "s/version=\"[^\"]*\"/version=\"v${version}\"/g" $pluginPath/plugin.cfg cp LICENSE $pluginPath/LICENSE From 6e94df54df6036622e3cc2b8abb122d11215a021 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Wed, 10 Aug 2022 03:59:05 +0530 Subject: [PATCH 12/15] Update extension_api.ci.json --- extension_api.ci.json | 35963 ++++++++++++++++++++++++---------------- 1 file changed, 21321 insertions(+), 14642 deletions(-) diff --git a/extension_api.ci.json b/extension_api.ci.json index db2dcb6..caac351 100644 --- a/extension_api.ci.json +++ b/extension_api.ci.json @@ -59,6 +59,14 @@ "name": "Transform2D", "size": 24 }, + { + "name": "Vector4", + "size": 16 + }, + { + "name": "Vector4i", + "size": 16 + }, { "name": "Plane", "size": 16 @@ -79,6 +87,10 @@ "name": "Transform3D", "size": 48 }, + { + "name": "Projection", + "size": 64 + }, { "name": "Color", "size": 16 @@ -208,6 +220,14 @@ "name": "Transform2D", "size": 24 }, + { + "name": "Vector4", + "size": 16 + }, + { + "name": "Vector4i", + "size": 16 + }, { "name": "Plane", "size": 16 @@ -228,6 +248,10 @@ "name": "Transform3D", "size": 48 }, + { + "name": "Projection", + "size": 64 + }, { "name": "Color", "size": 16 @@ -357,6 +381,14 @@ "name": "Transform2D", "size": 48 }, + { + "name": "Vector4", + "size": 32 + }, + { + "name": "Vector4i", + "size": 16 + }, { "name": "Plane", "size": 32 @@ -377,6 +409,10 @@ "name": "Transform3D", "size": 96 }, + { + "name": "Projection", + "size": 128 + }, { "name": "Color", "size": 16 @@ -506,6 +542,14 @@ "name": "Transform2D", "size": 48 }, + { + "name": "Vector4", + "size": 32 + }, + { + "name": "Vector4i", + "size": 16 + }, { "name": "Plane", "size": 32 @@ -526,6 +570,10 @@ "name": "Transform3D", "size": 96 }, + { + "name": "Projection", + "size": 128 + }, { "name": "Color", "size": 16 @@ -712,6 +760,48 @@ } ] }, + { + "name": "Vector4", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, + { + "name": "Vector4i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, { "name": "Plane", "members": [ @@ -918,6 +1008,48 @@ } ] }, + { + "name": "Vector4", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, + { + "name": "Vector4i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, { "name": "Plane", "members": [ @@ -1124,6 +1256,48 @@ } ] }, + { + "name": "Vector4", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "z", + "offset": 16 + }, + { + "member": "w", + "offset": 24 + } + ] + }, + { + "name": "Vector4i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, { "name": "Plane", "members": [ @@ -1330,6 +1504,48 @@ } ] }, + { + "name": "Vector4", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 8 + }, + { + "member": "z", + "offset": 16 + }, + { + "member": "w", + "offset": 24 + } + ] + }, + { + "name": "Vector4i", + "members": [ + { + "member": "x", + "offset": 0 + }, + { + "member": "y", + "offset": 4 + }, + { + "member": "z", + "offset": 8 + }, + { + "member": "w", + "offset": 12 + } + ] + }, { "name": "Plane", "members": [ @@ -1781,6 +1997,82 @@ "name": "KEY_F16", "value": 16777259 }, + { + "name": "KEY_F17", + "value": 16777260 + }, + { + "name": "KEY_F18", + "value": 16777261 + }, + { + "name": "KEY_F19", + "value": 16777262 + }, + { + "name": "KEY_F20", + "value": 16777263 + }, + { + "name": "KEY_F21", + "value": 16777264 + }, + { + "name": "KEY_F22", + "value": 16777265 + }, + { + "name": "KEY_F23", + "value": 16777266 + }, + { + "name": "KEY_F24", + "value": 16777267 + }, + { + "name": "KEY_F25", + "value": 16777268 + }, + { + "name": "KEY_F26", + "value": 16777269 + }, + { + "name": "KEY_F27", + "value": 16777270 + }, + { + "name": "KEY_F28", + "value": 16777271 + }, + { + "name": "KEY_F29", + "value": 16777272 + }, + { + "name": "KEY_F30", + "value": 16777273 + }, + { + "name": "KEY_F31", + "value": 16777274 + }, + { + "name": "KEY_F32", + "value": 16777275 + }, + { + "name": "KEY_F33", + "value": 16777276 + }, + { + "name": "KEY_F34", + "value": 16777277 + }, + { + "name": "KEY_F35", + "value": 16777278 + }, { "name": "KEY_KP_MULTIPLY", "value": 16777345 @@ -1843,196 +2135,196 @@ }, { "name": "KEY_SUPER_L", - "value": 16777260 - }, - { - "name": "KEY_SUPER_R", - "value": 16777261 - }, - { - "name": "KEY_MENU", - "value": 16777262 - }, - { - "name": "KEY_HYPER_L", - "value": 16777263 - }, - { - "name": "KEY_HYPER_R", - "value": 16777264 - }, - { - "name": "KEY_HELP", - "value": 16777265 - }, - { - "name": "KEY_DIRECTION_L", - "value": 16777266 - }, - { - "name": "KEY_DIRECTION_R", - "value": 16777267 - }, - { - "name": "KEY_BACK", "value": 16777280 }, { - "name": "KEY_FORWARD", + "name": "KEY_SUPER_R", "value": 16777281 }, { - "name": "KEY_STOP", + "name": "KEY_MENU", "value": 16777282 }, { - "name": "KEY_REFRESH", + "name": "KEY_HYPER_L", "value": 16777283 }, { - "name": "KEY_VOLUMEDOWN", + "name": "KEY_HYPER_R", "value": 16777284 }, { - "name": "KEY_VOLUMEMUTE", + "name": "KEY_HELP", "value": 16777285 }, { - "name": "KEY_VOLUMEUP", + "name": "KEY_DIRECTION_L", "value": 16777286 }, { - "name": "KEY_BASSBOOST", + "name": "KEY_DIRECTION_R", "value": 16777287 }, { - "name": "KEY_BASSUP", + "name": "KEY_BACK", "value": 16777288 }, { - "name": "KEY_BASSDOWN", + "name": "KEY_FORWARD", "value": 16777289 }, { - "name": "KEY_TREBLEUP", + "name": "KEY_STOP", "value": 16777290 }, { - "name": "KEY_TREBLEDOWN", + "name": "KEY_REFRESH", "value": 16777291 }, { - "name": "KEY_MEDIAPLAY", + "name": "KEY_VOLUMEDOWN", "value": 16777292 }, { - "name": "KEY_MEDIASTOP", + "name": "KEY_VOLUMEMUTE", "value": 16777293 }, { - "name": "KEY_MEDIAPREVIOUS", + "name": "KEY_VOLUMEUP", "value": 16777294 }, { - "name": "KEY_MEDIANEXT", + "name": "KEY_BASSBOOST", "value": 16777295 }, { - "name": "KEY_MEDIARECORD", + "name": "KEY_BASSUP", "value": 16777296 }, { - "name": "KEY_HOMEPAGE", + "name": "KEY_BASSDOWN", "value": 16777297 }, { - "name": "KEY_FAVORITES", + "name": "KEY_TREBLEUP", "value": 16777298 }, { - "name": "KEY_SEARCH", + "name": "KEY_TREBLEDOWN", "value": 16777299 }, { - "name": "KEY_STANDBY", + "name": "KEY_MEDIAPLAY", "value": 16777300 }, { - "name": "KEY_OPENURL", + "name": "KEY_MEDIASTOP", "value": 16777301 }, { - "name": "KEY_LAUNCHMAIL", + "name": "KEY_MEDIAPREVIOUS", "value": 16777302 }, { - "name": "KEY_LAUNCHMEDIA", + "name": "KEY_MEDIANEXT", "value": 16777303 }, { - "name": "KEY_LAUNCH0", + "name": "KEY_MEDIARECORD", "value": 16777304 }, { - "name": "KEY_LAUNCH1", + "name": "KEY_HOMEPAGE", "value": 16777305 }, { - "name": "KEY_LAUNCH2", + "name": "KEY_FAVORITES", "value": 16777306 }, { - "name": "KEY_LAUNCH3", + "name": "KEY_SEARCH", "value": 16777307 }, { - "name": "KEY_LAUNCH4", + "name": "KEY_STANDBY", "value": 16777308 }, { - "name": "KEY_LAUNCH5", + "name": "KEY_OPENURL", "value": 16777309 }, { - "name": "KEY_LAUNCH6", + "name": "KEY_LAUNCHMAIL", "value": 16777310 }, { - "name": "KEY_LAUNCH7", + "name": "KEY_LAUNCHMEDIA", "value": 16777311 }, { - "name": "KEY_LAUNCH8", + "name": "KEY_LAUNCH0", "value": 16777312 }, { - "name": "KEY_LAUNCH9", + "name": "KEY_LAUNCH1", "value": 16777313 }, { - "name": "KEY_LAUNCHA", + "name": "KEY_LAUNCH2", "value": 16777314 }, { - "name": "KEY_LAUNCHB", + "name": "KEY_LAUNCH3", "value": 16777315 }, { - "name": "KEY_LAUNCHC", + "name": "KEY_LAUNCH4", "value": 16777316 }, { - "name": "KEY_LAUNCHD", + "name": "KEY_LAUNCH5", "value": 16777317 }, { - "name": "KEY_LAUNCHE", + "name": "KEY_LAUNCH6", "value": 16777318 }, { - "name": "KEY_LAUNCHF", + "name": "KEY_LAUNCH7", "value": 16777319 }, + { + "name": "KEY_LAUNCH8", + "value": 16777320 + }, + { + "name": "KEY_LAUNCH9", + "value": 16777321 + }, + { + "name": "KEY_LAUNCHA", + "value": 16777322 + }, + { + "name": "KEY_LAUNCHB", + "value": 16777323 + }, + { + "name": "KEY_LAUNCHC", + "value": 16777324 + }, + { + "name": "KEY_LAUNCHD", + "value": 16777325 + }, + { + "name": "KEY_LAUNCHE", + "value": 16777326 + }, + { + "name": "KEY_LAUNCHF", + "value": 16777327 + }, { "name": "KEY_UNKNOWN", "value": 33554431 @@ -3133,63 +3425,63 @@ "value": 4 }, { - "name": "PROPERTY_HINT_LENGTH", + "name": "PROPERTY_HINT_LINK", "value": 5 }, { - "name": "PROPERTY_HINT_KEY_ACCEL", + "name": "PROPERTY_HINT_FLAGS", "value": 6 }, { - "name": "PROPERTY_HINT_FLAGS", + "name": "PROPERTY_HINT_LAYERS_2D_RENDER", "value": 7 }, { - "name": "PROPERTY_HINT_LAYERS_2D_RENDER", + "name": "PROPERTY_HINT_LAYERS_2D_PHYSICS", "value": 8 }, { - "name": "PROPERTY_HINT_LAYERS_2D_PHYSICS", + "name": "PROPERTY_HINT_LAYERS_2D_NAVIGATION", "value": 9 }, { - "name": "PROPERTY_HINT_LAYERS_2D_NAVIGATION", + "name": "PROPERTY_HINT_LAYERS_3D_RENDER", "value": 10 }, { - "name": "PROPERTY_HINT_LAYERS_3D_RENDER", + "name": "PROPERTY_HINT_LAYERS_3D_PHYSICS", "value": 11 }, { - "name": "PROPERTY_HINT_LAYERS_3D_PHYSICS", + "name": "PROPERTY_HINT_LAYERS_3D_NAVIGATION", "value": 12 }, { - "name": "PROPERTY_HINT_LAYERS_3D_NAVIGATION", + "name": "PROPERTY_HINT_FILE", "value": 13 }, { - "name": "PROPERTY_HINT_FILE", + "name": "PROPERTY_HINT_DIR", "value": 14 }, { - "name": "PROPERTY_HINT_DIR", + "name": "PROPERTY_HINT_GLOBAL_FILE", "value": 15 }, { - "name": "PROPERTY_HINT_GLOBAL_FILE", + "name": "PROPERTY_HINT_GLOBAL_DIR", "value": 16 }, { - "name": "PROPERTY_HINT_GLOBAL_DIR", + "name": "PROPERTY_HINT_RESOURCE_TYPE", "value": 17 }, { - "name": "PROPERTY_HINT_RESOURCE_TYPE", + "name": "PROPERTY_HINT_MULTILINE_TEXT", "value": 18 }, { - "name": "PROPERTY_HINT_MULTILINE_TEXT", + "name": "PROPERTY_HINT_EXPRESSION", "value": 19 }, { @@ -3265,28 +3557,36 @@ "value": 37 }, { - "name": "PROPERTY_HINT_INT_IS_OBJECTID", + "name": "PROPERTY_HINT_GLOBAL_SAVE_FILE", "value": 38 }, { - "name": "PROPERTY_HINT_INT_IS_POINTER", - "value": 40 - }, - { - "name": "PROPERTY_HINT_ARRAY_TYPE", + "name": "PROPERTY_HINT_INT_IS_OBJECTID", "value": 39 }, { - "name": "PROPERTY_HINT_LOCALE_ID", + "name": "PROPERTY_HINT_INT_IS_POINTER", "value": 41 }, { - "name": "PROPERTY_HINT_LOCALIZABLE_STRING", + "name": "PROPERTY_HINT_ARRAY_TYPE", + "value": 40 + }, + { + "name": "PROPERTY_HINT_LOCALE_ID", "value": 42 }, { - "name": "PROPERTY_HINT_MAX", + "name": "PROPERTY_HINT_LOCALIZABLE_STRING", "value": 43 + }, + { + "name": "PROPERTY_HINT_NODE_TYPE", + "value": 44 + }, + { + "name": "PROPERTY_HINT_MAX", + "value": 45 } ] }, @@ -3299,131 +3599,127 @@ }, { "name": "PROPERTY_USAGE_STORAGE", - "value": 1 - }, - { - "name": "PROPERTY_USAGE_EDITOR", "value": 2 }, { - "name": "PROPERTY_USAGE_NETWORK", + "name": "PROPERTY_USAGE_EDITOR", "value": 4 }, { - "name": "PROPERTY_USAGE_EDITOR_HELPER", + "name": "PROPERTY_USAGE_CHECKABLE", "value": 8 }, { - "name": "PROPERTY_USAGE_CHECKABLE", + "name": "PROPERTY_USAGE_CHECKED", "value": 16 }, { - "name": "PROPERTY_USAGE_CHECKED", + "name": "PROPERTY_USAGE_INTERNATIONALIZED", "value": 32 }, { - "name": "PROPERTY_USAGE_INTERNATIONALIZED", + "name": "PROPERTY_USAGE_GROUP", "value": 64 }, { - "name": "PROPERTY_USAGE_GROUP", + "name": "PROPERTY_USAGE_CATEGORY", "value": 128 }, { - "name": "PROPERTY_USAGE_CATEGORY", + "name": "PROPERTY_USAGE_SUBGROUP", "value": 256 }, { - "name": "PROPERTY_USAGE_SUBGROUP", + "name": "PROPERTY_USAGE_CLASS_IS_BITFIELD", "value": 512 }, { "name": "PROPERTY_USAGE_NO_INSTANCE_STATE", - "value": 2048 + "value": 1024 }, { "name": "PROPERTY_USAGE_RESTART_IF_CHANGED", - "value": 4096 + "value": 2048 }, { "name": "PROPERTY_USAGE_SCRIPT_VARIABLE", - "value": 8192 + "value": 4096 }, { "name": "PROPERTY_USAGE_STORE_IF_NULL", - "value": 16384 + "value": 8192 }, { "name": "PROPERTY_USAGE_ANIMATE_AS_TRIGGER", - "value": 32768 + "value": 16384 }, { "name": "PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED", - "value": 65536 + "value": 32768 }, { "name": "PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE", - "value": 131072 + "value": 65536 }, { "name": "PROPERTY_USAGE_CLASS_IS_ENUM", - "value": 262144 + "value": 131072 }, { "name": "PROPERTY_USAGE_NIL_IS_VARIANT", - "value": 524288 + "value": 262144 }, { "name": "PROPERTY_USAGE_INTERNAL", - "value": 1048576 + "value": 524288 }, { "name": "PROPERTY_USAGE_DO_NOT_SHARE_ON_DUPLICATE", - "value": 2097152 + "value": 1048576 }, { "name": "PROPERTY_USAGE_HIGH_END_GFX", - "value": 4194304 + "value": 2097152 }, { "name": "PROPERTY_USAGE_NODE_PATH_FROM_SCENE_ROOT", - "value": 8388608 + "value": 4194304 }, { "name": "PROPERTY_USAGE_RESOURCE_NOT_PERSISTENT", - "value": 16777216 + "value": 8388608 }, { "name": "PROPERTY_USAGE_KEYING_INCREMENTS", - "value": 33554432 + "value": 16777216 }, { "name": "PROPERTY_USAGE_DEFERRED_SET_RESOURCE", - "value": 67108864 + "value": 33554432 }, { "name": "PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT", - "value": 134217728 + "value": 67108864 }, { "name": "PROPERTY_USAGE_EDITOR_BASIC_SETTING", - "value": 268435456 + "value": 134217728 }, { "name": "PROPERTY_USAGE_ARRAY", - "value": 1073741824 + "value": 536870912 }, { "name": "PROPERTY_USAGE_DEFAULT", - "value": 7 + "value": 6 }, { "name": "PROPERTY_USAGE_DEFAULT_INTL", - "value": 71 + "value": 38 }, { "name": "PROPERTY_USAGE_NO_EDITOR", - "value": 5 + "value": 2 } ] }, @@ -3439,36 +3735,24 @@ "value": 2 }, { - "name": "METHOD_FLAG_NOSCRIPT", + "name": "METHOD_FLAG_CONST", "value": 4 }, { - "name": "METHOD_FLAG_CONST", + "name": "METHOD_FLAG_VIRTUAL", "value": 8 }, { - "name": "METHOD_FLAG_REVERSE", + "name": "METHOD_FLAG_VARARG", "value": 16 }, { - "name": "METHOD_FLAG_VIRTUAL", + "name": "METHOD_FLAG_STATIC", "value": 32 }, - { - "name": "METHOD_FLAG_FROM_SCRIPT", - "value": 64 - }, - { - "name": "METHOD_FLAG_VARARG", - "value": 128 - }, - { - "name": "METHOD_FLAG_STATIC", - "value": 256 - }, { "name": "METHOD_FLAG_OBJECT_CORE", - "value": 512 + "value": 64 }, { "name": "METHOD_FLAGS_DEFAULT", @@ -3476,40 +3760,6 @@ } ] }, - { - "name": "RPCMode", - "values": [ - { - "name": "RPC_MODE_DISABLED", - "value": 0 - }, - { - "name": "RPC_MODE_ANY_PEER", - "value": 1 - }, - { - "name": "RPC_MODE_AUTHORITY", - "value": 2 - } - ] - }, - { - "name": "TransferMode", - "values": [ - { - "name": "TRANSFER_MODE_UNRELIABLE", - "value": 0 - }, - { - "name": "TRANSFER_MODE_UNRELIABLE_ORDERED", - "value": 1 - }, - { - "name": "TRANSFER_MODE_RELIABLE", - "value": 2 - } - ] - }, { "name": "Variant.Type", "values": [ @@ -3562,100 +3812,112 @@ "value": 11 }, { - "name": "TYPE_PLANE", + "name": "TYPE_VECTOR4", "value": 12 }, { - "name": "TYPE_QUATERNION", + "name": "TYPE_VECTOR4I", "value": 13 }, { - "name": "TYPE_AABB", + "name": "TYPE_PLANE", "value": 14 }, { - "name": "TYPE_BASIS", + "name": "TYPE_QUATERNION", "value": 15 }, { - "name": "TYPE_TRANSFORM3D", + "name": "TYPE_AABB", "value": 16 }, { - "name": "TYPE_COLOR", + "name": "TYPE_BASIS", "value": 17 }, { - "name": "TYPE_STRING_NAME", + "name": "TYPE_TRANSFORM3D", "value": 18 }, { - "name": "TYPE_NODE_PATH", + "name": "TYPE_PROJECTION", "value": 19 }, { - "name": "TYPE_RID", + "name": "TYPE_COLOR", "value": 20 }, { - "name": "TYPE_OBJECT", + "name": "TYPE_STRING_NAME", "value": 21 }, { - "name": "TYPE_CALLABLE", + "name": "TYPE_NODE_PATH", "value": 22 }, { - "name": "TYPE_SIGNAL", + "name": "TYPE_RID", "value": 23 }, { - "name": "TYPE_DICTIONARY", + "name": "TYPE_OBJECT", "value": 24 }, { - "name": "TYPE_ARRAY", + "name": "TYPE_CALLABLE", "value": 25 }, { - "name": "TYPE_PACKED_BYTE_ARRAY", + "name": "TYPE_SIGNAL", "value": 26 }, { - "name": "TYPE_PACKED_INT32_ARRAY", + "name": "TYPE_DICTIONARY", "value": 27 }, { - "name": "TYPE_PACKED_INT64_ARRAY", + "name": "TYPE_ARRAY", "value": 28 }, { - "name": "TYPE_PACKED_FLOAT32_ARRAY", + "name": "TYPE_PACKED_BYTE_ARRAY", "value": 29 }, { - "name": "TYPE_PACKED_FLOAT64_ARRAY", + "name": "TYPE_PACKED_INT32_ARRAY", "value": 30 }, { - "name": "TYPE_PACKED_STRING_ARRAY", + "name": "TYPE_PACKED_INT64_ARRAY", "value": 31 }, { - "name": "TYPE_PACKED_VECTOR2_ARRAY", + "name": "TYPE_PACKED_FLOAT32_ARRAY", "value": 32 }, { - "name": "TYPE_PACKED_VECTOR3_ARRAY", + "name": "TYPE_PACKED_FLOAT64_ARRAY", "value": 33 }, { - "name": "TYPE_PACKED_COLOR_ARRAY", + "name": "TYPE_PACKED_STRING_ARRAY", "value": 34 }, { - "name": "TYPE_MAX", + "name": "TYPE_PACKED_VECTOR2_ARRAY", "value": 35 + }, + { + "name": "TYPE_PACKED_VECTOR3_ARRAY", + "value": 36 + }, + { + "name": "TYPE_PACKED_COLOR_ARRAY", + "value": 37 + }, + { + "name": "TYPE_MAX", + "value": 38 } ] }, @@ -3775,7 +4037,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "angle_rad", @@ -3788,7 +4050,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "angle_rad", @@ -3801,7 +4063,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "angle_rad", @@ -3814,7 +4076,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3827,7 +4089,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3840,7 +4102,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3853,7 +4115,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3866,7 +4128,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3879,7 +4141,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3892,7 +4154,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "y", @@ -3909,7 +4171,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3922,7 +4184,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "x", @@ -3939,7 +4201,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "x", @@ -3956,7 +4218,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 133316302, + "hash": 3133453818, "arguments": [ { "name": "x", @@ -3973,7 +4235,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3986,7 +4248,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -3999,7 +4261,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -4012,7 +4274,7 @@ "return_type": "Variant", "category": "math", "is_vararg": false, - "hash": 134188199, + "hash": 4776452, "arguments": [ { "name": "x", @@ -4025,7 +4287,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -4038,7 +4300,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 134190379, + "hash": 2157319888, "arguments": [ { "name": "x", @@ -4051,7 +4313,7 @@ "return_type": "Variant", "category": "math", "is_vararg": false, - "hash": 134188199, + "hash": 4776452, "arguments": [ { "name": "x", @@ -4064,7 +4326,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -4077,7 +4339,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 134190379, + "hash": 2157319888, "arguments": [ { "name": "x", @@ -4090,7 +4352,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "base", @@ -4107,7 +4369,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -4120,7 +4382,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "x", @@ -4133,7 +4395,7 @@ "return_type": "bool", "category": "math", "is_vararg": false, - "hash": 134189291, + "hash": 3569215213, "arguments": [ { "name": "x", @@ -4146,7 +4408,7 @@ "return_type": "bool", "category": "math", "is_vararg": false, - "hash": 134189291, + "hash": 3569215213, "arguments": [ { "name": "x", @@ -4159,7 +4421,7 @@ "return_type": "bool", "category": "math", "is_vararg": false, - "hash": 133280399, + "hash": 1400789633, "arguments": [ { "name": "a", @@ -4176,7 +4438,7 @@ "return_type": "bool", "category": "math", "is_vararg": false, - "hash": 134189291, + "hash": 3569215213, "arguments": [ { "name": "x", @@ -4189,7 +4451,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "x", @@ -4206,7 +4468,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 134190380, + "hash": 2780425386, "arguments": [ { "name": "x", @@ -4219,7 +4481,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "x", @@ -4236,7 +4498,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "from", @@ -4257,7 +4519,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 3509509309, + "hash": 1090965791, "arguments": [ { "name": "from", @@ -4281,12 +4543,41 @@ } ] }, + { + "name": "bezier_interpolate", + "return_type": "float", + "category": "math", + "is_vararg": false, + "hash": 1090965791, + "arguments": [ + { + "name": "start", + "type": "float" + }, + { + "name": "control_1", + "type": "float" + }, + { + "name": "control_2", + "type": "float" + }, + { + "name": "end", + "type": "float" + }, + { + "name": "t", + "type": "float" + } + ] + }, { "name": "lerp_angle", "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "from", @@ -4307,7 +4598,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "from", @@ -4328,7 +4619,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 3509509309, + "hash": 1090965791, "arguments": [ { "name": "value", @@ -4357,7 +4648,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "from", @@ -4378,7 +4669,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "from", @@ -4399,7 +4690,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "deg", @@ -4412,7 +4703,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "rad", @@ -4425,7 +4716,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "lin", @@ -4438,7 +4729,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 134191469, + "hash": 2140049587, "arguments": [ { "name": "db", @@ -4446,12 +4737,33 @@ } ] }, + { + "name": "wrap", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 3389874542, + "arguments": [ + { + "name": "value", + "type": "Variant" + }, + { + "name": "min", + "type": "Variant" + }, + { + "name": "max", + "type": "Variant" + } + ] + }, { "name": "wrapi", "return_type": "int", "category": "math", "is_vararg": false, - "hash": 104506609, + "hash": 650295447, "arguments": [ { "name": "value", @@ -4472,7 +4784,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "value", @@ -4493,7 +4805,7 @@ "return_type": "Variant", "category": "math", "is_vararg": true, - "hash": 172379753, + "hash": 3896050336, "arguments": [ { "name": "arg1", @@ -4510,7 +4822,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 133316302, + "hash": 3133453818, "arguments": [ { "name": "a", @@ -4527,7 +4839,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "a", @@ -4544,7 +4856,7 @@ "return_type": "Variant", "category": "math", "is_vararg": true, - "hash": 172379753, + "hash": 3896050336, "arguments": [ { "name": "arg1", @@ -4561,7 +4873,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 133316302, + "hash": 3133453818, "arguments": [ { "name": "a", @@ -4578,7 +4890,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "a", @@ -4595,7 +4907,7 @@ "return_type": "Variant", "category": "math", "is_vararg": false, - "hash": 102132521, + "hash": 3389874542, "arguments": [ { "name": "value", @@ -4616,7 +4928,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 104506609, + "hash": 650295447, "arguments": [ { "name": "value", @@ -4637,7 +4949,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 105693653, + "hash": 998901048, "arguments": [ { "name": "value", @@ -4658,7 +4970,7 @@ "return_type": "int", "category": "math", "is_vararg": false, - "hash": 134190379, + "hash": 2157319888, "arguments": [ { "name": "value", @@ -4671,7 +4983,7 @@ "return_type": "float", "category": "math", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "value", @@ -4687,28 +4999,28 @@ "name": "randomize", "category": "random", "is_vararg": false, - "hash": 193376997 + "hash": 1691721052 }, { "name": "randi", "return_type": "int", "category": "random", "is_vararg": false, - "hash": 2086474760 + "hash": 701202648 }, { "name": "randf", "return_type": "float", "category": "random", "is_vararg": false, - "hash": 2086474793 + "hash": 2086227845 }, { "name": "randi_range", "return_type": "int", "category": "random", "is_vararg": false, - "hash": 133316302, + "hash": 3133453818, "arguments": [ { "name": "from", @@ -4725,7 +5037,7 @@ "return_type": "float", "category": "random", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "from", @@ -4742,7 +5054,7 @@ "return_type": "float", "category": "random", "is_vararg": false, - "hash": 133352273, + "hash": 92296394, "arguments": [ { "name": "mean", @@ -4758,7 +5070,7 @@ "name": "seed", "category": "random", "is_vararg": false, - "hash": 2086473640, + "hash": 382931173, "arguments": [ { "name": "base", @@ -4771,7 +5083,7 @@ "return_type": "PackedInt64Array", "category": "random", "is_vararg": false, - "hash": 134218693, + "hash": 1391063685, "arguments": [ { "name": "seed", @@ -4784,7 +5096,7 @@ "return_type": "Variant", "category": "general", "is_vararg": false, - "hash": 134188199, + "hash": 4776452, "arguments": [ { "name": "obj", @@ -4797,7 +5109,7 @@ "return_type": "int", "category": "general", "is_vararg": false, - "hash": 134190377, + "hash": 326422594, "arguments": [ { "name": "variable", @@ -4810,7 +5122,7 @@ "return_type": "String", "category": "general", "is_vararg": true, - "hash": 135378476, + "hash": 32569176, "arguments": [ { "name": "arg1", @@ -4823,7 +5135,7 @@ "return_type": "String", "category": "general", "is_vararg": false, - "hash": 134192557, + "hash": 942708242, "arguments": [ { "name": "error", @@ -4835,7 +5147,19 @@ "name": "print", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, + "arguments": [ + { + "name": "arg1", + "type": "Variant" + } + ] + }, + { + "name": "print_rich", + "category": "general", + "is_vararg": true, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4847,7 +5171,7 @@ "name": "printerr", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4859,7 +5183,7 @@ "name": "printt", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4871,7 +5195,7 @@ "name": "prints", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4883,7 +5207,7 @@ "name": "printraw", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4895,7 +5219,7 @@ "name": "print_verbose", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4907,7 +5231,7 @@ "name": "push_error", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4919,7 +5243,7 @@ "name": "push_warning", "category": "general", "is_vararg": true, - "hash": 2086509575, + "hash": 2648703342, "arguments": [ { "name": "arg1", @@ -4932,7 +5256,7 @@ "return_type": "String", "category": "general", "is_vararg": false, - "hash": 134192555, + "hash": 866625479, "arguments": [ { "name": "variable", @@ -4945,7 +5269,7 @@ "return_type": "Variant", "category": "general", "is_vararg": false, - "hash": 134188203, + "hash": 1891498491, "arguments": [ { "name": "string", @@ -4958,7 +5282,7 @@ "return_type": "PackedByteArray", "category": "general", "is_vararg": false, - "hash": 134216513, + "hash": 2947269930, "arguments": [ { "name": "variable", @@ -4971,7 +5295,7 @@ "return_type": "Variant", "category": "general", "is_vararg": false, - "hash": 134188225, + "hash": 4249819452, "arguments": [ { "name": "bytes", @@ -4984,7 +5308,7 @@ "return_type": "PackedByteArray", "category": "general", "is_vararg": false, - "hash": 134216513, + "hash": 2947269930, "arguments": [ { "name": "variable", @@ -4997,7 +5321,7 @@ "return_type": "Variant", "category": "general", "is_vararg": false, - "hash": 134188225, + "hash": 4249819452, "arguments": [ { "name": "bytes", @@ -5010,7 +5334,7 @@ "return_type": "int", "category": "general", "is_vararg": false, - "hash": 134190377, + "hash": 326422594, "arguments": [ { "name": "variable", @@ -5023,7 +5347,7 @@ "return_type": "Object", "category": "general", "is_vararg": false, - "hash": 134211070, + "hash": 1156694636, "arguments": [ { "name": "instance_id", @@ -5036,7 +5360,7 @@ "return_type": "bool", "category": "general", "is_vararg": false, - "hash": 134189290, + "hash": 2232439758, "arguments": [ { "name": "id", @@ -5049,7 +5373,7 @@ "return_type": "bool", "category": "general", "is_vararg": false, - "hash": 134189288, + "hash": 996128841, "arguments": [ { "name": "instance", @@ -5062,14 +5386,14 @@ "return_type": "int", "category": "general", "is_vararg": false, - "hash": 2086474760 + "hash": 701202648 }, { "name": "rid_from_int64", "return_type": "RID", "category": "general", "is_vararg": false, - "hash": 134209981, + "hash": 3426892196, "arguments": [ { "name": "base", @@ -5257,6 +5581,26 @@ "right_type": "Transform2D", "return_type": "bool" }, + { + "name": "==", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": "==", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector4i", + "return_type": "bool" + }, { "name": "==", "right_type": "Plane", @@ -5942,6 +6286,16 @@ "right_type": "Vector3i", "return_type": "Vector3i" }, + { + "name": "*", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "*", + "right_type": "Vector4i", + "return_type": "Vector4i" + }, { "name": "*", "right_type": "Quaternion", @@ -6253,6 +6607,16 @@ "right_type": "Vector3i", "return_type": "Vector3" }, + { + "name": "*", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "*", + "right_type": "Vector4i", + "return_type": "Vector4" + }, { "name": "*", "right_type": "Quaternion", @@ -6468,6 +6832,16 @@ "right_type": "Transform2D", "return_type": "String" }, + { + "name": "%", + "right_type": "Vector4", + "return_type": "String" + }, + { + "name": "%", + "right_type": "Vector4i", + "return_type": "String" + }, { "name": "%", "right_type": "Plane", @@ -6493,6 +6867,11 @@ "right_type": "Transform3D", "return_type": "String" }, + { + "name": "%", + "right_type": "Projection", + "return_type": "String" + }, { "name": "%", "right_type": "Color", @@ -6621,7 +7000,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2920860731, "arguments": [ { "name": "to", @@ -6635,7 +7014,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2920860731, "arguments": [ { "name": "to", @@ -6649,7 +7028,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2920860731, "arguments": [ { "name": "to", @@ -6663,7 +7042,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "substr", @@ -6671,7 +7050,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 787537301, "arguments": [ { "name": "from", @@ -6690,7 +7069,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3535100402, "arguments": [ { "name": "delimiter", @@ -6708,7 +7087,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 787537301, "arguments": [ { "name": "delimiter", @@ -6726,7 +7105,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2920860731, "arguments": [ { "name": "delimiter", @@ -6740,7 +7119,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1760645412, "arguments": [ { "name": "what", @@ -6759,7 +7138,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2343087891, "arguments": [ { "name": "what", @@ -6783,7 +7162,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2343087891, "arguments": [ { "name": "what", @@ -6807,7 +7186,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1760645412, "arguments": [ { "name": "what", @@ -6826,7 +7205,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1760645412, "arguments": [ { "name": "what", @@ -6845,7 +7224,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1760645412, "arguments": [ { "name": "what", @@ -6864,7 +7243,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "expr", @@ -6878,7 +7257,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "expr", @@ -6892,7 +7271,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "text", @@ -6906,7 +7285,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "text", @@ -6920,7 +7299,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "text", @@ -6934,7 +7313,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "text", @@ -6948,7 +7327,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193766 + "hash": 747180633 }, { "name": "similarity", @@ -6956,7 +7335,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2697460964, "arguments": [ { "name": "text", @@ -6970,7 +7349,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3212199029, "arguments": [ { "name": "values", @@ -6989,7 +7368,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 1340436205, "arguments": [ { "name": "what", @@ -7007,7 +7386,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 1340436205, "arguments": [ { "name": "what", @@ -7025,7 +7404,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2162347432, "arguments": [ { "name": "count", @@ -7039,7 +7418,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 248737229, "arguments": [ { "name": "position", @@ -7057,7 +7436,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "split", @@ -7065,7 +7444,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1252735785, "arguments": [ { "name": "delimiter", @@ -7089,7 +7468,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1252735785, "arguments": [ { "name": "delimiter", @@ -7113,7 +7492,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 1089991737, "arguments": [ { "name": "delimiter", @@ -7132,7 +7511,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 31, + "hash": 3595973238, "arguments": [ { "name": "parts", @@ -7146,7 +7525,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "to_lower", @@ -7154,7 +7533,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "left", @@ -7162,7 +7541,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2162347432, "arguments": [ { "name": "length", @@ -7176,7 +7555,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2162347432, "arguments": [ { "name": "length", @@ -7190,7 +7569,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 907855311, "arguments": [ { "name": "left", @@ -7210,7 +7589,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "lstrip", @@ -7218,7 +7597,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3134094431, "arguments": [ { "name": "chars", @@ -7232,7 +7611,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3134094431, "arguments": [ { "name": "chars", @@ -7246,7 +7625,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "get_basename", @@ -7254,7 +7633,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "plus_file", @@ -7262,7 +7641,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3134094431, "arguments": [ { "name": "file", @@ -7276,7 +7655,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "at", @@ -7290,7 +7669,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3134094431, "arguments": [ { "name": "prefix", @@ -7304,7 +7683,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "hash", @@ -7312,7 +7691,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "md5_text", @@ -7320,7 +7699,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "sha1_text", @@ -7328,7 +7707,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "sha256_text", @@ -7336,7 +7715,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "md5_buffer", @@ -7344,7 +7723,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sha1_buffer", @@ -7352,7 +7731,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sha256_buffer", @@ -7360,7 +7739,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "is_empty", @@ -7368,7 +7747,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "contains", @@ -7376,7 +7755,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "what", @@ -7390,7 +7769,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_relative_path", @@ -7398,7 +7777,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "simplify_path", @@ -7406,7 +7785,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "get_base_dir", @@ -7414,7 +7793,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "get_file", @@ -7422,7 +7801,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "xml_escape", @@ -7430,7 +7809,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 3429816538, "arguments": [ { "name": "escape_quotes", @@ -7445,7 +7824,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "uri_encode", @@ -7453,7 +7832,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "uri_decode", @@ -7461,7 +7840,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "c_escape", @@ -7469,7 +7848,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "c_unescape", @@ -7477,7 +7856,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "json_escape", @@ -7485,7 +7864,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "validate_node_name", @@ -7493,7 +7872,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "is_valid_identifier", @@ -7501,7 +7880,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_valid_int", @@ -7509,7 +7888,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_valid_float", @@ -7517,7 +7896,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_valid_hex_number", @@ -7525,7 +7904,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 593672999, "arguments": [ { "name": "with_prefix", @@ -7540,7 +7919,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_valid_ip_address", @@ -7548,7 +7927,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_valid_filename", @@ -7556,7 +7935,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "to_int", @@ -7564,7 +7943,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_float", @@ -7572,7 +7951,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "hex_to_int", @@ -7580,7 +7959,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "bin_to_int", @@ -7588,7 +7967,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "lpad", @@ -7596,7 +7975,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 248737229, "arguments": [ { "name": "min_length", @@ -7615,7 +7994,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 248737229, "arguments": [ { "name": "min_length", @@ -7634,7 +8013,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2162347432, "arguments": [ { "name": "digits", @@ -7648,7 +8027,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2162347432, "arguments": [ { "name": "digits", @@ -7662,7 +8041,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3134094431, "arguments": [ { "name": "prefix", @@ -7676,7 +8055,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 3134094431, "arguments": [ { "name": "suffix", @@ -7690,7 +8069,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "to_utf8_buffer", @@ -7698,7 +8077,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "to_utf16_buffer", @@ -7706,7 +8085,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "to_utf32_buffer", @@ -7714,7 +8093,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "num_scientific", @@ -7722,7 +8101,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 3, + "hash": 2710373411, "arguments": [ { "name": "number", @@ -7736,7 +8115,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 1555901022, "arguments": [ { "name": "number", @@ -7755,7 +8134,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 1, + "hash": 2111271071, "arguments": [ { "name": "number", @@ -7779,7 +8158,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 1, + "hash": 2111271071, "arguments": [ { "name": "number", @@ -7803,7 +8182,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 897497541, "arguments": [ { "name": "char", @@ -7817,7 +8196,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 897497541, "arguments": [ { "name": "size", @@ -7921,6 +8300,21 @@ "value": "Vector2(0, 1)" } ], + "enums": [ + { + "name": "Axis", + "values": [ + { + "name": "AXIS_X", + "value": 0 + }, + { + "name": "AXIS_Y", + "value": 1 + } + ] + } + ], "operators": [ { "name": "==", @@ -8038,7 +8432,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "angle_to", @@ -8046,7 +8440,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3819070308, "arguments": [ { "name": "to", @@ -8060,7 +8454,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3819070308, "arguments": [ { "name": "to", @@ -8074,7 +8468,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "to", @@ -8088,7 +8482,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3819070308, "arguments": [ { "name": "to", @@ -8102,7 +8496,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3819070308, "arguments": [ { "name": "to", @@ -8116,7 +8510,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "length_squared", @@ -8124,7 +8518,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "limit_length", @@ -8132,7 +8526,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2544004089, "arguments": [ { "name": "length", @@ -8147,7 +8541,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "is_normalized", @@ -8155,7 +8549,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_equal_approx", @@ -8163,7 +8557,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3190634762, "arguments": [ { "name": "to", @@ -8177,7 +8571,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2544004089, "arguments": [ { "name": "mod", @@ -8191,7 +8585,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "modv", @@ -8205,7 +8599,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "b", @@ -8219,7 +8613,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 4250033116, "arguments": [ { "name": "to", @@ -8237,7 +8631,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 4250033116, "arguments": [ { "name": "to", @@ -8255,7 +8649,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 193522989, "arguments": [ { "name": "b", @@ -8275,13 +8669,39 @@ } ] }, + { + "name": "bezier_interpolate", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 193522989, + "arguments": [ + { + "name": "control_1", + "type": "Vector2" + }, + { + "name": "control_2", + "type": "Vector2" + }, + { + "name": "end", + "type": "Vector2" + }, + { + "name": "t", + "type": "float" + } + ] + }, { "name": "max_axis_index", "return_type": "int", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "min_axis_index", @@ -8289,7 +8709,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "move_toward", @@ -8297,7 +8717,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 4250033116, "arguments": [ { "name": "to", @@ -8315,7 +8735,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2544004089, "arguments": [ { "name": "angle", @@ -8329,7 +8749,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "floor", @@ -8337,7 +8757,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "ceil", @@ -8345,7 +8765,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "round", @@ -8353,7 +8773,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "aspect", @@ -8361,7 +8781,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "dot", @@ -8369,7 +8789,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3819070308, "arguments": [ { "name": "with", @@ -8383,7 +8803,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "n", @@ -8397,7 +8817,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "n", @@ -8411,7 +8831,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "n", @@ -8425,7 +8845,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3819070308, "arguments": [ { "name": "with", @@ -8439,7 +8859,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "sign", @@ -8447,7 +8867,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "clamp", @@ -8455,7 +8875,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 318031021, "arguments": [ { "name": "min", @@ -8473,7 +8893,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "step", @@ -8487,7 +8907,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 3, + "hash": 889263119, "arguments": [ { "name": "angle", @@ -8590,6 +9010,21 @@ "value": "Vector2i(0, 1)" } ], + "enums": [ + { + "name": "Axis", + "values": [ + { + "name": "AXIS_X", + "value": 0 + }, + { + "name": "AXIS_Y", + "value": 1 + } + ] + } + ], "operators": [ { "name": "==", @@ -8707,7 +9142,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "max_axis_index", @@ -8715,7 +9150,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "min_axis_index", @@ -8723,7 +9158,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "length", @@ -8731,7 +9166,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "length_squared", @@ -8739,7 +9174,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "sign", @@ -8747,7 +9182,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192941 + "hash": 3444277866 }, { "name": "abs", @@ -8755,7 +9190,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192941 + "hash": 3444277866 }, { "name": "clamp", @@ -8763,7 +9198,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 6, + "hash": 186568249, "arguments": [ { "name": "min", @@ -8875,7 +9310,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "get_area", @@ -8883,7 +9318,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "has_no_area", @@ -8891,7 +9326,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "has_point", @@ -8899,7 +9334,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3190634762, "arguments": [ { "name": "point", @@ -8913,7 +9348,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 7, + "hash": 1908192260, "arguments": [ { "name": "rect", @@ -8927,7 +9362,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 819294880, "arguments": [ { "name": "b", @@ -8946,7 +9381,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 7, + "hash": 1908192260, "arguments": [ { "name": "b", @@ -8960,7 +9395,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 7, + "hash": 2282977743, "arguments": [ { "name": "b", @@ -8974,7 +9409,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 7, + "hash": 2282977743, "arguments": [ { "name": "b", @@ -8988,7 +9423,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 293272265, "arguments": [ { "name": "to", @@ -9002,7 +9437,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 39664498, "arguments": [ { "name": "amount", @@ -9016,7 +9451,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 4177736158, "arguments": [ { "name": "side", @@ -9034,7 +9469,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 3203390369, "arguments": [ { "name": "left", @@ -9060,7 +9495,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192974 + "hash": 3107653634 } ], "constructors": [ @@ -9178,7 +9613,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192941 + "hash": 3444277866 }, { "name": "get_area", @@ -9186,7 +9621,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "has_no_area", @@ -9194,7 +9629,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "has_point", @@ -9202,7 +9637,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 6, + "hash": 328189994, "arguments": [ { "name": "point", @@ -9216,7 +9651,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 8, + "hash": 3434691493, "arguments": [ { "name": "b", @@ -9230,7 +9665,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 8, + "hash": 3434691493, "arguments": [ { "name": "b", @@ -9244,7 +9679,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 8, + "hash": 717431873, "arguments": [ { "name": "b", @@ -9258,7 +9693,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 8, + "hash": 717431873, "arguments": [ { "name": "b", @@ -9272,7 +9707,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 6, + "hash": 1355196872, "arguments": [ { "name": "to", @@ -9286,7 +9721,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1578070074, "arguments": [ { "name": "amount", @@ -9300,7 +9735,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3191154199, "arguments": [ { "name": "side", @@ -9318,7 +9753,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1893743416, "arguments": [ { "name": "left", @@ -9344,7 +9779,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193007 + "hash": 1469025700 } ], "constructors": [ @@ -9486,6 +9921,25 @@ "value": "Vector3(0, 0, 1)" } ], + "enums": [ + { + "name": "Axis", + "values": [ + { + "name": "AXIS_X", + "value": 0 + }, + { + "name": "AXIS_Y", + "value": 1 + }, + { + "name": "AXIS_Z", + "value": 2 + } + ] + } + ], "operators": [ { "name": "==", @@ -9613,7 +10067,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "max_axis_index", @@ -9621,7 +10075,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "angle_to", @@ -9629,7 +10083,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "to", @@ -9643,7 +10097,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2781412522, "arguments": [ { "name": "to", @@ -9661,7 +10115,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "to", @@ -9675,7 +10129,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "to", @@ -9689,7 +10143,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "to", @@ -9703,7 +10157,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "length_squared", @@ -9711,7 +10165,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "limit_length", @@ -9719,7 +10173,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 514930144, "arguments": [ { "name": "length", @@ -9734,7 +10188,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "is_normalized", @@ -9742,7 +10196,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_equal_approx", @@ -9750,7 +10204,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1749054343, "arguments": [ { "name": "to", @@ -9764,7 +10218,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "clamp", @@ -9772,7 +10226,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 4145107892, "arguments": [ { "name": "min", @@ -9790,7 +10244,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "step", @@ -9804,7 +10258,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1682608829, "arguments": [ { "name": "axis", @@ -9822,7 +10276,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1682608829, "arguments": [ { "name": "to", @@ -9840,7 +10294,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1682608829, "arguments": [ { "name": "to", @@ -9858,7 +10312,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2597922253, "arguments": [ { "name": "b", @@ -9878,13 +10332,39 @@ } ] }, + { + "name": "bezier_interpolate", + "return_type": "Vector3", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2597922253, + "arguments": [ + { + "name": "control_1", + "type": "Vector3" + }, + { + "name": "control_2", + "type": "Vector3" + }, + { + "name": "end", + "type": "Vector3" + }, + { + "name": "t", + "type": "float" + } + ] + }, { "name": "move_toward", "return_type": "Vector3", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1682608829, "arguments": [ { "name": "to", @@ -9902,7 +10382,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "with", @@ -9916,7 +10396,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "with", @@ -9930,7 +10410,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 3934786792, "arguments": [ { "name": "with", @@ -9944,7 +10424,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "floor", @@ -9952,7 +10432,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "ceil", @@ -9960,7 +10440,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "round", @@ -9968,7 +10448,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "posmod", @@ -9976,7 +10456,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 514930144, "arguments": [ { "name": "mod", @@ -9990,7 +10470,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "modv", @@ -10004,7 +10484,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "b", @@ -10018,7 +10498,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "n", @@ -10032,7 +10512,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "n", @@ -10046,7 +10526,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "n", @@ -10060,7 +10540,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "octahedron_encode", @@ -10068,7 +10548,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "octahedron_decode", @@ -10076,7 +10556,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 5, + "hash": 3991820552, "arguments": [ { "name": "uv", @@ -10202,6 +10682,25 @@ "value": "Vector3i(0, 0, 1)" } ], + "enums": [ + { + "name": "Axis", + "values": [ + { + "name": "AXIS_X", + "value": 0 + }, + { + "name": "AXIS_Y", + "value": 1 + }, + { + "name": "AXIS_Z", + "value": 2 + } + ] + } + ], "operators": [ { "name": "==", @@ -10319,7 +10818,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "max_axis_index", @@ -10327,7 +10826,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "length", @@ -10335,7 +10834,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "length_squared", @@ -10343,7 +10842,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "sign", @@ -10351,7 +10850,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193073 + "hash": 3729604559 }, { "name": "abs", @@ -10359,7 +10858,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193073 + "hash": 3729604559 }, { "name": "clamp", @@ -10367,7 +10866,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 10, + "hash": 1086892323, "arguments": [ { "name": "min", @@ -10526,7 +11025,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193106 + "hash": 1420440541 }, { "name": "affine_inverse", @@ -10534,7 +11033,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193106 + "hash": 1420440541 }, { "name": "get_rotation", @@ -10542,7 +11041,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "get_origin", @@ -10550,7 +11049,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "get_scale", @@ -10558,7 +11057,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192908 + "hash": 2428350749 }, { "name": "get_skew", @@ -10566,7 +11065,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "orthonormalized", @@ -10574,7 +11073,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193106 + "hash": 1420440541 }, { "name": "rotated", @@ -10582,7 +11081,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 729597514, "arguments": [ { "name": "angle", @@ -10596,7 +11095,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 1446323263, "arguments": [ { "name": "scale", @@ -10605,12 +11104,12 @@ ] }, { - "name": "translated", + "name": "translated_local", "return_type": "Transform2D", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 1446323263, "arguments": [ { "name": "offset", @@ -10624,7 +11123,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "v", @@ -10638,7 +11137,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2026743667, "arguments": [ { "name": "v", @@ -10652,7 +11151,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 359399686, "arguments": [ { "name": "xform", @@ -10670,7 +11169,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 11, + "hash": 3837431929, "arguments": [ { "name": "xform", @@ -10683,7 +11182,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 833936903, "arguments": [ { "name": "rotation", @@ -10696,7 +11195,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 5, + "hash": 3790411178, "arguments": [ { "name": "scale", @@ -10709,7 +11208,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 833936903, "arguments": [ { "name": "skew", @@ -10723,7 +11222,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 1446323263, "arguments": [ { "name": "target", @@ -10800,6 +11299,702 @@ ], "has_destructor": true }, + { + "name": "Vector4", + "indexing_return_type": "float", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + }, + { + "name": "w", + "type": "float" + } + ], + "constants": [ + { + "name": "AXIS_X", + "type": "int", + "value": "0" + }, + { + "name": "AXIS_Y", + "type": "int", + "value": "1" + }, + { + "name": "AXIS_Z", + "type": "int", + "value": "2" + }, + { + "name": "AXIS_W", + "type": "int", + "value": "3" + }, + { + "name": "ZERO", + "type": "Vector4", + "value": "Vector4(0, 0, 0, 0)" + }, + { + "name": "ONE", + "type": "Vector4", + "value": "Vector4(1, 1, 1, 1)" + }, + { + "name": "INF", + "type": "Vector4", + "value": "Vector4(inf, inf, inf, inf)" + } + ], + "enums": [ + { + "name": "Axis", + "values": [ + { + "name": "AXIS_X", + "value": 0 + }, + { + "name": "AXIS_Y", + "value": 1 + }, + { + "name": "AXIS_Z", + "value": 2 + }, + { + "name": "AXIS_W", + "value": 3 + } + ] + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Vector4" + }, + { + "name": "unary+", + "return_type": "Vector4" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Vector4" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Vector4" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Vector4" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Vector4" + }, + { + "name": "==", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Vector4", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "-", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "*", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "/", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "*", + "right_type": "Projection", + "return_type": "Vector4" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "min_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3173160232 + }, + { + "name": "max_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3173160232 + }, + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "length_squared", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "abs", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "sign", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "floor", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "ceil", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "round", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "lerp", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2329757942, + "arguments": [ + { + "name": "to", + "type": "Vector4" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "clamp", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 823915692, + "arguments": [ + { + "name": "min", + "type": "Vector4" + }, + { + "name": "max", + "type": "Vector4" + } + ] + }, + { + "name": "normalized", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "is_normalized", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3918633141 + }, + { + "name": "dot", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3770801042, + "arguments": [ + { + "name": "with", + "type": "Vector4" + } + ] + }, + { + "name": "inverse", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 80860099 + }, + { + "name": "is_equal_approx", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 88913544, + "arguments": [ + { + "name": "with", + "type": "Vector4" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Vector4" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Vector4i" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "z", + "type": "float" + }, + { + "name": "w", + "type": "float" + } + ] + } + ], + "has_destructor": false + }, + { + "name": "Vector4i", + "indexing_return_type": "int", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + }, + { + "name": "z", + "type": "int" + }, + { + "name": "w", + "type": "int" + } + ], + "constants": [ + { + "name": "AXIS_X", + "type": "int", + "value": "0" + }, + { + "name": "AXIS_Y", + "type": "int", + "value": "1" + }, + { + "name": "AXIS_Z", + "type": "int", + "value": "2" + }, + { + "name": "AXIS_W", + "type": "int", + "value": "3" + }, + { + "name": "ZERO", + "type": "Vector4i", + "value": "Vector4i(0, 0, 0, 0)" + }, + { + "name": "ONE", + "type": "Vector4i", + "value": "Vector4i(1, 1, 1, 1)" + } + ], + "enums": [ + { + "name": "Axis", + "values": [ + { + "name": "AXIS_X", + "value": 0 + }, + { + "name": "AXIS_Y", + "value": 1 + }, + { + "name": "AXIS_Z", + "value": 2 + }, + { + "name": "AXIS_W", + "value": 3 + } + ] + } + ], + "operators": [ + { + "name": "==", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Nil", + "return_type": "bool" + }, + { + "name": "unary-", + "return_type": "Vector4i" + }, + { + "name": "unary+", + "return_type": "Vector4i" + }, + { + "name": "*", + "right_type": "int", + "return_type": "Vector4i" + }, + { + "name": "/", + "right_type": "int", + "return_type": "Vector4i" + }, + { + "name": "%", + "right_type": "int", + "return_type": "Vector4i" + }, + { + "name": "*", + "right_type": "float", + "return_type": "Vector4" + }, + { + "name": "/", + "right_type": "float", + "return_type": "Vector4" + }, + { + "name": "==", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": "<", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": "<=", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": ">", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": ">=", + "right_type": "Vector4i", + "return_type": "bool" + }, + { + "name": "+", + "right_type": "Vector4i", + "return_type": "Vector4i" + }, + { + "name": "-", + "right_type": "Vector4i", + "return_type": "Vector4i" + }, + { + "name": "*", + "right_type": "Vector4i", + "return_type": "Vector4i" + }, + { + "name": "/", + "right_type": "Vector4i", + "return_type": "Vector4i" + }, + { + "name": "%", + "right_type": "Vector4i", + "return_type": "Vector4i" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "min_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3173160232 + }, + { + "name": "max_axis_index", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3173160232 + }, + { + "name": "length", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "length_squared", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3173160232 + }, + { + "name": "sign", + "return_type": "Vector4i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4134919947 + }, + { + "name": "abs", + "return_type": "Vector4i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4134919947 + }, + { + "name": "clamp", + "return_type": "Vector4i", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3046490913, + "arguments": [ + { + "name": "min", + "type": "Vector4i" + }, + { + "name": "max", + "type": "Vector4i" + } + ] + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Vector4i" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Vector4" + } + ] + }, + { + "index": 3, + "arguments": [ + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + }, + { + "name": "z", + "type": "int" + }, + { + "name": "w", + "type": "int" + } + ] + } + ], + "has_destructor": false + }, { "name": "Plane", "is_keyed": true, @@ -10889,7 +12084,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193139 + "hash": 1051796340 }, { "name": "center", @@ -10897,7 +12092,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "is_equal_approx", @@ -10905,7 +12100,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 12, + "hash": 1150170233, "arguments": [ { "name": "to_plane", @@ -10919,10 +12114,10 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1749054343, "arguments": [ { - "name": "plane", + "name": "point", "type": "Vector3" } ] @@ -10933,7 +12128,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "point", @@ -10947,14 +12142,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1258189072, "arguments": [ { "name": "point", "type": "Vector3" }, { - "name": "epsilon", + "name": "tolerance", "type": "float", "default_value": "1e-05" } @@ -10966,7 +12161,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "point", @@ -10980,7 +12175,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 12, + "hash": 2012052692, "arguments": [ { "name": "b", @@ -10998,7 +12193,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2048133369, "arguments": [ { "name": "from", @@ -11016,7 +12211,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2048133369, "arguments": [ { "name": "from", @@ -11234,7 +12429,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "length_squared", @@ -11242,7 +12437,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "normalized", @@ -11250,7 +12445,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193172 + "hash": 4274879941 }, { "name": "is_normalized", @@ -11258,7 +12453,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_equal_approx", @@ -11266,7 +12461,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 13, + "hash": 1682156903, "arguments": [ { "name": "to", @@ -11280,7 +12475,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193172 + "hash": 4274879941 }, { "name": "log", @@ -11288,7 +12483,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193172 + "hash": 4274879941 }, { "name": "exp", @@ -11296,7 +12491,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193172 + "hash": 4274879941 }, { "name": "angle_to", @@ -11304,7 +12499,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 13, + "hash": 3244682419, "arguments": [ { "name": "to", @@ -11318,7 +12513,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 13, + "hash": 3244682419, "arguments": [ { "name": "with", @@ -11332,7 +12527,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1773590316, "arguments": [ { "name": "to", @@ -11350,7 +12545,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1773590316, "arguments": [ { "name": "to", @@ -11363,12 +12558,12 @@ ] }, { - "name": "cubic_slerp", + "name": "spherical_cubic_interpolate", "return_type": "Quaternion", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2150967576, "arguments": [ { "name": "b", @@ -11394,7 +12589,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "get_axis", @@ -11402,7 +12597,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "get_angle", @@ -11410,7 +12605,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 } ], "constructors": [ @@ -11555,7 +12750,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193205 + "hash": 1576868580 }, { "name": "get_center", @@ -11563,7 +12758,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "get_volume", @@ -11571,7 +12766,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "has_no_volume", @@ -11579,7 +12774,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "has_no_surface", @@ -11587,7 +12782,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "has_point", @@ -11595,7 +12790,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1749054343, "arguments": [ { "name": "point", @@ -11609,7 +12804,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 14, + "hash": 299946684, "arguments": [ { "name": "aabb", @@ -11623,7 +12818,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 14, + "hash": 299946684, "arguments": [ { "name": "with", @@ -11637,7 +12832,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 14, + "hash": 299946684, "arguments": [ { "name": "with", @@ -11651,7 +12846,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 12, + "hash": 1150170233, "arguments": [ { "name": "plane", @@ -11665,7 +12860,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 14, + "hash": 1271470306, "arguments": [ { "name": "with", @@ -11679,7 +12874,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 14, + "hash": 1271470306, "arguments": [ { "name": "with", @@ -11693,7 +12888,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2851643018, "arguments": [ { "name": "to_point", @@ -11707,7 +12902,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 239217291, "arguments": [ { "name": "by", @@ -11721,7 +12916,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2923479887, "arguments": [ { "name": "dir", @@ -11735,7 +12930,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "get_longest_axis_index", @@ -11743,7 +12938,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "get_longest_axis_size", @@ -11751,7 +12946,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "get_shortest_axis", @@ -11759,7 +12954,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "get_shortest_axis_index", @@ -11767,7 +12962,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "get_shortest_axis_size", @@ -11775,7 +12970,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "get_endpoint", @@ -11783,7 +12978,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1394941017, "arguments": [ { "name": "idx", @@ -11797,7 +12992,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2048133369, "arguments": [ { "name": "from", @@ -11815,7 +13010,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 2048133369, "arguments": [ { "name": "from", @@ -11927,6 +13122,37 @@ "value": "Basis(1, 0, 0, 0, 1, 0, 0, 0, -1)" } ], + "enums": [ + { + "name": "EulerOrder", + "values": [ + { + "name": "EULER_ORDER_XYZ", + "value": 0 + }, + { + "name": "EULER_ORDER_XZY", + "value": 1 + }, + { + "name": "EULER_ORDER_YXZ", + "value": 2 + }, + { + "name": "EULER_ORDER_YZX", + "value": 3 + }, + { + "name": "EULER_ORDER_ZXY", + "value": 4 + }, + { + "name": "EULER_ORDER_ZYX", + "value": 5 + } + ] + } + ], "operators": [ { "name": "==", @@ -11986,7 +13212,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193238 + "hash": 594669093 }, { "name": "transposed", @@ -11994,7 +13220,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193238 + "hash": 594669093 }, { "name": "orthonormalized", @@ -12002,7 +13228,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193238 + "hash": 594669093 }, { "name": "determinant", @@ -12010,7 +13236,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "rotated", @@ -12018,7 +13244,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1998708965, "arguments": [ { "name": "axis", @@ -12036,7 +13262,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 3934786792, "arguments": [ { "name": "scale", @@ -12050,7 +13276,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193040 + "hash": 1776574132 }, { "name": "get_euler", @@ -12058,7 +13284,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1394941017, "arguments": [ { "name": "order", @@ -12073,7 +13299,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "with", @@ -12087,7 +13313,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "with", @@ -12101,7 +13327,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1047977935, "arguments": [ { "name": "with", @@ -12115,7 +13341,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "slerp", @@ -12123,7 +13349,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 3118673011, "arguments": [ { "name": "to", @@ -12141,7 +13367,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 15, + "hash": 3165333982, "arguments": [ { "name": "b", @@ -12155,7 +13381,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193172 + "hash": 4274879941 }, { "name": "looking_at", @@ -12163,7 +13389,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 9, + "hash": 419916660, "arguments": [ { "name": "target", @@ -12182,7 +13408,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 9, + "hash": 3703240166, "arguments": [ { "name": "scale", @@ -12196,7 +13422,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 2802321791, "arguments": [ { "name": "euler", @@ -12369,7 +13595,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193271 + "hash": 3816817146 }, { "name": "affine_inverse", @@ -12377,7 +13603,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193271 + "hash": 3816817146 }, { "name": "orthonormalized", @@ -12385,7 +13611,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193271 + "hash": 3816817146 }, { "name": "rotated", @@ -12393,7 +13619,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1563203923, "arguments": [ { "name": "axis", @@ -12411,7 +13637,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1405596198, "arguments": [ { "name": "scale", @@ -12420,12 +13646,12 @@ ] }, { - "name": "translated", + "name": "translated_local", "return_type": "Transform3D", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1405596198, "arguments": [ { "name": "offset", @@ -12439,7 +13665,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 806929180, "arguments": [ { "name": "target", @@ -12453,12 +13679,12 @@ ] }, { - "name": "sphere_interpolate_with", + "name": "spherical_interpolate_with", "return_type": "Transform3D", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1786453358, "arguments": [ { "name": "xform", @@ -12476,7 +13702,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1786453358, "arguments": [ { "name": "xform", @@ -12494,7 +13720,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 16, + "hash": 696001652, "arguments": [ { "name": "xform", @@ -12549,10 +13775,626 @@ "type": "Vector3" } ] + }, + { + "index": 4, + "arguments": [ + { + "name": "from", + "type": "Projection" + } + ] } ], "has_destructor": true }, + { + "name": "Projection", + "indexing_return_type": "Vector4", + "is_keyed": true, + "members": [ + { + "name": "x", + "type": "Vector4" + }, + { + "name": "y", + "type": "Vector4" + }, + { + "name": "z", + "type": "Vector4" + }, + { + "name": "w", + "type": "Vector4" + } + ], + "constants": [ + { + "name": "PLANE_NEAR", + "type": "int", + "value": "0" + }, + { + "name": "PLANE_FAR", + "type": "int", + "value": "1" + }, + { + "name": "PLANE_LEFT", + "type": "int", + "value": "2" + }, + { + "name": "PLANE_TOP", + "type": "int", + "value": "3" + }, + { + "name": "PLANE_RIGHT", + "type": "int", + "value": "4" + }, + { + "name": "PLANE_BOTTOM", + "type": "int", + "value": "5" + }, + { + "name": "IDENTITY", + "type": "Projection", + "value": "Projection(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)" + }, + { + "name": "ZERO", + "type": "Projection", + "value": "Projection(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)" + } + ], + "enums": [ + { + "name": "Planes", + "values": [ + { + "name": "PLANE_NEAR", + "value": 0 + }, + { + "name": "PLANE_FAR", + "value": 1 + }, + { + "name": "PLANE_LEFT", + "value": 2 + }, + { + "name": "PLANE_TOP", + "value": 3 + }, + { + "name": "PLANE_RIGHT", + "value": 4 + }, + { + "name": "PLANE_BOTTOM", + "value": 5 + } + ] + } + ], + "operators": [ + { + "name": "*", + "right_type": "Vector4", + "return_type": "Vector4" + }, + { + "name": "==", + "right_type": "Projection", + "return_type": "bool" + }, + { + "name": "!=", + "right_type": "Projection", + "return_type": "bool" + }, + { + "name": "*", + "right_type": "Projection", + "return_type": "Projection" + }, + { + "name": "in", + "right_type": "Dictionary", + "return_type": "bool" + }, + { + "name": "in", + "right_type": "Array", + "return_type": "bool" + } + ], + "methods": [ + { + "name": "create_depth_correction", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 1228516048, + "arguments": [ + { + "name": "flip_y", + "type": "bool" + } + ] + }, + { + "name": "create_light_atlas_rect", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2654950662, + "arguments": [ + { + "name": "rect", + "type": "Rect2" + } + ] + }, + { + "name": "create_perspective", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 390915442, + "arguments": [ + { + "name": "fovy", + "type": "float" + }, + { + "name": "aspect", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + }, + { + "name": "flip_fov", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_perspective_hmd", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2857674800, + "arguments": [ + { + "name": "fovy", + "type": "float" + }, + { + "name": "aspect", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + }, + { + "name": "flip_fov", + "type": "bool" + }, + { + "name": "eye", + "type": "int" + }, + { + "name": "intraocular_dist", + "type": "float" + }, + { + "name": " convergence_dist", + "type": "float" + } + ] + }, + { + "name": "create_for_hmd", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 4184144994, + "arguments": [ + { + "name": "eye", + "type": "int" + }, + { + "name": "aspect", + "type": "float" + }, + { + "name": "intraocular_dist", + "type": "float" + }, + { + "name": "display_width", + "type": "float" + }, + { + "name": "display_to_lens", + "type": "float" + }, + { + "name": "oversample", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + } + ] + }, + { + "name": "create_orthogonal", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3707929169, + "arguments": [ + { + "name": "left", + "type": "float" + }, + { + "name": "right", + "type": "float" + }, + { + "name": "bottom", + "type": "float" + }, + { + "name": "top", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + } + ] + }, + { + "name": "create_orthogonal_aspect", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 390915442, + "arguments": [ + { + "name": "size", + "type": "float" + }, + { + "name": "aspect", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + }, + { + "name": "flip_fov", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_frustum", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3707929169, + "arguments": [ + { + "name": "left", + "type": "float" + }, + { + "name": "right", + "type": "float" + }, + { + "name": "bottom", + "type": "float" + }, + { + "name": "top", + "type": "float" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + } + ] + }, + { + "name": "create_frustum_aspect", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 1535076251, + "arguments": [ + { + "name": "size", + "type": "float" + }, + { + "name": "aspect", + "type": "float" + }, + { + "name": "offset", + "type": "Vector2" + }, + { + "name": "z_near", + "type": "float" + }, + { + "name": "z_far", + "type": "float" + }, + { + "name": "flip_fov", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "create_fit_aabb", + "return_type": "Projection", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 2264694907, + "arguments": [ + { + "name": "aabb", + "type": "AABB" + } + ] + }, + { + "name": "determinant", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "perspective_znear_adjusted", + "return_type": "Projection", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3584785443, + "arguments": [ + { + "name": "new_znear", + "type": "float" + } + ] + }, + { + "name": "get_projection_plane", + "return_type": "Plane", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1551184160, + "arguments": [ + { + "name": "plane", + "type": "int" + } + ] + }, + { + "name": "flipped_y", + "return_type": "Projection", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4212530932 + }, + { + "name": "jitter_offseted", + "return_type": "Projection", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2448438599, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_fovy", + "return_type": "float", + "is_vararg": false, + "is_const": false, + "is_static": true, + "hash": 3514207532, + "arguments": [ + { + "name": "fovx", + "type": "float" + }, + { + "name": "aspect", + "type": "float" + } + ] + }, + { + "name": "get_z_far", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "get_z_near", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "get_aspect", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "get_fov", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + }, + { + "name": "is_orthogonal", + "return_type": "bool", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3918633141 + }, + { + "name": "get_viewport_half_extents", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2428350749 + }, + { + "name": "get_far_plane_half_extents", + "return_type": "Vector2", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2428350749 + }, + { + "name": "inverse", + "return_type": "Projection", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4212530932 + }, + { + "name": "get_pixels_per_meter", + "return_type": "int", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 4103005248, + "arguments": [ + { + "name": "for_pixel_width", + "type": "int" + } + ] + }, + { + "name": "get_lod_multiplier", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 466405837 + } + ], + "constructors": [ + { + "index": 0 + }, + { + "index": 1, + "arguments": [ + { + "name": "from", + "type": "Projection" + } + ] + }, + { + "index": 2, + "arguments": [ + { + "name": "from", + "type": "Transform3D" + } + ] + } + ], + "has_destructor": false + }, { "name": "Color", "indexing_return_type": "float", @@ -13427,7 +15269,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_abgr32", @@ -13435,7 +15277,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_rgba32", @@ -13443,7 +15285,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_argb64", @@ -13451,7 +15293,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_abgr64", @@ -13459,7 +15301,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_rgba64", @@ -13467,7 +15309,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "to_html", @@ -13475,7 +15317,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 3429816538, "arguments": [ { "name": "with_alpha", @@ -13490,7 +15332,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 17, + "hash": 105651410, "arguments": [ { "name": "min", @@ -13510,7 +15352,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193304 + "hash": 3334027602 }, { "name": "lerp", @@ -13518,7 +15360,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 402949615, "arguments": [ { "name": "to", @@ -13536,7 +15378,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1466039168, "arguments": [ { "name": "amount", @@ -13550,7 +15392,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1466039168, "arguments": [ { "name": "amount", @@ -13564,7 +15406,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 17, + "hash": 3803690977, "arguments": [ { "name": "over", @@ -13578,7 +15420,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192842 + "hash": 466405837 }, { "name": "srgb_to_linear", @@ -13586,7 +15428,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193304 + "hash": 3334027602 }, { "name": "linear_to_srgb", @@ -13594,7 +15436,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193304 + "hash": 3334027602 }, { "name": "is_equal_approx", @@ -13602,7 +15444,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 17, + "hash": 3167426256, "arguments": [ { "name": "to", @@ -13616,7 +15458,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 351421375, "arguments": [ { "name": "hex", @@ -13630,7 +15472,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 351421375, "arguments": [ { "name": "hex", @@ -13644,7 +15486,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 4, + "hash": 2500054655, "arguments": [ { "name": "rgba", @@ -13658,7 +15500,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 4, + "hash": 2942997125, "arguments": [ { "name": "color", @@ -13672,7 +15514,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 4, + "hash": 1116350977, "arguments": [ { "name": "name", @@ -13686,7 +15528,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 133243337 + "hash": 911363434 }, { "name": "get_named_color_name", @@ -13694,7 +15536,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 897497541, "arguments": [ { "name": "idx", @@ -13708,7 +15550,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 351421375, "arguments": [ { "name": "idx", @@ -13722,7 +15564,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 17, + "hash": 3755044230, "arguments": [ { "name": "str", @@ -13740,7 +15582,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 3, + "hash": 1573799446, "arguments": [ { "name": "h", @@ -13767,7 +15609,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 3, + "hash": 1573799446, "arguments": [ { "name": "h", @@ -13794,7 +15636,7 @@ "is_vararg": false, "is_const": false, "is_static": true, - "hash": 2, + "hash": 351421375, "arguments": [ { "name": "rgbe", @@ -13979,7 +15821,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 } ], "constructors": [ @@ -14049,7 +15891,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "get_name_count", @@ -14057,7 +15899,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "get_name", @@ -14065,7 +15907,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2948586938, "arguments": [ { "name": "idx", @@ -14079,7 +15921,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "hash", @@ -14087,7 +15929,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "get_subname", @@ -14095,7 +15937,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2948586938, "arguments": [ { "name": "idx", @@ -14103,13 +15945,21 @@ } ] }, + { + "name": "get_concatenated_names", + "return_type": "StringName", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1825232092 + }, { "name": "get_concatenated_subnames", "return_type": "StringName", "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193337 + "hash": 1825232092 }, { "name": "get_as_property_path", @@ -14117,7 +15967,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193370 + "hash": 1598598043 }, { "name": "is_empty", @@ -14125,7 +15975,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 } ], "constructors": [ @@ -14205,7 +16055,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "get_id", @@ -14213,7 +16063,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 } ], "constructors": [ @@ -14274,7 +16124,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_custom", @@ -14282,7 +16132,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_standard", @@ -14290,7 +16140,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "is_valid", @@ -14298,7 +16148,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "get_object", @@ -14306,7 +16156,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193436 + "hash": 4008621732 }, { "name": "get_object_id", @@ -14314,7 +16164,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "get_method", @@ -14322,7 +16172,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193337 + "hash": 1825232092 }, { "name": "hash", @@ -14330,7 +16180,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "unbind", @@ -14338,7 +16188,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 755001590, "arguments": [ { "name": "argcount", @@ -14352,28 +16202,28 @@ "is_vararg": true, "is_const": true, "is_static": false, - "hash": 171228680 + "hash": 3643564216 }, { "name": "call_deferred", "is_vararg": true, "is_const": true, "is_static": false, - "hash": 135339239 + "hash": 3286317445 }, { "name": "rpc", "is_vararg": true, "is_const": true, "is_static": false, - "hash": 135339239 + "hash": 3286317445 }, { "name": "rpc_id", "is_vararg": true, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2270047679, "arguments": [ { "name": "peer_id", @@ -14387,7 +16237,7 @@ "is_vararg": true, "is_const": true, "is_static": false, - "hash": 171229406 + "hash": 3224143119 } ], "constructors": [ @@ -14461,7 +16311,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "get_object", @@ -14469,7 +16319,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193436 + "hash": 4008621732 }, { "name": "get_object_id", @@ -14477,7 +16327,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "get_name", @@ -14485,7 +16335,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193337 + "hash": 1825232092 }, { "name": "connect", @@ -14493,7 +16343,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 979702392, "arguments": [ { "name": "callable", @@ -14511,7 +16361,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 22, + "hash": 3470848906, "arguments": [ { "name": "callable", @@ -14525,7 +16375,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 22, + "hash": 4129521963, "arguments": [ { "name": "callable", @@ -14539,14 +16389,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193568 + "hash": 4144163970 }, { "name": "emit", "is_vararg": true, "is_const": true, "is_static": false, - "hash": 135339239 + "hash": 3286317445 } ], "constructors": [ @@ -14621,7 +16471,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -14629,21 +16479,21 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "clear", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "merge", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 2079548978, "arguments": [ { "name": "dictionary", @@ -14662,7 +16512,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 0, + "hash": 3680194679, "arguments": [ { "name": "key", @@ -14676,7 +16526,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 25, + "hash": 2988181878, "arguments": [ { "name": "keys", @@ -14690,7 +16540,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 1776646889, "arguments": [ { "name": "key", @@ -14704,7 +16554,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "keys", @@ -14712,7 +16562,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193568 + "hash": 4144163970 }, { "name": "values", @@ -14720,7 +16570,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193568 + "hash": 4144163970 }, { "name": "duplicate", @@ -14728,7 +16578,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 830099069, "arguments": [ { "name": "deep", @@ -14743,7 +16593,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 0, + "hash": 2205440559, "arguments": [ { "name": "key", @@ -14841,7 +16691,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -14849,14 +16699,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "clear", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "hash", @@ -14864,14 +16714,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "push_back", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 3316032543, "arguments": [ { "name": "value", @@ -14884,7 +16734,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 3316032543, "arguments": [ { "name": "value", @@ -14897,7 +16747,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 3316032543, "arguments": [ { "name": "value", @@ -14910,7 +16760,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 25, + "hash": 2307260970, "arguments": [ { "name": "array", @@ -14924,7 +16774,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "size", @@ -14938,7 +16788,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 3176316662, "arguments": [ { "name": "position", @@ -14955,7 +16805,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "position", @@ -14968,7 +16818,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 3316032543, "arguments": [ { "name": "value", @@ -14981,7 +16831,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 0, + "hash": 3316032543, "arguments": [ { "name": "value", @@ -14995,7 +16845,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192743 + "hash": 1460142086 }, { "name": "back", @@ -15003,7 +16853,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192743 + "hash": 1460142086 }, { "name": "find", @@ -15011,7 +16861,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2336346817, "arguments": [ { "name": "what", @@ -15030,7 +16880,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2336346817, "arguments": [ { "name": "what", @@ -15049,7 +16899,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 0, + "hash": 1481661226, "arguments": [ { "name": "value", @@ -15063,7 +16913,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 0, + "hash": 1481661226, "arguments": [ { "name": "value", @@ -15077,7 +16927,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 0, + "hash": 3680194679, "arguments": [ { "name": "value", @@ -15091,7 +16941,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132057350 + "hash": 1321915136 }, { "name": "pop_front", @@ -15099,7 +16949,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132057350 + "hash": 1321915136 }, { "name": "pop_at", @@ -15107,7 +16957,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3518259424, "arguments": [ { "name": "position", @@ -15120,14 +16970,14 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "sort_custom", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 22, + "hash": 3470848906, "arguments": [ { "name": "func", @@ -15140,7 +16990,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -15148,7 +16998,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 2634019015, "arguments": [ { "name": "value", @@ -15167,7 +17017,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 135832563, "arguments": [ { "name": "value", @@ -15189,7 +17039,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "duplicate", @@ -15197,7 +17047,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 636440122, "arguments": [ { "name": "deep", @@ -15212,7 +17062,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 1393718243, "arguments": [ { "name": "begin", @@ -15241,7 +17091,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 22, + "hash": 4075186556, "arguments": [ { "name": "method", @@ -15255,7 +17105,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 22, + "hash": 4075186556, "arguments": [ { "name": "method", @@ -15269,7 +17119,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 0, + "hash": 4272450342, "arguments": [ { "name": "method", @@ -15288,7 +17138,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 22, + "hash": 4129521963, "arguments": [ { "name": "method", @@ -15302,7 +17152,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 22, + "hash": 4129521963, "arguments": [ { "name": "method", @@ -15316,7 +17166,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192743 + "hash": 1460142086 }, { "name": "min", @@ -15324,7 +17174,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192743 + "hash": 1460142086 } ], "constructors": [ @@ -15472,7 +17322,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -15480,14 +17330,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "index", @@ -15505,7 +17355,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 694024632, "arguments": [ { "name": "value", @@ -15519,7 +17369,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 694024632, "arguments": [ { "name": "value", @@ -15532,7 +17382,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 26, + "hash": 791097111, "arguments": [ { "name": "array", @@ -15545,7 +17395,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -15559,7 +17409,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 1487112728, "arguments": [ { "name": "at_index", @@ -15576,7 +17426,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "value", @@ -15590,7 +17440,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -15604,7 +17454,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 931488181, "arguments": [ { "name": "value", @@ -15617,7 +17467,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -15625,7 +17475,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2278869132, "arguments": [ { "name": "begin", @@ -15643,7 +17493,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -15651,7 +17501,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 3380005890, "arguments": [ { "name": "value", @@ -15670,7 +17520,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058208 + "hash": 851781288 }, { "name": "find", @@ -15678,7 +17528,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2984303840, "arguments": [ { "name": "value", @@ -15697,7 +17547,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2984303840, "arguments": [ { "name": "value", @@ -15716,7 +17566,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "value", @@ -15730,7 +17580,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "get_string_from_utf8", @@ -15738,7 +17588,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "get_string_from_utf16", @@ -15746,7 +17596,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "get_string_from_utf32", @@ -15754,7 +17604,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "hex_encode", @@ -15762,7 +17612,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192875 + "hash": 3942272618 }, { "name": "compress", @@ -15770,7 +17620,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1845905913, "arguments": [ { "name": "compression_mode", @@ -15785,7 +17635,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2278869132, "arguments": [ { "name": "buffer_size", @@ -15804,7 +17654,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2278869132, "arguments": [ { "name": "max_output_size", @@ -15823,7 +17673,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15837,7 +17687,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15851,7 +17701,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15865,7 +17715,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15879,7 +17729,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15893,7 +17743,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15907,7 +17757,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15921,7 +17771,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "byte_offset", @@ -15935,7 +17785,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1401583798, "arguments": [ { "name": "byte_offset", @@ -15949,7 +17799,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1401583798, "arguments": [ { "name": "byte_offset", @@ -15963,7 +17813,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1401583798, "arguments": [ { "name": "byte_offset", @@ -15977,7 +17827,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 2914632957, "arguments": [ { "name": "byte_offset", @@ -15996,7 +17846,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 1740420038, "arguments": [ { "name": "byte_offset", @@ -16015,7 +17865,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 1, + "hash": 954237325, "arguments": [ { "name": "byte_offset", @@ -16034,7 +17884,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193634 + "hash": 3158844420 }, { "name": "to_int64_array", @@ -16042,7 +17892,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193667 + "hash": 1961294120 }, { "name": "to_float32_array", @@ -16050,7 +17900,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193700 + "hash": 3575107827 }, { "name": "to_float64_array", @@ -16058,14 +17908,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193733 + "hash": 1627308337 }, { "name": "encode_u8", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16082,7 +17932,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16099,7 +17949,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16116,7 +17966,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16133,7 +17983,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16150,7 +18000,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16167,7 +18017,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16184,7 +18034,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "byte_offset", @@ -16201,7 +18051,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1113000516, "arguments": [ { "name": "byte_offset", @@ -16218,7 +18068,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1113000516, "arguments": [ { "name": "byte_offset", @@ -16235,7 +18085,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1113000516, "arguments": [ { "name": "byte_offset", @@ -16253,7 +18103,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 2604460497, "arguments": [ { "name": "byte_offset", @@ -16344,7 +18194,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -16352,14 +18202,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "index", @@ -16377,7 +18227,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 694024632, "arguments": [ { "name": "value", @@ -16391,7 +18241,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 694024632, "arguments": [ { "name": "value", @@ -16404,7 +18254,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 27, + "hash": 1087733270, "arguments": [ { "name": "array", @@ -16417,7 +18267,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -16431,7 +18281,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 1487112728, "arguments": [ { "name": "at_index", @@ -16448,7 +18298,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "value", @@ -16462,7 +18312,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -16476,7 +18326,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 931488181, "arguments": [ { "name": "value", @@ -16489,7 +18339,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -16497,7 +18347,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1216021098, "arguments": [ { "name": "begin", @@ -16516,14 +18366,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -16531,7 +18381,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 3380005890, "arguments": [ { "name": "value", @@ -16550,7 +18400,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058241 + "hash": 1997843129 }, { "name": "find", @@ -16558,7 +18408,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2984303840, "arguments": [ { "name": "value", @@ -16577,7 +18427,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2984303840, "arguments": [ { "name": "value", @@ -16596,7 +18446,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "value", @@ -16678,7 +18528,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -16686,14 +18536,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 3638975848, "arguments": [ { "name": "index", @@ -16711,7 +18561,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 694024632, "arguments": [ { "name": "value", @@ -16725,7 +18575,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 694024632, "arguments": [ { "name": "value", @@ -16738,7 +18588,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 28, + "hash": 2090311302, "arguments": [ { "name": "array", @@ -16751,7 +18601,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -16765,7 +18615,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 1487112728, "arguments": [ { "name": "at_index", @@ -16782,7 +18632,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "value", @@ -16796,7 +18646,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -16810,7 +18660,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 931488181, "arguments": [ { "name": "value", @@ -16823,7 +18673,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -16831,7 +18681,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1726550804, "arguments": [ { "name": "begin", @@ -16850,14 +18700,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -16865,7 +18715,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 3380005890, "arguments": [ { "name": "value", @@ -16884,7 +18734,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058274 + "hash": 2376370016 }, { "name": "find", @@ -16892,7 +18742,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2984303840, "arguments": [ { "name": "value", @@ -16911,7 +18761,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2984303840, "arguments": [ { "name": "value", @@ -16930,7 +18780,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 4103005248, "arguments": [ { "name": "value", @@ -17012,7 +18862,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -17020,14 +18870,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1113000516, "arguments": [ { "name": "index", @@ -17045,7 +18895,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 4094791666, "arguments": [ { "name": "value", @@ -17059,7 +18909,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 4094791666, "arguments": [ { "name": "value", @@ -17072,7 +18922,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 29, + "hash": 2981316639, "arguments": [ { "name": "array", @@ -17085,7 +18935,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -17099,7 +18949,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1379903876, "arguments": [ { "name": "at_index", @@ -17116,7 +18966,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 833936903, "arguments": [ { "name": "value", @@ -17130,7 +18980,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -17144,7 +18994,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1296369134, "arguments": [ { "name": "value", @@ -17157,7 +19007,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -17165,7 +19015,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1418229160, "arguments": [ { "name": "begin", @@ -17184,14 +19034,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -17199,7 +19049,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 1188816338, "arguments": [ { "name": "value", @@ -17218,7 +19068,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058307 + "hash": 831114784 }, { "name": "find", @@ -17226,7 +19076,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1343150241, "arguments": [ { "name": "value", @@ -17245,7 +19095,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1343150241, "arguments": [ { "name": "value", @@ -17264,7 +19114,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2859915090, "arguments": [ { "name": "value", @@ -17346,7 +19196,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -17354,14 +19204,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1113000516, "arguments": [ { "name": "index", @@ -17379,7 +19229,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 4094791666, "arguments": [ { "name": "value", @@ -17393,7 +19243,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 4094791666, "arguments": [ { "name": "value", @@ -17406,7 +19256,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 30, + "hash": 792078629, "arguments": [ { "name": "array", @@ -17419,7 +19269,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -17433,7 +19283,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 1379903876, "arguments": [ { "name": "at_index", @@ -17450,7 +19300,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 3, + "hash": 833936903, "arguments": [ { "name": "value", @@ -17464,7 +19314,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -17478,7 +19328,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 1296369134, "arguments": [ { "name": "value", @@ -17491,7 +19341,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -17499,7 +19349,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2192974324, "arguments": [ { "name": "begin", @@ -17518,14 +19368,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -17533,7 +19383,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 1188816338, "arguments": [ { "name": "value", @@ -17552,7 +19402,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058340 + "hash": 949266573 }, { "name": "find", @@ -17560,7 +19410,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1343150241, "arguments": [ { "name": "value", @@ -17579,7 +19429,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1343150241, "arguments": [ { "name": "value", @@ -17598,7 +19448,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 3, + "hash": 2859915090, "arguments": [ { "name": "value", @@ -17680,7 +19530,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -17688,14 +19538,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 4, + "hash": 725585539, "arguments": [ { "name": "index", @@ -17713,7 +19563,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 4, + "hash": 816187996, "arguments": [ { "name": "value", @@ -17727,7 +19577,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 4, + "hash": 816187996, "arguments": [ { "name": "value", @@ -17740,7 +19590,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 31, + "hash": 1120103966, "arguments": [ { "name": "array", @@ -17753,7 +19603,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -17767,7 +19617,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 4, + "hash": 2432393153, "arguments": [ { "name": "at_index", @@ -17784,7 +19634,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 4, + "hash": 3174917410, "arguments": [ { "name": "value", @@ -17798,7 +19648,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -17812,7 +19662,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2566493496, "arguments": [ { "name": "value", @@ -17825,7 +19675,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -17833,7 +19683,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2094601407, "arguments": [ { "name": "begin", @@ -17852,14 +19702,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -17867,7 +19717,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 328976671, "arguments": [ { "name": "value", @@ -17886,7 +19736,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058373 + "hash": 2991231410 }, { "name": "find", @@ -17894,7 +19744,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1760645412, "arguments": [ { "name": "value", @@ -17913,7 +19763,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1760645412, "arguments": [ { "name": "value", @@ -17932,7 +19782,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 4, + "hash": 2920860731, "arguments": [ { "name": "value", @@ -18019,7 +19869,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -18027,14 +19877,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 5, + "hash": 635767250, "arguments": [ { "name": "index", @@ -18052,7 +19902,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 5, + "hash": 4188891560, "arguments": [ { "name": "value", @@ -18066,7 +19916,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 5, + "hash": 4188891560, "arguments": [ { "name": "value", @@ -18079,7 +19929,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 32, + "hash": 3887534835, "arguments": [ { "name": "array", @@ -18092,7 +19942,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -18106,7 +19956,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 5, + "hash": 2225629369, "arguments": [ { "name": "at_index", @@ -18123,7 +19973,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 5, + "hash": 3790411178, "arguments": [ { "name": "value", @@ -18137,7 +19987,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -18151,7 +20001,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 3190634762, "arguments": [ { "name": "value", @@ -18164,7 +20014,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -18172,7 +20022,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3864005350, "arguments": [ { "name": "begin", @@ -18191,14 +20041,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -18206,7 +20056,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 3778035805, "arguments": [ { "name": "value", @@ -18225,7 +20075,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058406 + "hash": 3763646812 }, { "name": "find", @@ -18233,7 +20083,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1469606149, "arguments": [ { "name": "value", @@ -18252,7 +20102,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 1469606149, "arguments": [ { "name": "value", @@ -18271,7 +20121,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 5, + "hash": 2798848307, "arguments": [ { "name": "value", @@ -18358,7 +20208,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -18366,14 +20216,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 9, + "hash": 3975343409, "arguments": [ { "name": "index", @@ -18391,7 +20241,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 9, + "hash": 3295363524, "arguments": [ { "name": "value", @@ -18405,7 +20255,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 9, + "hash": 3295363524, "arguments": [ { "name": "value", @@ -18418,7 +20268,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 33, + "hash": 203538016, "arguments": [ { "name": "array", @@ -18431,7 +20281,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -18445,7 +20295,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 9, + "hash": 3892262309, "arguments": [ { "name": "at_index", @@ -18462,7 +20312,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 9, + "hash": 3726392409, "arguments": [ { "name": "value", @@ -18476,7 +20326,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -18490,7 +20340,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 1749054343, "arguments": [ { "name": "value", @@ -18503,7 +20353,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -18511,7 +20361,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2086131305, "arguments": [ { "name": "begin", @@ -18530,14 +20380,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -18545,7 +20395,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 219263630, "arguments": [ { "name": "value", @@ -18564,7 +20414,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058439 + "hash": 2754175465 }, { "name": "find", @@ -18572,7 +20422,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3718155780, "arguments": [ { "name": "value", @@ -18591,7 +20441,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3718155780, "arguments": [ { "name": "value", @@ -18610,7 +20460,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 9, + "hash": 194580386, "arguments": [ { "name": "value", @@ -18692,7 +20542,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192809 + "hash": 3173160232 }, { "name": "is_empty", @@ -18700,14 +20550,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171192776 + "hash": 3918633141 }, { "name": "set", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 17, + "hash": 1444096570, "arguments": [ { "name": "index", @@ -18725,7 +20575,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 17, + "hash": 1007858200, "arguments": [ { "name": "value", @@ -18739,7 +20589,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 17, + "hash": 1007858200, "arguments": [ { "name": "value", @@ -18752,7 +20602,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 34, + "hash": 798822497, "arguments": [ { "name": "array", @@ -18765,7 +20615,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 2823966027, "arguments": [ { "name": "index", @@ -18779,7 +20629,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 17, + "hash": 785289703, "arguments": [ { "name": "at_index", @@ -18796,7 +20646,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 17, + "hash": 3730314301, "arguments": [ { "name": "value", @@ -18810,7 +20660,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 2, + "hash": 848867239, "arguments": [ { "name": "new_size", @@ -18824,7 +20674,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 17, + "hash": 3167426256, "arguments": [ { "name": "value", @@ -18837,7 +20687,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "slice", @@ -18845,7 +20695,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 2451797139, "arguments": [ { "name": "begin", @@ -18864,14 +20714,14 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 171193601 + "hash": 247621236 }, { "name": "sort", "is_vararg": false, "is_const": false, "is_static": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bsearch", @@ -18879,7 +20729,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 1, + "hash": 314143821, "arguments": [ { "name": "value", @@ -18898,7 +20748,7 @@ "is_vararg": false, "is_const": false, "is_static": false, - "hash": 132058472 + "hash": 1011903421 }, { "name": "find", @@ -18906,7 +20756,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3156095363, "arguments": [ { "name": "value", @@ -18925,7 +20775,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 2, + "hash": 3156095363, "arguments": [ { "name": "value", @@ -18944,7 +20794,7 @@ "is_vararg": false, "is_const": true, "is_static": false, - "hash": 17, + "hash": 1682108616, "arguments": [ { "name": "value", @@ -18989,6 +20839,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_ECB_ENCRYPT", @@ -19020,7 +20871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 3167574919, "return_value": { "type": "enum::Error" }, @@ -19046,7 +20897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 527836100, "return_value": { "type": "PackedByteArray" }, @@ -19063,7 +20914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2115431945, "return_value": { "type": "PackedByteArray" } @@ -19074,7 +20925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -19131,10 +20982,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" } }, { @@ -19143,12 +20994,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3370185124, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "position", @@ -19168,7 +21019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -19176,7 +21027,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19186,12 +21037,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "position", @@ -19205,7 +21056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -19214,7 +21065,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19224,12 +21075,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "weight_scale", @@ -19244,12 +21095,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19259,7 +21110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -19267,7 +21118,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19277,15 +21128,15 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2865087369, "return_value": { - "type": "PackedInt32Array" + "type": "PackedInt64Array" }, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19295,7 +21146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -19306,12 +21157,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "disabled", @@ -19326,7 +21177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -19334,7 +21185,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19344,17 +21195,17 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3785370599, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "bidirectional", @@ -19369,17 +21220,22 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3785370599, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" + }, + { + "name": "bidirectional", + "type": "bool", + "default_value": "true" } ] }, @@ -19389,7 +21245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4063588998, "return_value": { "type": "bool" }, @@ -19397,12 +21253,17 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" + }, + { + "name": "bidirectional", + "type": "bool", + "default_value": "true" } ] }, @@ -19412,10 +21273,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" } }, { @@ -19424,10 +21285,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" } }, { @@ -19436,12 +21297,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "num_nodes", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19451,7 +21312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_closest_point", @@ -19459,10 +21320,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2300324924, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" }, "arguments": [ { @@ -19482,7 +21343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -19499,7 +21360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 281625055, "return_value": { "type": "PackedVector2Array" }, @@ -19507,12 +21368,12 @@ { "name": "from_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19522,20 +21383,20 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3404614526, "return_value": { - "type": "PackedInt32Array" + "type": "PackedInt64Array" }, "arguments": [ { "name": "from_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" } ] } @@ -19594,10 +21455,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" } }, { @@ -19606,12 +21467,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 2920922839, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "position", @@ -19631,7 +21492,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -19639,7 +21500,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19649,12 +21510,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "position", @@ -19668,7 +21529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -19677,7 +21538,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19687,12 +21548,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "weight_scale", @@ -19707,12 +21568,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19722,7 +21583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -19730,7 +21591,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19740,15 +21601,15 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2865087369, "return_value": { - "type": "PackedInt32Array" + "type": "PackedInt64Array" }, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19758,7 +21619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -19769,12 +21630,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "disabled", @@ -19789,7 +21650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -19797,7 +21658,7 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19807,17 +21668,17 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3785370599, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "bidirectional", @@ -19832,17 +21693,17 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3785370599, "arguments": [ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "bidirectional", @@ -19857,7 +21718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 4063588998, "return_value": { "type": "bool" }, @@ -19865,12 +21726,12 @@ { "name": "id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "bidirectional", @@ -19885,10 +21746,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" } }, { @@ -19897,10 +21758,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" } }, { @@ -19909,12 +21770,12 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "num_nodes", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19924,7 +21785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_closest_point", @@ -19932,10 +21793,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3241074317, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" }, "arguments": [ { @@ -19955,7 +21816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 192990374, "return_value": { "type": "Vector3" }, @@ -19972,7 +21833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 880819742, "return_value": { "type": "PackedVector3Array" }, @@ -19980,12 +21841,12 @@ { "name": "from_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" } ] }, @@ -19995,20 +21856,20 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3404614526, "return_value": { - "type": "PackedInt32Array" + "type": "PackedInt64Array" }, "arguments": [ { "name": "from_id", "type": "int", - "meta": "int32" + "meta": "int64" }, { "name": "to_id", "type": "int", - "meta": "int32" + "meta": "int64" } ] } @@ -20027,7 +21888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1856205918, "return_value": { "type": "Button" } @@ -20038,7 +21899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 566733104, "return_value": { "type": "Label" } @@ -20049,7 +21910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -20063,7 +21924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20074,7 +21935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -20088,7 +21949,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20099,7 +21960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474135307, + "hash": 4158837846, "return_value": { "type": "Button" }, @@ -20126,7 +21987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 242045556, "return_value": { "type": "Button" }, @@ -20143,7 +22004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "button", @@ -20157,7 +22018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "line_edit", @@ -20171,7 +22032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -20185,7 +22046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -20196,7 +22057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "autowrap", @@ -20210,10 +22071,35 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } + }, + { + "name": "set_ok_button_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_ok_button_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } } ], "signals": [ @@ -20234,6 +22120,13 @@ } ], "properties": [ + { + "type": "String", + "name": "ok_button_text", + "setter": "set_ok_button_text", + "getter": "get_ok_button_text", + "index": -1 + }, { "type": "String", "name": "dialog_text", @@ -20277,7 +22170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -20291,7 +22184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20320,7 +22213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -20334,7 +22227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20363,7 +22256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 905781144, "arguments": [ { "name": "sprite_frames", @@ -20377,7 +22270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3804851214, "return_value": { "type": "SpriteFrames" } @@ -20388,7 +22281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "animation", @@ -20402,7 +22295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -20413,7 +22306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "playing", @@ -20427,7 +22320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20438,7 +22331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 143531945, + "hash": 1975901163, "arguments": [ { "name": "anim", @@ -20458,7 +22351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_centered", @@ -20466,7 +22359,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "centered", @@ -20480,7 +22373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20491,7 +22384,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -20505,7 +22398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -20516,7 +22409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_h", @@ -20530,7 +22423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20541,7 +22434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_v", @@ -20555,7 +22448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20566,7 +22459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frame", @@ -20581,7 +22474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -20593,7 +22486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "speed_scale", @@ -20608,7 +22501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -20702,7 +22595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 905781144, "arguments": [ { "name": "sprite_frames", @@ -20716,7 +22609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3804851214, "return_value": { "type": "SpriteFrames" } @@ -20727,7 +22620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "animation", @@ -20741,7 +22634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -20752,7 +22645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133278119, + "hash": 1421762485, "arguments": [ { "name": "anim", @@ -20767,7 +22660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing", @@ -20775,7 +22668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20786,7 +22679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frame", @@ -20801,7 +22694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -20866,7 +22759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frames", @@ -20881,7 +22774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -20893,7 +22786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frame", @@ -20908,7 +22801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -20920,7 +22813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pause", @@ -20934,7 +22827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20945,7 +22838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "oneshot", @@ -20959,7 +22852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -20970,7 +22863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fps", @@ -20985,7 +22878,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -20997,7 +22890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "frame", @@ -21016,7 +22909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -21034,7 +22927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "frame", @@ -21054,7 +22947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -24699,6 +26592,7 @@ "enums": [ { "name": "TrackType", + "is_bitfield": false, "values": [ { "name": "TYPE_VALUE", @@ -24740,6 +26634,7 @@ }, { "name": "InterpolationType", + "is_bitfield": false, "values": [ { "name": "INTERPOLATION_NEAREST", @@ -24757,6 +26652,7 @@ }, { "name": "UpdateMode", + "is_bitfield": false, "values": [ { "name": "UPDATE_CONTINUOUS", @@ -24778,6 +26674,7 @@ }, { "name": "LoopMode", + "is_bitfield": false, "values": [ { "name": "LOOP_NONE", @@ -24795,6 +26692,7 @@ }, { "name": "HandleMode", + "is_bitfield": false, "values": [ { "name": "HANDLE_MODE_FREE", @@ -24814,7 +26712,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 2393815928, "return_value": { "type": "int", "meta": "int32" @@ -24838,7 +26736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "track_idx", @@ -24853,7 +26751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -24865,7 +26763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3445944217, "return_value": { "type": "enum::Animation.TrackType" }, @@ -24883,7 +26781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -24901,7 +26799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "track_idx", @@ -24920,7 +26818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 245376003, "return_value": { "type": "int", "meta": "int32" @@ -24942,7 +26840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "track_idx", @@ -24957,7 +26855,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "track_idx", @@ -24972,7 +26870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "track_idx", @@ -24992,7 +26890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "track_idx", @@ -25012,7 +26910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "track_idx", @@ -25031,7 +26929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -25049,7 +26947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "track_idx", @@ -25068,7 +26966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -25086,7 +26984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2540608232, "return_value": { "type": "int", "meta": "int32" @@ -25114,7 +27012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 4165004800, "return_value": { "type": "int", "meta": "int32" @@ -25142,7 +27040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2540608232, "return_value": { "type": "int", "meta": "int32" @@ -25170,7 +27068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1534913637, "return_value": { "type": "int", "meta": "int32" @@ -25199,7 +27097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 711530217, "arguments": [ { "name": "track_idx", @@ -25229,7 +27127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "track_idx", @@ -25249,7 +27147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "track_idx", @@ -25269,7 +27167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2060538656, "arguments": [ { "name": "track_idx", @@ -25293,7 +27191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "track_idx", @@ -25318,7 +27216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "track_idx", @@ -25343,7 +27241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -25367,7 +27265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -25386,7 +27284,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 678354945, "return_value": { "type": "Variant" }, @@ -25409,7 +27307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "double" @@ -25433,7 +27331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 2119071283, "return_value": { "type": "int", "meta": "int32" @@ -25462,7 +27360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4112932513, "arguments": [ { "name": "track_idx", @@ -25481,7 +27379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1530756894, "return_value": { "type": "enum::Animation.InterpolationType" }, @@ -25499,7 +27397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "track_idx", @@ -25518,7 +27416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -25536,7 +27434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -25554,7 +27452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2854058312, "arguments": [ { "name": "track_idx", @@ -25573,7 +27471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1440326473, "return_value": { "type": "enum::Animation.UpdateMode" }, @@ -25591,7 +27489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 139121918, "return_value": { "type": "PackedInt32Array" }, @@ -25619,7 +27517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 491147702, "return_value": { "type": "Variant" }, @@ -25642,7 +27540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 139121918, "return_value": { "type": "PackedInt32Array" }, @@ -25670,7 +27568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 351665558, "return_value": { "type": "StringName" }, @@ -25693,7 +27591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2345056839, "return_value": { "type": "Array" }, @@ -25716,7 +27614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1020396879, + "hash": 3919731513, "return_value": { "type": "int", "meta": "int32" @@ -25760,7 +27658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "track_idx", @@ -25785,7 +27683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 1028302688, "arguments": [ { "name": "track_idx", @@ -25815,7 +27713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 1028302688, "arguments": [ { "name": "track_idx", @@ -25845,7 +27743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -25869,7 +27767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3016396712, "return_value": { "type": "Vector2" }, @@ -25892,7 +27790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3016396712, "return_value": { "type": "Vector2" }, @@ -25915,7 +27813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1900462983, "return_value": { "type": "float", "meta": "float" @@ -25939,7 +27837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1552406093, + "hash": 3489962123, "return_value": { "type": "int", "meta": "int32" @@ -25979,7 +27877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3886397084, "arguments": [ { "name": "track_idx", @@ -26003,7 +27901,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "track_idx", @@ -26028,7 +27926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "track_idx", @@ -26053,7 +27951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 635277205, "return_value": { "type": "Resource" }, @@ -26076,7 +27974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -26100,7 +27998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -26124,7 +28022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 1049703175, "arguments": [ { "name": "track_idx", @@ -26154,7 +28052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -26178,7 +28076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 158676774, "return_value": { "type": "int", "meta": "int32" @@ -26206,7 +28104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 117615382, "arguments": [ { "name": "track_idx", @@ -26230,7 +28128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 351665558, "return_value": { "type": "StringName" }, @@ -26253,7 +28151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time_sec", @@ -26268,7 +28166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -26280,7 +28178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3155355575, "arguments": [ { "name": "loop_mode", @@ -26294,7 +28192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1988889481, "return_value": { "type": "enum::Animation.LoopMode" } @@ -26305,7 +28203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size_sec", @@ -26320,7 +28218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -26332,7 +28230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "copy_track", @@ -26340,7 +28238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 148001024, "arguments": [ { "name": "track_idx", @@ -26359,7 +28257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 39534237, + "hash": 1804059263, "arguments": [ { "name": "page_size", @@ -26424,7 +28322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1811855551, "return_value": { "type": "enum::Error" }, @@ -26445,7 +28343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -26459,7 +28357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -26477,7 +28375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -26494,7 +28392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2933122410, "return_value": { "type": "Animation" }, @@ -26511,7 +28409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -26523,7 +28421,7 @@ "arguments": [ { "name": "name", - "type": "Animation" + "type": "StringName" } ] }, @@ -26532,7 +28430,7 @@ "arguments": [ { "name": "name", - "type": "Animation" + "type": "StringName" } ] }, @@ -26541,11 +28439,11 @@ "arguments": [ { "name": "name", - "type": "Animation" + "type": "StringName" }, { "name": "to_name", - "type": "Animation" + "type": "StringName" } ] } @@ -26560,6 +28458,7 @@ "enums": [ { "name": "FilterAction", + "is_bitfield": false, "values": [ { "name": "FILTER_IGNORE", @@ -26683,7 +28582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -26695,7 +28594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 990163283, "return_value": { "type": "String" }, @@ -26713,7 +28612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -26727,7 +28626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -26742,7 +28641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3868023870, "arguments": [ { "name": "path", @@ -26760,7 +28659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 861721659, "return_value": { "type": "bool" }, @@ -26777,7 +28676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -26791,7 +28690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -26802,7 +28701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 140393645, + "hash": 592042552, "arguments": [ { "name": "animation", @@ -26845,7 +28744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1669812272, + "hash": 308530085, "return_value": { "type": "float", "meta": "double" @@ -26883,7 +28782,7 @@ "default_value": "0" }, { - "name": "optimize", + "name": "sync", "type": "bool", "default_value": "true" } @@ -26895,7 +28794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1630676879, + "hash": 1365393708, "return_value": { "type": "float", "meta": "double" @@ -26930,7 +28829,7 @@ "default_value": "0" }, { - "name": "optimize", + "name": "sync", "type": "bool", "default_value": "true" } @@ -26942,7 +28841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "name", @@ -26960,7 +28859,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -27001,87 +28900,15 @@ "name": "AnimationNodeAdd2", "is_refcounted": true, "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync", - "index": -1 - } - ] + "inherits": "AnimationNodeSync", + "api_type": "core" }, { "name": "AnimationNodeAdd3", "is_refcounted": true, "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync", - "index": -1 - } - ] + "inherits": "AnimationNodeSync", + "api_type": "core" }, { "name": "AnimationNodeAnimation", @@ -27092,6 +28919,7 @@ "enums": [ { "name": "PlayMode", + "is_bitfield": false, "values": [ { "name": "PLAY_MODE_FORWARD", @@ -27111,7 +28939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -27125,7 +28953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -27136,7 +28964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3347718873, "arguments": [ { "name": "mode", @@ -27150,7 +28978,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2061244637, "return_value": { "type": "enum::AnimationNodeAnimation.PlayMode" } @@ -27177,87 +29005,15 @@ "name": "AnimationNodeBlend2", "is_refcounted": true, "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync", - "index": -1 - } - ] + "inherits": "AnimationNodeSync", + "api_type": "core" }, { "name": "AnimationNodeBlend3", "is_refcounted": true, "is_instantiable": true, - "inherits": "AnimationNode", - "api_type": "core", - "methods": [ - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } - } - ], - "properties": [ - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync", - "index": -1 - } - ] + "inherits": "AnimationNodeSync", + "api_type": "core" }, { "name": "AnimationNodeBlendSpace1D", @@ -27272,7 +29028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 4069484420, "arguments": [ { "name": "node", @@ -27297,7 +29053,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "point", @@ -27317,7 +29073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -27336,7 +29092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4240341528, "arguments": [ { "name": "point", @@ -27355,7 +29111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 665599029, "return_value": { "type": "AnimationRootNode" }, @@ -27373,7 +29129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "point", @@ -27388,7 +29144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -27400,7 +29156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "min_space", @@ -27415,7 +29171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -27427,7 +29183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_space", @@ -27442,7 +29198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -27454,7 +29210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "snap", @@ -27469,7 +29225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -27481,7 +29237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -27495,10 +29251,35 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } + }, + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } } ], "properties": [ @@ -28425,6 +30206,13 @@ "setter": "set_value_label", "getter": "get_value_label", "index": -1 + }, + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 } ] }, @@ -28437,6 +30225,7 @@ "enums": [ { "name": "BlendMode", + "is_bitfield": false, "values": [ { "name": "BLEND_MODE_INTERPOLATED", @@ -28460,7 +30249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1533588937, "arguments": [ { "name": "node", @@ -28484,7 +30273,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "point", @@ -28503,7 +30292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -28521,7 +30310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4240341528, "arguments": [ { "name": "point", @@ -28540,7 +30329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 665599029, "return_value": { "type": "AnimationRootNode" }, @@ -28558,7 +30347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "point", @@ -28573,7 +30362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -28585,7 +30374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 642454959, "arguments": [ { "name": "x", @@ -28616,7 +30405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 50157827, "return_value": { "type": "int", "meta": "int32" @@ -28640,7 +30429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "triangle", @@ -28655,7 +30444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -28667,7 +30456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "min_space", @@ -28681,7 +30470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -28692,7 +30481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "max_space", @@ -28706,7 +30495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -28717,7 +30506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "snap", @@ -28731,7 +30520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -28742,7 +30531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -28756,7 +30545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -28767,7 +30556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -28781,7 +30570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -28792,7 +30581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -28806,7 +30595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -28817,7 +30606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 81193520, "arguments": [ { "name": "mode", @@ -28831,10 +30620,35 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1398433632, "return_value": { "type": "enum::AnimationNodeBlendSpace2D.BlendMode" } + }, + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } } ], "signals": [ @@ -29794,6 +31608,13 @@ "setter": "set_blend_mode", "getter": "get_blend_mode", "index": -1 + }, + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 } ] }, @@ -29836,7 +31657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 2055804584, "arguments": [ { "name": "name", @@ -29859,7 +31680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 625644256, "return_value": { "type": "AnimationNode" }, @@ -29876,7 +31697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -29890,7 +31711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -29908,7 +31729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -29925,7 +31746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2168001410, "arguments": [ { "name": "input_node", @@ -29948,7 +31769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "input_node", @@ -29967,7 +31788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1999414630, "arguments": [ { "name": "name", @@ -29985,7 +31806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3100822709, "return_value": { "type": "Vector2" }, @@ -30002,7 +31823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -30016,7 +31837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -30036,11 +31857,12 @@ "name": "AnimationNodeOneShot", "is_refcounted": true, "is_instantiable": true, - "inherits": "AnimationNode", + "inherits": "AnimationNodeSync", "api_type": "core", "enums": [ { "name": "MixMode", + "is_bitfield": false, "values": [ { "name": "MIX_MODE_BLEND", @@ -30060,7 +31882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time", @@ -30075,7 +31897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30087,7 +31909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time", @@ -30102,7 +31924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30114,7 +31936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -30128,7 +31950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -30139,7 +31961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "enable", @@ -30154,7 +31976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30166,7 +31988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "enable", @@ -30181,7 +32003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30193,7 +32015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1018899799, "arguments": [ { "name": "mode", @@ -30207,35 +32029,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3076550526, "return_value": { "type": "enum::AnimationNodeOneShot.MixMode" } - }, - { - "name": "set_use_sync", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_using_sync", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } } ], "properties": [ @@ -30280,13 +32077,6 @@ "setter": "set_autorestart_random_delay", "getter": "get_autorestart_random_delay", "index": -1 - }, - { - "type": "bool", - "name": "sync", - "setter": "set_use_sync", - "getter": "is_using_sync", - "index": -1 } ] }, @@ -30310,7 +32100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 2055804584, "arguments": [ { "name": "name", @@ -30333,7 +32123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2559412862, "arguments": [ { "name": "name", @@ -30351,7 +32141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 625644256, "return_value": { "type": "AnimationNode" }, @@ -30368,7 +32158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -30382,7 +32172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -30400,7 +32190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -30417,7 +32207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 739213945, "return_value": { "type": "StringName" }, @@ -30434,7 +32224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1999414630, "arguments": [ { "name": "name", @@ -30452,7 +32242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3100822709, "return_value": { "type": "Vector2" }, @@ -30469,7 +32259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -30490,7 +32280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 795486887, "arguments": [ { "name": "from", @@ -30512,7 +32302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4192381260, "return_value": { "type": "AnimationNodeStateMachineTransition" }, @@ -30530,7 +32320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -30548,7 +32338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -30566,7 +32356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -30578,7 +32368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -30593,7 +32383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "from", @@ -30611,7 +32401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -30625,7 +32415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -30645,7 +32435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "to_node", @@ -30659,7 +32449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "node", @@ -30673,7 +32463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing", @@ -30681,7 +32471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -30692,7 +32482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -30703,7 +32493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30715,7 +32505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30727,7 +32517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -30743,6 +32533,7 @@ "enums": [ { "name": "SwitchMode", + "is_bitfield": false, "values": [ { "name": "SWITCH_MODE_IMMEDIATE", @@ -30766,7 +32557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2074906633, "arguments": [ { "name": "mode", @@ -30780,7 +32571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2138562085, "return_value": { "type": "enum::AnimationNodeStateMachineTransition.SwitchMode" } @@ -30791,7 +32582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "auto_advance", @@ -30805,7 +32596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -30816,7 +32607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -30830,7 +32621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -30841,7 +32632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -30856,7 +32647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -30868,7 +32659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disabled", @@ -30882,7 +32673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -30893,7 +32684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -30908,11 +32699,61 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" } + }, + { + "name": "set_advance_expression", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "text", + "type": "String" + } + ] + }, + { + "name": "get_advance_expression", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, + { + "name": "set_advance_expression_base_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1348162250, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_advance_expression_base_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4075236667, + "return_value": { + "type": "NodePath" + } } ], "signals": [ @@ -30921,6 +32762,20 @@ } ], "properties": [ + { + "type": "float", + "name": "xfade_time", + "setter": "set_xfade_time", + "getter": "get_xfade_time", + "index": -1 + }, + { + "type": "int", + "name": "priority", + "setter": "set_priority", + "getter": "get_priority", + "index": -1 + }, { "type": "int", "name": "switch_mode", @@ -30943,17 +32798,17 @@ "index": -1 }, { - "type": "float", - "name": "xfade_time", - "setter": "set_xfade_time", - "getter": "get_xfade_time", + "type": "String", + "name": "advance_expression", + "setter": "set_advance_expression", + "getter": "get_advance_expression", "index": -1 }, { - "type": "int", - "name": "priority", - "setter": "set_priority", - "getter": "get_priority", + "type": "NodePath", + "name": "advance_expression_base_node", + "setter": "set_advance_expression_base_node", + "getter": "get_advance_expression_base_node", "index": -1 }, { @@ -30965,6 +32820,49 @@ } ] }, + { + "name": "AnimationNodeSync", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "AnimationNode", + "api_type": "core", + "methods": [ + { + "name": "set_use_sync", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_using_sync", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "sync", + "setter": "set_use_sync", + "getter": "is_using_sync", + "index": -1 + } + ] + }, { "name": "AnimationNodeTimeScale", "is_refcounted": true, @@ -30983,7 +32881,7 @@ "name": "AnimationNodeTransition", "is_refcounted": true, "is_instantiable": true, - "inherits": "AnimationNode", + "inherits": "AnimationNodeSync", "api_type": "core", "methods": [ { @@ -30992,7 +32890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -31007,7 +32905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -31019,7 +32917,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "input", @@ -31038,7 +32936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -31056,7 +32954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "input", @@ -31075,7 +32973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -31093,7 +32991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time", @@ -31108,11 +33006,36 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } + }, + { + "name": "set_from_start", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "from_start", + "type": "bool" + } + ] + }, + { + "name": "is_from_start", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } } ], "properties": [ @@ -31130,6 +33053,13 @@ "getter": "get_cross_fade_time", "index": -1 }, + { + "type": "bool", + "name": "from_start", + "setter": "set_from_start", + "getter": "is_from_start", + "index": -1 + }, { "type": "String", "name": "input_0/name", @@ -31589,6 +33519,7 @@ "enums": [ { "name": "AnimationProcessCallback", + "is_bitfield": false, "values": [ { "name": "ANIMATION_PROCESS_PHYSICS", @@ -31606,6 +33537,7 @@ }, { "name": "AnimationMethodCallMode", + "is_bitfield": false, "values": [ { "name": "ANIMATION_METHOD_CALL_DEFERRED", @@ -31625,7 +33557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 618909818, "return_value": { "type": "enum::Error" }, @@ -31646,7 +33578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -31660,7 +33592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -31678,7 +33610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -31695,7 +33627,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 147342321, "return_value": { "type": "AnimationLibrary" }, @@ -31712,7 +33644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -31723,7 +33655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -31740,7 +33672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2933122410, "return_value": { "type": "Animation" }, @@ -31757,7 +33689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -31768,7 +33700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "anim_from", @@ -31786,7 +33718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965194235, "return_value": { "type": "StringName" }, @@ -31803,7 +33735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3231131886, "arguments": [ { "name": "anim_from", @@ -31826,7 +33758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1958752504, "return_value": { "type": "float", "meta": "float" @@ -31848,7 +33780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sec", @@ -31863,7 +33795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -31875,7 +33807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1002166806, + "hash": 2221377757, "arguments": [ { "name": "name", @@ -31907,7 +33839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 313699832, + "hash": 2787282401, "arguments": [ { "name": "name", @@ -31928,7 +33860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133279208, + "hash": 3216645846, "arguments": [ { "name": "reset", @@ -31943,7 +33875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -31954,7 +33886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "anim", @@ -31968,7 +33900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -31979,7 +33911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "anim", @@ -31993,7 +33925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -32004,7 +33936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -32018,7 +33950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2981934095, "return_value": { "type": "PackedStringArray" } @@ -32029,7 +33961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_active", @@ -32037,7 +33969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -32051,7 +33983,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -32062,7 +33994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "speed", @@ -32077,7 +34009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32089,7 +34021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32101,7 +34033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -32115,7 +34047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -32126,7 +34058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -32140,7 +34072,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -32151,7 +34083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -32165,7 +34097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -32176,7 +34108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1559484580, "return_value": { "type": "StringName" }, @@ -32193,7 +34125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1559484580, "return_value": { "type": "StringName" }, @@ -32210,7 +34142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_process_callback", @@ -32218,7 +34150,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1663839457, "arguments": [ { "name": "mode", @@ -32232,7 +34164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4207496604, "return_value": { "type": "enum::AnimationPlayer.AnimationProcessCallback" } @@ -32243,7 +34175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3413514846, "arguments": [ { "name": "mode", @@ -32257,18 +34189,43 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3583380054, "return_value": { "type": "enum::AnimationPlayer.AnimationMethodCallMode" } }, + { + "name": "set_movie_quit_on_finish_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "arg0", + "type": "bool" + } + ] + }, + { + "name": "is_movie_quit_on_finish_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, { "name": "get_current_animation_position", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32280,7 +34237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32292,7 +34249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2087892650, "arguments": [ { "name": "seconds", @@ -32312,7 +34269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "delta", @@ -32442,6 +34399,13 @@ "setter": "set_method_call_mode", "getter": "get_method_call_mode", "index": -1 + }, + { + "type": "bool", + "name": "movie_quit_on_finish", + "setter": "set_movie_quit_on_finish_enabled", + "getter": "is_movie_quit_on_finish_enabled", + "index": -1 } ] }, @@ -32468,6 +34432,7 @@ "enums": [ { "name": "AnimationProcessCallback", + "is_bitfield": false, "values": [ { "name": "ANIMATION_PROCESS_PHYSICS", @@ -32491,7 +34456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -32505,7 +34470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -32516,7 +34481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 712869711, "arguments": [ { "name": "root", @@ -32530,7 +34495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1462070895, "return_value": { "type": "AnimationNode" } @@ -32541,7 +34506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1723352826, "arguments": [ { "name": "mode", @@ -32555,7 +34520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 891317132, "return_value": { "type": "enum::AnimationTree.AnimationProcessCallback" } @@ -32566,7 +34531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "root", @@ -32580,7 +34545,32 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_advance_expression_base_node", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1348162250, + "arguments": [ + { + "name": "node", + "type": "NodePath" + } + ] + }, + { + "name": "get_advance_expression_base_node", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -32591,7 +34581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -32605,7 +34595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -32616,7 +34606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -32627,7 +34617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3186203200, "arguments": [ { "name": "old_name", @@ -32645,7 +34635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "delta", @@ -32670,6 +34660,13 @@ "getter": "get_animation_player", "index": -1 }, + { + "type": "NodePath", + "name": "advance_expression_base_node", + "setter": "set_advance_expression_base_node", + "getter": "get_advance_expression_base_node", + "index": -1 + }, { "type": "bool", "name": "active", @@ -32702,6 +34699,7 @@ "enums": [ { "name": "SpaceOverride", + "is_bitfield": false, "values": [ { "name": "SPACE_OVERRIDE_DISABLED", @@ -32733,7 +34731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2879900038, "arguments": [ { "name": "space_override_mode", @@ -32747,7 +34745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3990256304, "return_value": { "type": "enum::Area2D.SpaceOverride" } @@ -32758,7 +34756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -32772,7 +34770,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -32783,7 +34781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance_scale", @@ -32798,7 +34796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32810,7 +34808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "center", @@ -32824,7 +34822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -32835,7 +34833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "direction", @@ -32849,7 +34847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -32860,7 +34858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gravity", @@ -32875,7 +34873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32887,7 +34885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2879900038, "arguments": [ { "name": "space_override_mode", @@ -32901,7 +34899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3990256304, "return_value": { "type": "enum::Area2D.SpaceOverride" } @@ -32912,7 +34910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2879900038, "arguments": [ { "name": "space_override_mode", @@ -32926,7 +34924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3990256304, "return_value": { "type": "enum::Area2D.SpaceOverride" } @@ -32937,7 +34935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "linear_damp", @@ -32952,7 +34950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32964,7 +34962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angular_damp", @@ -32979,7 +34977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -32991,7 +34989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "priority", @@ -33006,7 +35004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33018,7 +35016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33032,7 +35030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33043,7 +35041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33057,7 +35055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33068,7 +35066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -33079,7 +35077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -33090,7 +35088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -33107,7 +35105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -33124,7 +35122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -33138,7 +35136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -33149,7 +35147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33163,7 +35161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33408,6 +35406,7 @@ "enums": [ { "name": "SpaceOverride", + "is_bitfield": false, "values": [ { "name": "SPACE_OVERRIDE_DISABLED", @@ -33439,7 +35438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2311433571, "arguments": [ { "name": "space_override_mode", @@ -33453,7 +35452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 958191869, "return_value": { "type": "enum::Area3D.SpaceOverride" } @@ -33464,7 +35463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33478,7 +35477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33489,7 +35488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance_scale", @@ -33504,7 +35503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33516,7 +35515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "center", @@ -33530,7 +35529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -33541,7 +35540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "direction", @@ -33555,7 +35554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -33566,7 +35565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gravity", @@ -33581,7 +35580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33593,7 +35592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2311433571, "arguments": [ { "name": "space_override_mode", @@ -33607,7 +35606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 958191869, "return_value": { "type": "enum::Area3D.SpaceOverride" } @@ -33618,7 +35617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2311433571, "arguments": [ { "name": "space_override_mode", @@ -33632,7 +35631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 958191869, "return_value": { "type": "enum::Area3D.SpaceOverride" } @@ -33643,7 +35642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angular_damp", @@ -33658,7 +35657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33670,7 +35669,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "linear_damp", @@ -33685,7 +35684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33697,7 +35696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "priority", @@ -33712,7 +35711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33724,7 +35723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "wind_force_magnitude", @@ -33739,7 +35738,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33751,7 +35750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "wind_attenuation_factor", @@ -33766,7 +35765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -33778,7 +35777,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "wind_source_path", @@ -33792,7 +35791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -33803,7 +35802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33817,7 +35816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33828,7 +35827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33842,7 +35841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33853,7 +35852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -33864,7 +35863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -33875,7 +35874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -33892,7 +35891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -33909,7 +35908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33923,7 +35922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33934,7 +35933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -33948,7 +35947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -33959,7 +35958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -33973,7 +35972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -33984,7 +35983,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -33998,7 +35997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -34009,7 +36008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -34024,7 +36023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -34036,7 +36035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -34051,7 +36050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -34350,7 +36349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -34364,7 +36363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -34376,7 +36375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -34394,7 +36393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3780747571, "arguments": [ { "name": "index", @@ -34413,7 +36412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_blend_shape_mode", @@ -34421,7 +36420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 227983991, "arguments": [ { "name": "mode", @@ -34435,7 +36434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 836485024, "return_value": { "type": "enum::Mesh.BlendShapeMode" } @@ -34446,7 +36445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 253563115, + "hash": 2970484840, "arguments": [ { "name": "primitive", @@ -34480,7 +36479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "surface_update_vertex_region", @@ -34488,7 +36487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3837166854, "arguments": [ { "name": "surf_idx", @@ -34512,7 +36511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3837166854, "arguments": [ { "name": "surf_idx", @@ -34536,7 +36535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3837166854, "arguments": [ { "name": "surf_idx", @@ -34560,7 +36559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -34579,7 +36578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -34598,7 +36597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -34617,7 +36616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4141943888, "return_value": { "type": "enum::Mesh.PrimitiveType" }, @@ -34635,7 +36634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int32" @@ -34653,7 +36652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "surf_idx", @@ -34672,7 +36671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -34690,7 +36689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "lightmap_unwrap", @@ -34698,7 +36697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1476641071, "return_value": { "type": "enum::Error" }, @@ -34720,7 +36719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 259215842, "arguments": [ { "name": "aabb", @@ -34734,7 +36733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -34745,7 +36744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3377897901, "arguments": [ { "name": "mesh", @@ -34759,7 +36758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3206942465, "return_value": { "type": "ArrayMesh" } @@ -34802,7 +36801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3233972621, "arguments": [ { "name": "vertices", @@ -34820,7 +36819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "vertices", @@ -34834,7 +36833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "indices", @@ -34869,6 +36868,7 @@ "enums": [ { "name": "StretchMode", + "is_bitfield": false, "values": [ { "name": "STRETCH_WIDTH_CONTROLS_HEIGHT", @@ -34890,6 +36890,7 @@ }, { "name": "AlignmentMode", + "is_bitfield": false, "values": [ { "name": "ALIGNMENT_BEGIN", @@ -34913,7 +36914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -34928,7 +36929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -34940,7 +36941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1876743467, "arguments": [ { "name": "stretch_mode", @@ -34954,7 +36955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416449033, "return_value": { "type": "enum::AspectRatioContainer.StretchMode" } @@ -34965,7 +36966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2147829016, "arguments": [ { "name": "alignment_horizontal", @@ -34979,7 +36980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3838875429, "return_value": { "type": "enum::AspectRatioContainer.AlignmentMode" } @@ -34990,7 +36991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2147829016, "arguments": [ { "name": "alignment_vertical", @@ -35004,7 +37005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3838875429, "return_value": { "type": "enum::AspectRatioContainer.AlignmentMode" } @@ -35054,7 +37055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "atlas", @@ -35068,7 +37069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -35079,7 +37080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "region", @@ -35093,7 +37094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -35104,7 +37105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "margin", @@ -35118,7 +37119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -35129,7 +37130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -35143,7 +37144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -35219,7 +37220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "volume", @@ -35234,7 +37235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -35278,7 +37279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -35296,7 +37297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2649534757, "return_value": { "type": "PackedVector2Array" }, @@ -35314,7 +37315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_buffer_length", @@ -35322,7 +37323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "buffer_length_seconds", @@ -35337,7 +37338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -35349,7 +37350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -35361,7 +37362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -35373,7 +37374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -35385,7 +37386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -35415,7 +37416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "voices", @@ -35430,7 +37431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -35442,7 +37443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "voice_idx", @@ -35462,7 +37463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -35481,7 +37482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "voice_idx", @@ -35501,7 +37502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -35520,7 +37521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "voice_idx", @@ -35540,7 +37541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -35559,7 +37560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "voice_idx", @@ -35579,7 +37580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -35598,7 +37599,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "voice_idx", @@ -35618,7 +37619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -35637,7 +37638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "voice_idx", @@ -35657,7 +37658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -35676,7 +37677,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -35691,7 +37692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -35703,7 +37704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -35718,7 +37719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -35930,7 +37931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "threshold", @@ -35945,7 +37946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -35957,7 +37958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -35972,7 +37973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -35984,7 +37985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gain", @@ -35999,7 +38000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36011,7 +38012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "attack_us", @@ -36026,7 +38027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36038,7 +38039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "release_ms", @@ -36053,7 +38054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36065,7 +38066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mix", @@ -36080,7 +38081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36092,7 +38093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "sidechain", @@ -36106,7 +38107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -36177,7 +38178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36192,7 +38193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -36204,7 +38205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "amount", @@ -36218,7 +38219,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -36229,7 +38230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36244,7 +38245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36256,7 +38257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36271,7 +38272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36283,7 +38284,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36298,7 +38299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36310,7 +38311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "amount", @@ -36324,7 +38325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -36335,7 +38336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36350,7 +38351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36362,7 +38363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36377,7 +38378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36389,7 +38390,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36404,7 +38405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36416,7 +38417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "amount", @@ -36430,7 +38431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -36441,7 +38442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36456,7 +38457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36468,7 +38469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36483,7 +38484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36495,7 +38496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36510,7 +38511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36620,6 +38621,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_CLIP", @@ -36651,7 +38653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1314744793, "arguments": [ { "name": "mode", @@ -36665,7 +38667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 809118343, "return_value": { "type": "enum::AudioEffectDistortion.Mode" } @@ -36676,7 +38678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pre_gain", @@ -36691,7 +38693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36703,7 +38705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "keep_hf_hz", @@ -36718,7 +38720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36730,7 +38732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "drive", @@ -36745,7 +38747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36757,7 +38759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "post_gain", @@ -36772,7 +38774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36830,7 +38832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "band_idx", @@ -36850,7 +38852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -36869,7 +38871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -36907,6 +38909,7 @@ "enums": [ { "name": "FilterDB", + "is_bitfield": false, "values": [ { "name": "FILTER_6DB", @@ -36934,7 +38937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "freq", @@ -36949,7 +38952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36961,7 +38964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -36976,7 +38979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -36988,7 +38991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -37003,7 +39006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37015,7 +39018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 771740901, "arguments": [ { "name": "amount", @@ -37029,7 +39032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3981721890, "return_value": { "type": "enum::AudioEffectFilter.FilterDB" } @@ -37133,7 +39136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ceiling", @@ -37148,7 +39151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37160,7 +39163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "threshold", @@ -37175,7 +39178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37187,7 +39190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "soft_clip", @@ -37202,7 +39205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37214,7 +39217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "soft_clip", @@ -37229,7 +39232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37301,7 +39304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "cpanume", @@ -37316,7 +39319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37346,7 +39349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "hz", @@ -37361,7 +39364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37373,7 +39376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "hz", @@ -37388,7 +39391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37400,7 +39403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "hz", @@ -37415,7 +39418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37427,7 +39430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fbk", @@ -37442,7 +39445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37454,7 +39457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "depth", @@ -37469,7 +39472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37523,6 +39526,7 @@ "enums": [ { "name": "FFTSize", + "is_bitfield": false, "values": [ { "name": "FFT_SIZE_256", @@ -37558,7 +39562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "rate", @@ -37573,7 +39577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37585,7 +39589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -37600,7 +39604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -37612,7 +39616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2323518741, "arguments": [ { "name": "size", @@ -37626,7 +39630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2361246789, "return_value": { "type": "enum::AudioEffectPitchShift.FFTSize" } @@ -37669,7 +39673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "record", @@ -37683,7 +39687,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -37694,11 +39698,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 60648488, "arguments": [ { "name": "format", - "type": "enum::AudioStreamSample.Format" + "type": "enum::AudioStreamWAV.Format" } ] }, @@ -37708,9 +39712,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3151724922, "return_value": { - "type": "enum::AudioStreamSample.Format" + "type": "enum::AudioStreamWAV.Format" } }, { @@ -37719,9 +39723,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2964110865, "return_value": { - "type": "AudioStreamSample" + "type": "AudioStreamWAV" } } ], @@ -37748,7 +39752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "msec", @@ -37763,7 +39767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37775,7 +39779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "feedback", @@ -37790,7 +39794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37802,7 +39806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -37817,7 +39821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37829,7 +39833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -37844,7 +39848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37856,7 +39860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -37871,7 +39875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37883,7 +39887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -37898,7 +39902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37910,7 +39914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -37925,7 +39929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -37937,7 +39941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -37952,7 +39956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -38027,6 +40031,7 @@ "enums": [ { "name": "FFTSize", + "is_bitfield": false, "values": [ { "name": "FFT_SIZE_256", @@ -38062,7 +40067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seconds", @@ -38077,7 +40082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -38089,7 +40094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seconds", @@ -38104,7 +40109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -38116,7 +40121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1202879215, "arguments": [ { "name": "size", @@ -38130,7 +40135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3925405343, "return_value": { "type": "enum::AudioEffectSpectrumAnalyzer.FFTSize" } @@ -38169,6 +40174,7 @@ "enums": [ { "name": "MagnitudeMode", + "is_bitfield": false, "values": [ { "name": "MAGNITUDE_AVERAGE", @@ -38188,7 +40194,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 2693213071, "return_value": { "type": "Vector2" }, @@ -38225,7 +40231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -38240,7 +40246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -38252,7 +40258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -38267,7 +40273,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -38279,7 +40285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -38294,7 +40300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -38338,7 +40344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_current", @@ -38346,7 +40352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_current", @@ -38354,7 +40360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -38374,7 +40380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_current", @@ -38382,7 +40388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_current", @@ -38390,7 +40396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -38401,7 +40407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -38417,6 +40423,7 @@ "enums": [ { "name": "SpeakerMode", + "is_bitfield": false, "values": [ { "name": "SPEAKER_MODE_STEREO", @@ -38444,7 +40451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -38459,7 +40466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -38471,7 +40478,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -38486,7 +40493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "at_position", @@ -38502,7 +40509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "index", @@ -38522,7 +40529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "bus_idx", @@ -38541,7 +40548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -38559,7 +40566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2458036349, "return_value": { "type": "int", "meta": "int32" @@ -38577,7 +40584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -38596,7 +40603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "bus_idx", @@ -38616,7 +40623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -38635,7 +40642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3780747571, "arguments": [ { "name": "bus_idx", @@ -38654,7 +40661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -38672,7 +40679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "bus_idx", @@ -38691,7 +40698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -38709,7 +40716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "bus_idx", @@ -38728,7 +40735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -38746,7 +40753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "bus_idx", @@ -38765,7 +40772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -38783,7 +40790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 4147765248, "arguments": [ { "name": "bus_idx", @@ -38808,7 +40815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "bus_idx", @@ -38828,7 +40835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -38847,7 +40854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 726064442, "return_value": { "type": "AudioEffect" }, @@ -38870,7 +40877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2887144608, "return_value": { "type": "AudioEffectInstance" }, @@ -38899,7 +40906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1649997291, "arguments": [ { "name": "bus_idx", @@ -38924,7 +40931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1383440665, "arguments": [ { "name": "bus_idx", @@ -38948,7 +40955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2522259332, "return_value": { "type": "bool" }, @@ -38971,7 +40978,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -38995,7 +41002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -39019,7 +41026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -39034,7 +41041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39046,7 +41053,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "unlock", @@ -39054,7 +41061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_speaker_mode", @@ -39062,7 +41069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2549190337, "return_value": { "type": "enum::AudioServer.SpeakerMode" } @@ -39073,7 +41080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39085,7 +41092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -39096,7 +41103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -39107,7 +41114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "device", @@ -39121,7 +41128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -39133,7 +41140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -39145,7 +41152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -39157,7 +41164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -39168,7 +41175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -39179,7 +41186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -39193,7 +41200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3319058824, "arguments": [ { "name": "bus_layout", @@ -39207,10 +41214,24 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3769973890, "return_value": { "type": "AudioBusLayout" } + }, + { + "name": "set_enable_tagging_used_audio_streams", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] } ], "signals": [ @@ -39257,7 +41278,7 @@ "api_type": "core", "methods": [ { - "name": "_instance_playback", + "name": "_instantiate_playback", "is_const": true, "is_static": false, "is_vararg": false, @@ -39296,13 +41317,33 @@ "type": "bool" } }, + { + "name": "_get_bpm", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "float" + } + }, + { + "name": "_get_beat_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, { "name": "get_length", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39314,18 +41355,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, { - "name": "instance_playback", + "name": "instantiate_playback", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 210135309, "return_value": { "type": "AudioStreamPlayback" } @@ -39345,7 +41386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "hz", @@ -39360,7 +41401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39372,7 +41413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seconds", @@ -39387,7 +41428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39424,7 +41465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3975407249, "return_value": { "type": "bool" }, @@ -39441,7 +41482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -39459,7 +41500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1361156557, "return_value": { "type": "bool" }, @@ -39476,7 +41517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -39488,7 +41529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -39500,7 +41541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -39517,7 +41558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2971499966, "arguments": [ { "name": "data", @@ -39531,7 +41572,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -39542,7 +41583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -39556,7 +41597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -39567,7 +41608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seconds", @@ -39582,11 +41623,92 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } + }, + { + "name": "set_bpm", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "bpm", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_bpm", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_beat_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_beat_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_bar_beats", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bar_beats", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } } ], "properties": [ @@ -39597,6 +41719,27 @@ "getter": "get_data", "index": -1 }, + { + "type": "float", + "name": "bpm", + "setter": "set_bpm", + "getter": "get_bpm", + "index": -1 + }, + { + "type": "int", + "name": "beat_count", + "setter": "set_beat_count", + "getter": "get_beat_count", + "index": -1 + }, + { + "type": "int", + "name": "bar_beats", + "setter": "set_bar_beats", + "getter": "get_bar_beats", + "index": -1 + }, { "type": "bool", "name": "loop", @@ -39621,7 +41764,7 @@ "api_type": "core" }, { - "name": "AudioStreamOGGVorbis", + "name": "AudioStreamOggVorbis", "is_refcounted": true, "is_instantiable": true, "inherits": "AudioStream", @@ -39633,11 +41776,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 438882457, "arguments": [ { "name": "packet_sequence", - "type": "OGGPacketSequence" + "type": "OggPacketSequence" } ] }, @@ -39647,9 +41790,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2801636033, "return_value": { - "type": "OGGPacketSequence" + "type": "OggPacketSequence" } }, { @@ -39658,7 +41801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -39672,7 +41815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -39683,7 +41826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seconds", @@ -39698,11 +41841,92 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } + }, + { + "name": "set_bpm", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "bpm", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_bpm", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "double" + } + }, + { + "name": "set_beat_count", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_beat_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_bar_beats", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "count", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bar_beats", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } } ], "properties": [ @@ -39713,6 +41937,27 @@ "getter": "get_packet_sequence", "index": -1 }, + { + "type": "float", + "name": "bpm", + "setter": "set_bpm", + "getter": "get_bpm", + "index": -1 + }, + { + "type": "int", + "name": "beat_count", + "setter": "set_beat_count", + "getter": "get_beat_count", + "index": -1 + }, + { + "type": "int", + "name": "bar_beats", + "setter": "set_bar_beats", + "getter": "get_bar_beats", + "index": -1 + }, { "type": "bool", "name": "loop", @@ -39822,11 +42067,18 @@ "type": "int" } ] + }, + { + "name": "_tag_used_streams", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true } ] }, { - "name": "AudioStreamPlaybackOGGVorbis", + "name": "AudioStreamPlaybackOggVorbis", "is_refcounted": true, "is_instantiable": true, "inherits": "AudioStreamPlaybackResampled", @@ -39875,7 +42127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -39888,6 +42140,7 @@ "enums": [ { "name": "MixTarget", + "is_bitfield": false, "values": [ { "name": "MIX_TARGET_STEREO", @@ -39911,7 +42164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2210767741, "arguments": [ { "name": "stream", @@ -39925,7 +42178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 160907539, "return_value": { "type": "AudioStream" } @@ -39936,7 +42189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "volume_db", @@ -39951,7 +42204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39963,7 +42216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pitch_scale", @@ -39978,7 +42231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -39990,7 +42243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2744538615, + "hash": 3041634712, "arguments": [ { "name": "from_position", @@ -40006,7 +42259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "to_position", @@ -40021,7 +42274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing", @@ -40029,7 +42282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -40040,7 +42293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -40052,7 +42305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "bus", @@ -40066,7 +42319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -40077,7 +42330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -40091,7 +42344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -40102,7 +42355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2300306138, "arguments": [ { "name": "mix_target", @@ -40116,7 +42369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 172807476, "return_value": { "type": "enum::AudioStreamPlayer.MixTarget" } @@ -40127,7 +42380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pause", @@ -40141,7 +42394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -40152,7 +42405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_polyphony", @@ -40167,7 +42420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -40179,7 +42432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 210135309, "return_value": { "type": "AudioStreamPlayback" } @@ -40269,7 +42522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2210767741, "arguments": [ { "name": "stream", @@ -40283,7 +42536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 160907539, "return_value": { "type": "AudioStream" } @@ -40294,7 +42547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "volume_db", @@ -40309,7 +42562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40321,7 +42574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pitch_scale", @@ -40336,7 +42589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40348,7 +42601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2744538615, + "hash": 3041634712, "arguments": [ { "name": "from_position", @@ -40364,7 +42617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "to_position", @@ -40379,7 +42632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing", @@ -40387,7 +42640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -40398,7 +42651,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -40410,7 +42663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "bus", @@ -40424,7 +42677,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -40435,7 +42688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -40449,7 +42702,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -40460,7 +42713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixels", @@ -40475,7 +42728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40487,7 +42740,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "curve", @@ -40502,7 +42755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40514,7 +42767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -40529,7 +42782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -40541,7 +42794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pause", @@ -40555,7 +42808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -40566,7 +42819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_polyphony", @@ -40581,19 +42834,46 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" } }, + { + "name": "set_panning_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "panning_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_panning_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "get_stream_playback", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 210135309, "return_value": { "type": "AudioStreamPlayback" } @@ -40668,6 +42948,13 @@ "getter": "get_max_polyphony", "index": -1 }, + { + "type": "float", + "name": "panning_strength", + "setter": "set_panning_strength", + "getter": "get_panning_strength", + "index": -1 + }, { "type": "StringName", "name": "bus", @@ -40693,6 +42980,7 @@ "enums": [ { "name": "AttenuationModel", + "is_bitfield": false, "values": [ { "name": "ATTENUATION_INVERSE_DISTANCE", @@ -40714,6 +43002,7 @@ }, { "name": "DopplerTracking", + "is_bitfield": false, "values": [ { "name": "DOPPLER_TRACKING_DISABLED", @@ -40737,7 +43026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2210767741, "arguments": [ { "name": "stream", @@ -40751,7 +43040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 160907539, "return_value": { "type": "AudioStream" } @@ -40762,7 +43051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "unit_db", @@ -40777,7 +43066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40789,7 +43078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "unit_size", @@ -40804,7 +43093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40816,7 +43105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_db", @@ -40831,7 +43120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40843,7 +43132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pitch_scale", @@ -40858,7 +43147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -40870,7 +43159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2744538615, + "hash": 3041634712, "arguments": [ { "name": "from_position", @@ -40886,7 +43175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "to_position", @@ -40901,7 +43190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing", @@ -40909,7 +43198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -40920,7 +43209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -40932,7 +43221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "bus", @@ -40946,7 +43235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -40957,7 +43246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -40971,7 +43260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -40982,7 +43271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "metres", @@ -40997,7 +43286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41009,7 +43298,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -41024,7 +43313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -41036,7 +43325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -41051,7 +43340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41063,7 +43352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -41077,7 +43366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -41088,7 +43377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "db", @@ -41103,7 +43392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41115,7 +43404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -41130,7 +43419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41142,7 +43431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "db", @@ -41157,7 +43446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41169,7 +43458,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2988086229, "arguments": [ { "name": "model", @@ -41183,7 +43472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3035106060, "return_value": { "type": "enum::AudioStreamPlayer3D.AttenuationModel" } @@ -41194,7 +43483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3968161450, "arguments": [ { "name": "mode", @@ -41208,7 +43497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1702418664, "return_value": { "type": "enum::AudioStreamPlayer3D.DopplerTracking" } @@ -41219,7 +43508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pause", @@ -41233,7 +43522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -41244,7 +43533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_polyphony", @@ -41259,19 +43548,46 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" } }, + { + "name": "set_panning_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "panning_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_panning_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "get_stream_playback", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 210135309, "return_value": { "type": "AudioStreamPlayback" } @@ -41360,6 +43676,13 @@ "getter": "get_max_polyphony", "index": -1 }, + { + "type": "float", + "name": "panning_strength", + "setter": "set_panning_strength", + "getter": "get_panning_strength", + "index": -1 + }, { "type": "StringName", "name": "bus", @@ -41427,6 +43750,7 @@ "enums": [ { "name": "PlaybackMode", + "is_bitfield": false, "values": [ { "name": "PLAYBACK_RANDOM_NO_REPEATS", @@ -41450,7 +43774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -41465,7 +43789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "index_from", @@ -41485,7 +43809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -41500,7 +43824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 111075094, "arguments": [ { "name": "index", @@ -41519,7 +43843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2739380747, "return_value": { "type": "AudioStream" }, @@ -41537,7 +43861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "index", @@ -41557,7 +43881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -41576,7 +43900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -41591,7 +43915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -41603,7 +43927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -41618,7 +43942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41630,7 +43954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "db_offset", @@ -41645,7 +43969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -41657,7 +43981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3950967023, "arguments": [ { "name": "mode", @@ -41671,7 +43995,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3943055077, "return_value": { "type": "enum::AudioStreamRandomizer.PlaybackMode" } @@ -41716,7 +44040,7 @@ ] }, { - "name": "AudioStreamSample", + "name": "AudioStreamWAV", "is_refcounted": true, "is_instantiable": true, "inherits": "AudioStream", @@ -41724,6 +44048,7 @@ "enums": [ { "name": "Format", + "is_bitfield": false, "values": [ { "name": "FORMAT_8_BITS", @@ -41741,6 +44066,7 @@ }, { "name": "LoopMode", + "is_bitfield": false, "values": [ { "name": "LOOP_DISABLED", @@ -41768,7 +44094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2971499966, "arguments": [ { "name": "data", @@ -41782,7 +44108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -41793,11 +44119,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 60648488, "arguments": [ { "name": "format", - "type": "enum::AudioStreamSample.Format" + "type": "enum::AudioStreamWAV.Format" } ] }, @@ -41807,9 +44133,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3151724922, "return_value": { - "type": "enum::AudioStreamSample.Format" + "type": "enum::AudioStreamWAV.Format" } }, { @@ -41818,11 +44144,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2444882972, "arguments": [ { "name": "loop_mode", - "type": "enum::AudioStreamSample.LoopMode" + "type": "enum::AudioStreamWAV.LoopMode" } ] }, @@ -41832,9 +44158,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 393560655, "return_value": { - "type": "enum::AudioStreamSample.LoopMode" + "type": "enum::AudioStreamWAV.LoopMode" } }, { @@ -41843,7 +44169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "loop_begin", @@ -41858,7 +44184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -41870,7 +44196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "loop_end", @@ -41885,7 +44211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -41897,7 +44223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mix_rate", @@ -41912,7 +44238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -41924,7 +44250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "stereo", @@ -41938,7 +44264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -41949,7 +44275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -42022,6 +44348,7 @@ "enums": [ { "name": "CopyMode", + "is_bitfield": false, "values": [ { "name": "COPY_MODE_DISABLED", @@ -42045,7 +44372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "rect", @@ -42059,7 +44386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -42070,7 +44397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1713538590, "arguments": [ { "name": "copy_mode", @@ -42084,7 +44411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3271169440, "return_value": { "type": "enum::BackBufferCopy.CopyMode" } @@ -42116,6 +44443,7 @@ "enums": [ { "name": "DrawMode", + "is_bitfield": false, "values": [ { "name": "DRAW_NORMAL", @@ -42141,6 +44469,7 @@ }, { "name": "ActionMode", + "is_bitfield": false, "values": [ { "name": "ACTION_MODE_BUTTON_PRESS", @@ -42180,7 +44509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -42194,7 +44523,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -42205,7 +44534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -42219,7 +44548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -42230,7 +44559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -42244,7 +44573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -42255,7 +44584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -42269,7 +44598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -42280,7 +44609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disabled", @@ -42294,7 +44623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -42305,7 +44634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1985162088, "arguments": [ { "name": "mode", @@ -42319,7 +44648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2589712189, "return_value": { "type": "enum::BaseButton.ActionMode" } @@ -42330,7 +44659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3624991109, "arguments": [ { "name": "mask", @@ -42344,7 +44673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1132662608, "return_value": { "type": "enum::MouseButton" } @@ -42355,7 +44684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2492721305, "return_value": { "type": "enum::BaseButton.DrawMode" } @@ -42366,7 +44695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -42380,7 +44709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -42391,7 +44720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 857163497, "arguments": [ { "name": "shortcut", @@ -42405,7 +44734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3415666916, "return_value": { "type": "Shortcut" } @@ -42416,7 +44745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1794463739, "arguments": [ { "name": "button_group", @@ -42430,7 +44759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 281644053, "return_value": { "type": "ButtonGroup" } @@ -42441,7 +44770,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -42455,7 +44784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -42563,6 +44892,7 @@ "enums": [ { "name": "TextureParam", + "is_bitfield": false, "values": [ { "name": "TEXTURE_ALBEDO", @@ -42644,6 +44974,7 @@ }, { "name": "TextureFilter", + "is_bitfield": false, "values": [ { "name": "TEXTURE_FILTER_NEAREST", @@ -42677,6 +45008,7 @@ }, { "name": "DetailUV", + "is_bitfield": false, "values": [ { "name": "DETAIL_UV_1", @@ -42690,6 +45022,7 @@ }, { "name": "Transparency", + "is_bitfield": false, "values": [ { "name": "TRANSPARENCY_DISABLED", @@ -42719,6 +45052,7 @@ }, { "name": "ShadingMode", + "is_bitfield": false, "values": [ { "name": "SHADING_MODE_UNSHADED", @@ -42740,6 +45074,7 @@ }, { "name": "Feature", + "is_bitfield": false, "values": [ { "name": "FEATURE_EMISSION", @@ -42797,6 +45132,7 @@ }, { "name": "BlendMode", + "is_bitfield": false, "values": [ { "name": "BLEND_MODE_MIX", @@ -42818,6 +45154,7 @@ }, { "name": "AlphaAntiAliasing", + "is_bitfield": false, "values": [ { "name": "ALPHA_ANTIALIASING_OFF", @@ -42835,6 +45172,7 @@ }, { "name": "DepthDrawMode", + "is_bitfield": false, "values": [ { "name": "DEPTH_DRAW_OPAQUE_ONLY", @@ -42852,6 +45190,7 @@ }, { "name": "CullMode", + "is_bitfield": false, "values": [ { "name": "CULL_BACK", @@ -42869,6 +45208,7 @@ }, { "name": "Flags", + "is_bitfield": false, "values": [ { "name": "FLAG_DISABLE_DEPTH_TEST", @@ -42962,6 +45302,7 @@ }, { "name": "DiffuseMode", + "is_bitfield": false, "values": [ { "name": "DIFFUSE_BURLEY", @@ -42983,6 +45324,7 @@ }, { "name": "SpecularMode", + "is_bitfield": false, "values": [ { "name": "SPECULAR_SCHLICK_GGX", @@ -43000,6 +45342,7 @@ }, { "name": "BillboardMode", + "is_bitfield": false, "values": [ { "name": "BILLBOARD_DISABLED", @@ -43021,6 +45364,7 @@ }, { "name": "TextureChannel", + "is_bitfield": false, "values": [ { "name": "TEXTURE_CHANNEL_RED", @@ -43046,6 +45390,7 @@ }, { "name": "EmissionOperator", + "is_bitfield": false, "values": [ { "name": "EMISSION_OP_ADD", @@ -43059,6 +45404,7 @@ }, { "name": "DistanceFadeMode", + "is_bitfield": false, "values": [ { "name": "DISTANCE_FADE_DISABLED", @@ -43086,7 +45432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "albedo", @@ -43100,7 +45446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -43111,7 +45457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3435651667, "arguments": [ { "name": "transparency", @@ -43125,7 +45471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 990903061, "return_value": { "type": "enum::BaseMaterial3D.Transparency" } @@ -43136,7 +45482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3212649852, "arguments": [ { "name": "alpha_aa", @@ -43150,7 +45496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2889939400, "return_value": { "type": "enum::BaseMaterial3D.AlphaAntiAliasing" } @@ -43161,7 +45507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "edge", @@ -43176,7 +45522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43188,7 +45534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3368750322, "arguments": [ { "name": "shading_mode", @@ -43202,7 +45548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2132070559, "return_value": { "type": "enum::BaseMaterial3D.ShadingMode" } @@ -43213,7 +45559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "specular", @@ -43228,7 +45574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43240,7 +45586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "metallic", @@ -43255,7 +45601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43267,7 +45613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "roughness", @@ -43282,7 +45628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43294,7 +45640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "emission", @@ -43308,7 +45654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -43319,7 +45665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "emission_energy", @@ -43334,7 +45680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43346,7 +45692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "normal_scale", @@ -43361,7 +45707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43373,7 +45719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "rim", @@ -43388,7 +45734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43400,7 +45746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "rim_tint", @@ -43415,7 +45761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43427,7 +45773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "clearcoat", @@ -43442,7 +45788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43454,7 +45800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "clearcoat_roughness", @@ -43469,7 +45815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43481,7 +45827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "anisotropy", @@ -43496,7 +45842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43508,7 +45854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "heightmap_scale", @@ -43523,7 +45869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43535,7 +45881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -43550,7 +45896,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43562,7 +45908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -43576,7 +45922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -43587,7 +45933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "depth", @@ -43602,7 +45948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43614,7 +45960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "boost", @@ -43629,7 +45975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43641,7 +45987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "backlight", @@ -43655,7 +46001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -43666,7 +46012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "refraction", @@ -43681,7 +46027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43693,7 +46039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "point_size", @@ -43708,7 +46054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -43720,7 +46066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 456801921, "arguments": [ { "name": "detail_uv", @@ -43734,7 +46080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2306920512, "return_value": { "type": "enum::BaseMaterial3D.DetailUV" } @@ -43745,7 +46091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2830186259, "arguments": [ { "name": "blend_mode", @@ -43759,7 +46105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4022690962, "return_value": { "type": "enum::BaseMaterial3D.BlendMode" } @@ -43770,7 +46116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1456584748, "arguments": [ { "name": "depth_draw_mode", @@ -43784,7 +46130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2578197639, "return_value": { "type": "enum::BaseMaterial3D.DepthDrawMode" } @@ -43795,7 +46141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2338909218, "arguments": [ { "name": "cull_mode", @@ -43809,7 +46155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1941499586, "return_value": { "type": "enum::BaseMaterial3D.CullMode" } @@ -43820,7 +46166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1045299638, "arguments": [ { "name": "diffuse_mode", @@ -43834,7 +46180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3973617136, "return_value": { "type": "enum::BaseMaterial3D.DiffuseMode" } @@ -43845,7 +46191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 584737147, "arguments": [ { "name": "specular_mode", @@ -43859,7 +46205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2569953298, "return_value": { "type": "enum::BaseMaterial3D.SpecularMode" } @@ -43870,7 +46216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3070159527, "arguments": [ { "name": "flag", @@ -43888,7 +46234,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1286410065, "return_value": { "type": "bool" }, @@ -43905,7 +46251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 22904437, "arguments": [ { "name": "mode", @@ -43919,7 +46265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3289213076, "return_value": { "type": "enum::BaseMaterial3D.TextureFilter" } @@ -43930,7 +46276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2819288693, "arguments": [ { "name": "feature", @@ -43948,7 +46294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965241794, "return_value": { "type": "bool" }, @@ -43965,7 +46311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 464208135, "arguments": [ { "name": "param", @@ -43983,7 +46329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 329605813, "return_value": { "type": "Texture2D" }, @@ -44000,7 +46346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2830186259, "arguments": [ { "name": "detail_blend_mode", @@ -44014,7 +46360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4022690962, "return_value": { "type": "enum::BaseMaterial3D.BlendMode" } @@ -44025,7 +46371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "scale", @@ -44039,7 +46385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -44050,7 +46396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -44064,7 +46410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -44075,7 +46421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sharpness", @@ -44090,7 +46436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44102,7 +46448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "scale", @@ -44116,7 +46462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -44127,7 +46473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -44141,7 +46487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -44152,7 +46498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sharpness", @@ -44167,7 +46513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44179,7 +46525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4202036497, "arguments": [ { "name": "mode", @@ -44193,7 +46539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1283840139, "return_value": { "type": "enum::BaseMaterial3D.BillboardMode" } @@ -44204,7 +46550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frames", @@ -44219,7 +46565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -44231,7 +46577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frames", @@ -44246,7 +46592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -44258,7 +46604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "loop", @@ -44272,7 +46618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -44283,7 +46629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -44297,7 +46643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -44308,7 +46654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -44323,7 +46669,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -44335,7 +46681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -44350,7 +46696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -44362,7 +46708,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip", @@ -44376,7 +46722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -44387,7 +46733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip", @@ -44401,7 +46747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -44412,7 +46758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -44427,7 +46773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44439,7 +46785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3825128922, "arguments": [ { "name": "operator", @@ -44453,7 +46799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 974205018, "return_value": { "type": "enum::BaseMaterial3D.EmissionOperator" } @@ -44464,7 +46810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -44479,7 +46825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44491,7 +46837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "threshold", @@ -44506,7 +46852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44518,7 +46864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "threshold", @@ -44533,7 +46879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44545,7 +46891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -44559,7 +46905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -44570,7 +46916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 744167988, "arguments": [ { "name": "channel", @@ -44584,7 +46930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 568133867, "return_value": { "type": "enum::BaseMaterial3D.TextureChannel" } @@ -44595,7 +46941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 744167988, "arguments": [ { "name": "channel", @@ -44609,7 +46955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 568133867, "return_value": { "type": "enum::BaseMaterial3D.TextureChannel" } @@ -44620,7 +46966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 744167988, "arguments": [ { "name": "channel", @@ -44634,7 +46980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 568133867, "return_value": { "type": "enum::BaseMaterial3D.TextureChannel" } @@ -44645,7 +46991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 744167988, "arguments": [ { "name": "channel", @@ -44659,7 +47005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 568133867, "return_value": { "type": "enum::BaseMaterial3D.TextureChannel" } @@ -44670,7 +47016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -44684,7 +47030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -44695,7 +47041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -44710,7 +47056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44722,7 +47068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "range", @@ -44737,7 +47083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44749,7 +47095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -44764,7 +47110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44776,7 +47122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1379478617, "arguments": [ { "name": "mode", @@ -44790,7 +47136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2694575734, "return_value": { "type": "enum::BaseMaterial3D.DistanceFadeMode" } @@ -44801,7 +47147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -44816,7 +47162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -44828,7 +47174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -44843,7 +47189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -45671,7 +48017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -45685,7 +48031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 505265891, "arguments": [ { "name": "image", @@ -45705,7 +48051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 979101055, "arguments": [ { "name": "position", @@ -45723,7 +48069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 556197845, "return_value": { "type": "bool" }, @@ -45740,7 +48086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1453796981, "arguments": [ { "name": "rect", @@ -45758,7 +48104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -45770,7 +48116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -45781,7 +48127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "new_size", @@ -45795,7 +48141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1356297692, "arguments": [ { "name": "pixels", @@ -45814,7 +48160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4190603485, "return_value": { "type": "Image" } @@ -45825,7 +48171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 88560356, "return_value": { "type": "Array" }, @@ -45866,7 +48212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "rest", @@ -45880,7 +48226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -45891,7 +48237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_skeleton_rest", @@ -45899,7 +48245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -45910,7 +48256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -45922,7 +48268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "default_length", @@ -45937,7 +48283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -45949,7 +48295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "auto_calculate", @@ -45963,7 +48309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -45974,7 +48320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -45989,7 +48335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -46001,7 +48347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angle", @@ -46016,7 +48362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -46046,7 +48392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "bone_name", @@ -46060,7 +48406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -46071,7 +48417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -46086,7 +48432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -46098,7 +48444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_index", @@ -46113,7 +48459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "override_pose", @@ -46127,7 +48473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -46138,7 +48484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "override_mode", @@ -46153,7 +48499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -46165,7 +48511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_external_skeleton", @@ -46179,7 +48525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -46190,7 +48536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "external_skeleton", @@ -46204,7 +48550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -46227,6 +48573,116 @@ } ] }, + { + "name": "BoneMap", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "get_profile", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4291782652, + "return_value": { + "type": "SkeletonProfile" + } + }, + { + "name": "set_profile", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3870374136, + "arguments": [ + { + "name": "profile", + "type": "SkeletonProfile" + } + ] + }, + { + "name": "get_skeleton_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1965194235, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "profile_bone_name", + "type": "StringName" + } + ] + }, + { + "name": "set_skeleton_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3740211285, + "arguments": [ + { + "name": "profile_bone_name", + "type": "StringName" + }, + { + "name": "skeleton_bone_name", + "type": "StringName" + } + ] + }, + { + "name": "find_profile_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1965194235, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "skeleton_bone_name", + "type": "StringName" + } + ] + } + ], + "signals": [ + { + "name": "bone_map_updated" + }, + { + "name": "profile_updated" + } + ], + "properties": [ + { + "type": "SkeletonProfile", + "name": "profile", + "setter": "set_profile", + "getter": "get_profile", + "index": -1 + }, + { + "type": "bonemap", + "name": "bonemap", + "setter": "", + "getter": "", + "index": -1 + } + ] + }, { "name": "BoxContainer", "is_refcounted": false, @@ -46236,6 +48692,7 @@ "enums": [ { "name": "AlignmentMode", + "is_bitfield": false, "values": [ { "name": "ALIGNMENT_BEGIN", @@ -46259,7 +48716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1326660695, "return_value": { "type": "Control" }, @@ -46276,7 +48733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1915476527, "return_value": { "type": "enum::BoxContainer.AlignmentMode" } @@ -46287,7 +48744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2456745134, "arguments": [ { "name": "alignment", @@ -46319,7 +48776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "size", @@ -46333,7 +48790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -46344,7 +48801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "subdivide", @@ -46359,7 +48816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -46371,7 +48828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "divisions", @@ -46386,7 +48843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -46398,7 +48855,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "divisions", @@ -46413,7 +48870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -46464,7 +48921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "size", @@ -46478,7 +48935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -46507,7 +48964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "size", @@ -46521,7 +48978,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -46550,7 +49007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -46564,18 +49021,43 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } }, + { + "name": "set_text_overrun_behavior", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1008890932, + "arguments": [ + { + "name": "overrun_behavior", + "type": "enum::TextServer.OverrunBehavior" + } + ] + }, + { + "name": "get_text_overrun_behavior", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3779142101, + "return_value": { + "type": "enum::TextServer.OverrunBehavior" + } + }, { "name": "set_text_direction", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -46589,63 +49071,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -46659,7 +49096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -46670,7 +49107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -46684,7 +49121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -46695,7 +49132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -46709,7 +49146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -46720,7 +49157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -46734,7 +49171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -46745,7 +49182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -46759,7 +49196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -46770,7 +49207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "icon_alignment", @@ -46784,7 +49221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -46795,7 +49232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -46809,7 +49246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -46823,20 +49260,6 @@ "getter": "get_text", "index": -1 }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction", - "index": -1 - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language", - "index": -1 - }, { "type": "Texture2D", "name": "icon", @@ -46865,6 +49288,13 @@ "getter": "get_text_alignment", "index": -1 }, + { + "type": "int", + "name": "text_overrun_behavior", + "setter": "set_text_overrun_behavior", + "getter": "get_text_overrun_behavior", + "index": -1 + }, { "type": "int", "name": "icon_alignment", @@ -46878,6 +49308,20 @@ "setter": "set_expand_icon", "getter": "is_expand_icon", "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 } ] }, @@ -46894,7 +49338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3886434893, "return_value": { "type": "BaseButton" } @@ -46905,7 +49349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -46932,6 +49376,7 @@ "enums": [ { "name": "DrawOrder", + "is_bitfield": false, "values": [ { "name": "DRAW_ORDER_INDEX", @@ -46945,6 +49390,7 @@ }, { "name": "Parameter", + "is_bitfield": false, "values": [ { "name": "PARAM_INITIAL_LINEAR_VELOCITY", @@ -47002,6 +49448,7 @@ }, { "name": "ParticleFlags", + "is_bitfield": false, "values": [ { "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", @@ -47023,6 +49470,7 @@ }, { "name": "EmissionShape", + "is_bitfield": false, "values": [ { "name": "EMISSION_SHAPE_POINT", @@ -47062,7 +49510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "emitting", @@ -47076,7 +49524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -47091,7 +49539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -47106,7 +49554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -47120,7 +49568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -47135,7 +49583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -47150,7 +49598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -47165,7 +49613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "random", @@ -47180,7 +49628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -47194,7 +49642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "fps", @@ -47209,7 +49657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -47223,7 +49671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -47238,7 +49686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -47249,7 +49697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -47261,7 +49709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -47273,7 +49721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -47284,7 +49732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -47296,7 +49744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -47308,7 +49756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -47320,7 +49768,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -47332,7 +49780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -47343,7 +49791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -47355,7 +49803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -47366,7 +49814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -47378,7 +49826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4183193490, "arguments": [ { "name": "order", @@ -47392,7 +49840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1668655735, "return_value": { "type": "enum::CPUParticles2D.DrawOrder" } @@ -47403,7 +49851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -47417,7 +49865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -47428,7 +49876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_direction", @@ -47436,7 +49884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "direction", @@ -47450,7 +49898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -47461,7 +49909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "spread", @@ -47476,7 +49924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -47488,7 +49936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3320615296, "arguments": [ { "name": "param", @@ -47507,7 +49955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2038050600, "return_value": { "type": "float", "meta": "float" @@ -47525,7 +49973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3320615296, "arguments": [ { "name": "param", @@ -47544,7 +49992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2038050600, "return_value": { "type": "float", "meta": "float" @@ -47562,7 +50010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2959350143, "arguments": [ { "name": "param", @@ -47580,7 +50028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2603158474, "return_value": { "type": "Curve" }, @@ -47597,7 +50045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -47611,7 +50059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -47622,7 +50070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "ramp", @@ -47636,7 +50084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -47647,7 +50095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "ramp", @@ -47661,7 +50109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -47672,7 +50120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4178137949, "arguments": [ { "name": "particle_flag", @@ -47690,7 +50138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2829976507, "return_value": { "type": "bool" }, @@ -47707,7 +50155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 393763892, "arguments": [ { "name": "shape", @@ -47721,7 +50169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740246024, "return_value": { "type": "enum::CPUParticles2D.EmissionShape" } @@ -47732,7 +50180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -47747,7 +50195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -47759,7 +50207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "extents", @@ -47773,7 +50221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -47784,7 +50232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "array", @@ -47798,7 +50246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -47809,7 +50257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "array", @@ -47823,7 +50271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -47834,7 +50282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3546319833, "arguments": [ { "name": "array", @@ -47848,7 +50296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1392750486, "return_value": { "type": "PackedColorArray" } @@ -47859,7 +50307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -47870,7 +50318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "accel_vec", @@ -47884,7 +50332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -47895,7 +50343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "split_scale", @@ -47909,7 +50357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -47920,7 +50368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "scale_curve", @@ -47934,7 +50382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -47945,7 +50393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "scale_curve", @@ -47959,7 +50407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "particles", @@ -48435,6 +50883,7 @@ "enums": [ { "name": "DrawOrder", + "is_bitfield": false, "values": [ { "name": "DRAW_ORDER_INDEX", @@ -48452,6 +50901,7 @@ }, { "name": "Parameter", + "is_bitfield": false, "values": [ { "name": "PARAM_INITIAL_LINEAR_VELOCITY", @@ -48509,6 +50959,7 @@ }, { "name": "ParticleFlags", + "is_bitfield": false, "values": [ { "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", @@ -48530,6 +50981,7 @@ }, { "name": "EmissionShape", + "is_bitfield": false, "values": [ { "name": "EMISSION_SHAPE_POINT", @@ -48573,7 +51025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "emitting", @@ -48587,7 +51039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -48602,7 +51054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -48617,7 +51069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -48631,7 +51083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -48646,7 +51098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -48661,7 +51113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -48676,7 +51128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "random", @@ -48691,7 +51143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -48705,7 +51157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "fps", @@ -48720,7 +51172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -48734,7 +51186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -48749,7 +51201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -48760,7 +51212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -48772,7 +51224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -48784,7 +51236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -48795,7 +51247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -48807,7 +51259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -48819,7 +51271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -48831,7 +51283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -48843,7 +51295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -48854,7 +51306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -48866,7 +51318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -48877,7 +51329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -48889,7 +51341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1427401774, "arguments": [ { "name": "order", @@ -48903,7 +51355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1321900776, "return_value": { "type": "enum::CPUParticles3D.DrawOrder" } @@ -48914,7 +51366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -48928,7 +51380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1808005922, "return_value": { "type": "Mesh" } @@ -48939,7 +51391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_direction", @@ -48947,7 +51399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "direction", @@ -48961,7 +51413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -48972,7 +51424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -48987,7 +51439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -48999,7 +51451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -49014,7 +51466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -49026,7 +51478,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 557936109, "arguments": [ { "name": "param", @@ -49045,7 +51497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 597646162, "return_value": { "type": "float", "meta": "float" @@ -49063,7 +51515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 557936109, "arguments": [ { "name": "param", @@ -49082,7 +51534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 597646162, "return_value": { "type": "float", "meta": "float" @@ -49100,7 +51552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4044142537, "arguments": [ { "name": "param", @@ -49118,7 +51570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4132790277, "return_value": { "type": "Curve" }, @@ -49135,7 +51587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -49149,7 +51601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -49160,7 +51612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "ramp", @@ -49174,7 +51626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -49185,7 +51637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "ramp", @@ -49199,7 +51651,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -49210,7 +51662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3515406498, "arguments": [ { "name": "particle_flag", @@ -49228,7 +51680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2845201987, "return_value": { "type": "bool" }, @@ -49245,7 +51697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 491823814, "arguments": [ { "name": "shape", @@ -49259,7 +51711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961454842, "return_value": { "type": "enum::CPUParticles3D.EmissionShape" } @@ -49270,7 +51722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -49285,7 +51737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -49297,7 +51749,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -49311,7 +51763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -49322,7 +51774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "array", @@ -49336,7 +51788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -49347,7 +51799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "array", @@ -49361,7 +51813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -49372,7 +51824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3546319833, "arguments": [ { "name": "array", @@ -49386,7 +51838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1392750486, "return_value": { "type": "PackedColorArray" } @@ -49397,7 +51849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "axis", @@ -49411,7 +51863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -49422,7 +51874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -49437,7 +51889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -49449,7 +51901,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -49464,7 +51916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -49476,7 +51928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "inner_radius", @@ -49491,7 +51943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -49503,7 +51955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -49514,7 +51966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "accel_vec", @@ -49528,7 +51980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -49539,7 +51991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "split_scale", @@ -49553,7 +52005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -49564,7 +52016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "scale_curve", @@ -49578,7 +52030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -49589,7 +52041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "scale_curve", @@ -49603,7 +52055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -49614,7 +52066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "scale_curve", @@ -49628,7 +52080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "particles", @@ -50164,7 +52616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "size", @@ -50178,7 +52630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -50189,7 +52641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -50203,7 +52655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -50246,7 +52698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -50261,7 +52713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50273,7 +52725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -50288,7 +52740,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50300,7 +52752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sides", @@ -50315,7 +52767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -50327,7 +52779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "cone", @@ -50341,7 +52793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -50352,7 +52804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -50366,7 +52818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -50377,7 +52829,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "smooth_faces", @@ -50391,7 +52843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -50455,7 +52907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -50469,7 +52921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4081188045, "return_value": { "type": "Mesh" } @@ -50480,7 +52932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -50494,7 +52946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -50526,6 +52978,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_DEPTH", @@ -50543,6 +52996,7 @@ }, { "name": "PathRotation", + "is_bitfield": false, "values": [ { "name": "PATH_ROTATION_POLYGON", @@ -50560,6 +53014,7 @@ }, { "name": "PathIntervalType", + "is_bitfield": false, "values": [ { "name": "PATH_INTERVAL_DISTANCE", @@ -50579,7 +53034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "polygon", @@ -50593,7 +53048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -50604,7 +53059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3158377035, "arguments": [ { "name": "mode", @@ -50618,7 +53073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1201612222, "return_value": { "type": "enum::CSGPolygon3D.Mode" } @@ -50629,7 +53084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "depth", @@ -50644,7 +53099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50656,7 +53111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -50671,7 +53126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50683,7 +53138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "spin_sides", @@ -50698,7 +53153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -50710,7 +53165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -50724,7 +53179,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -50735,7 +53190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3744240707, "arguments": [ { "name": "interval_type", @@ -50749,7 +53204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3434618397, "return_value": { "type": "enum::CSGPolygon3D.PathIntervalType" } @@ -50760,7 +53215,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "interval", @@ -50775,7 +53230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50787,7 +53242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -50802,7 +53257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50814,7 +53269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1412947288, "arguments": [ { "name": "path_rotation", @@ -50828,7 +53283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 647219346, "return_value": { "type": "enum::CSGPolygon3D.PathRotation" } @@ -50839,7 +53294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -50853,7 +53308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -50864,7 +53319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -50878,7 +53333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -50889,7 +53344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -50904,7 +53359,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -50916,7 +53371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -50930,7 +53385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -50941,7 +53396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -50955,7 +53410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -50966,7 +53421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "smooth_faces", @@ -50980,7 +53435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51114,7 +53569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_faces", @@ -51128,7 +53583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -51153,6 +53608,7 @@ "enums": [ { "name": "Operation", + "is_bitfield": false, "values": [ { "name": "OPERATION_UNION", @@ -51176,7 +53632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51187,7 +53643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 811425055, "arguments": [ { "name": "operation", @@ -51201,7 +53657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2662425879, "return_value": { "type": "enum::CSGShape3D.Operation" } @@ -51212,7 +53668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "snap", @@ -51227,7 +53683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -51239,7 +53695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "operation", @@ -51253,7 +53709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51264,7 +53720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -51279,7 +53735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -51291,7 +53747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -51306,7 +53762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -51318,7 +53774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -51337,7 +53793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -51355,7 +53811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -51374,7 +53830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -51392,7 +53848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -51406,7 +53862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51417,7 +53873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -51481,7 +53937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -51496,7 +53952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -51508,7 +53964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "radial_segments", @@ -51523,7 +53979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -51535,7 +53991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "rings", @@ -51550,7 +54006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -51562,7 +54018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "smooth_faces", @@ -51576,7 +54032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51587,7 +54043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -51601,7 +54057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -51658,7 +54114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -51673,7 +54129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -51685,7 +54141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -51700,7 +54156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -51712,7 +54168,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sides", @@ -51727,7 +54183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -51739,7 +54195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sides", @@ -51754,7 +54210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -51766,7 +54222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -51780,7 +54236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -51791,7 +54247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "smooth_faces", @@ -51805,7 +54261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51869,7 +54325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3008182292, "return_value": { "type": "CallbackTweener" }, @@ -51892,6 +54348,7 @@ "enums": [ { "name": "AnchorMode", + "is_bitfield": false, "values": [ { "name": "ANCHOR_MODE_FIXED_TOP_LEFT", @@ -51905,6 +54362,7 @@ }, { "name": "Camera2DProcessCallback", + "is_bitfield": false, "values": [ { "name": "CAMERA2D_PROCESS_PHYSICS", @@ -51924,7 +54382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -51938,7 +54396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -51949,7 +54407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2050398218, "arguments": [ { "name": "anchor_mode", @@ -51963,7 +54421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 155978067, "return_value": { "type": "enum::Camera2D.AnchorMode" } @@ -51974,7 +54432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "rotating", @@ -51988,7 +54446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -51999,7 +54457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4201947462, "arguments": [ { "name": "mode", @@ -52013,7 +54471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2325344499, "return_value": { "type": "enum::Camera2D.Camera2DProcessCallback" } @@ -52024,7 +54482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "current", @@ -52038,7 +54496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52049,7 +54507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 437707142, "arguments": [ { "name": "margin", @@ -52068,7 +54526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1983885014, "return_value": { "type": "int", "meta": "int32" @@ -52086,7 +54544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "limit_smoothing_enabled", @@ -52100,7 +54558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52111,7 +54569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -52125,7 +54583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52136,7 +54594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -52150,7 +54608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52161,7 +54619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -52176,7 +54634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -52188,7 +54646,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -52203,7 +54661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -52215,7 +54673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4290182280, "arguments": [ { "name": "margin", @@ -52234,7 +54692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -52252,7 +54710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -52263,7 +54721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -52274,7 +54732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "zoom", @@ -52288,7 +54746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -52299,7 +54757,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "viewport", @@ -52313,7 +54771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -52324,7 +54782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "follow_smoothing", @@ -52339,7 +54797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -52351,7 +54809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "follow_smoothing", @@ -52365,7 +54823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52376,7 +54834,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "reset_smoothing", @@ -52384,7 +54842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "align", @@ -52392,7 +54850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_screen_drawing_enabled", @@ -52400,7 +54858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "screen_drawing_enabled", @@ -52414,7 +54872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52425,7 +54883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "limit_drawing_enabled", @@ -52439,7 +54897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52450,7 +54908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "margin_drawing_enabled", @@ -52464,7 +54922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52656,7 +55114,8 @@ "api_type": "core", "enums": [ { - "name": "Projection", + "name": "ProjectionType", + "is_bitfield": false, "values": [ { "name": "PROJECTION_PERSPECTIVE", @@ -52674,6 +55133,7 @@ }, { "name": "KeepAspect", + "is_bitfield": false, "values": [ { "name": "KEEP_WIDTH", @@ -52687,6 +55147,7 @@ }, { "name": "DopplerTracking", + "is_bitfield": false, "values": [ { "name": "DOPPLER_TRACKING_DISABLED", @@ -52710,7 +55171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1718073306, "return_value": { "type": "Vector3" }, @@ -52727,7 +55188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1718073306, "return_value": { "type": "Vector3" }, @@ -52744,7 +55205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1718073306, "return_value": { "type": "Vector3" }, @@ -52761,7 +55222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3758901831, "return_value": { "type": "Vector2" }, @@ -52778,7 +55239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3108956480, "return_value": { "type": "bool" }, @@ -52795,7 +55256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2171975744, "return_value": { "type": "Vector3" }, @@ -52817,7 +55278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2385087082, "arguments": [ { "name": "fov", @@ -52842,7 +55303,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2385087082, "arguments": [ { "name": "size", @@ -52867,7 +55328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 354890663, "arguments": [ { "name": "size", @@ -52896,7 +55357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_current", @@ -52904,7 +55365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133279208, + "hash": 3216645846, "arguments": [ { "name": "enable_next", @@ -52919,7 +55380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -52933,7 +55394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -52944,7 +55405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -52955,7 +55416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -52967,7 +55428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -52978,7 +55439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -52990,7 +55451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53002,7 +55463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53014,7 +55475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fov", @@ -53029,7 +55490,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -53043,7 +55504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -53058,7 +55519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "far", @@ -53073,7 +55534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "near", @@ -53088,9 +55549,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2624185235, "return_value": { - "type": "enum::Camera3D.Projection" + "type": "enum::Camera3D.ProjectionType" } }, { @@ -53099,11 +55560,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4218540108, "arguments": [ { "name": "mode", - "type": "enum::Camera3D.Projection" + "type": "enum::Camera3D.ProjectionType" } ] }, @@ -53113,7 +55574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -53128,7 +55589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53140,7 +55601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -53155,7 +55616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53167,7 +55628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -53182,7 +55643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -53194,7 +55655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4143518816, "arguments": [ { "name": "env", @@ -53208,7 +55669,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3082064660, "return_value": { "type": "Environment" } @@ -53219,7 +55680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1711096158, "arguments": [ { "name": "env", @@ -53233,7 +55694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2213573967, "return_value": { "type": "CameraEffects" } @@ -53244,7 +55705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1740651252, "arguments": [ { "name": "mode", @@ -53258,7 +55719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2790278316, "return_value": { "type": "enum::Camera3D.KeepAspect" } @@ -53269,7 +55730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3109431270, "arguments": [ { "name": "mode", @@ -53283,7 +55744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1584483649, "return_value": { "type": "enum::Camera3D.DopplerTracking" } @@ -53294,7 +55755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -53305,7 +55766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3108956480, "return_value": { "type": "bool" }, @@ -53322,7 +55783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -53333,7 +55794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -53344,7 +55805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -53363,7 +55824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -53490,7 +55951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -53504,7 +55965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -53515,7 +55976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -53530,7 +55991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53542,7 +56003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -53557,7 +56018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53569,7 +56030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -53583,7 +56044,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -53594,7 +56055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -53609,7 +56070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53621,7 +56082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -53636,7 +56097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53648,7 +56109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -53663,7 +56124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53675,7 +56136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -53689,7 +56150,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -53700,7 +56161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure", @@ -53715,7 +56176,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -53797,6 +56258,7 @@ "enums": [ { "name": "FeedDataType", + "is_bitfield": false, "values": [ { "name": "FEED_NOIMAGE", @@ -53818,6 +56280,7 @@ }, { "name": "FeedPosition", + "is_bitfield": false, "values": [ { "name": "FEED_UNSPECIFIED", @@ -53841,7 +56304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -53853,7 +56316,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -53864,7 +56327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -53878,7 +56341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -53889,7 +56352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2711679033, "return_value": { "type": "enum::CameraFeed.FeedPosition" } @@ -53900,7 +56363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -53911,7 +56374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "transform", @@ -53925,7 +56388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1477782850, "return_value": { "type": "enum::CameraFeed.FeedDataType" } @@ -53957,6 +56420,7 @@ "enums": [ { "name": "FeedImage", + "is_bitfield": false, "values": [ { "name": "FEED_RGBA_IMAGE", @@ -53984,7 +56448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 361927068, "return_value": { "type": "CameraFeed" }, @@ -54002,7 +56466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -54014,7 +56478,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -54025,7 +56489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3204782488, "arguments": [ { "name": "feed", @@ -54039,7 +56503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3204782488, "arguments": [ { "name": "feed", @@ -54082,7 +56546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "feed_id", @@ -54097,7 +56561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -54109,7 +56573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1595299230, "arguments": [ { "name": "which_feed", @@ -54123,7 +56587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 91039457, "return_value": { "type": "enum::CameraServer.FeedImage" } @@ -54134,7 +56598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -54148,7 +56612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -54191,7 +56655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fit_margin", @@ -54206,7 +56670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -54218,7 +56682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "clear_margin", @@ -54233,7 +56697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -54245,7 +56709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_mipmaps", @@ -54259,7 +56723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -54324,6 +56788,7 @@ "enums": [ { "name": "TextureFilter", + "is_bitfield": false, "values": [ { "name": "TEXTURE_FILTER_PARENT_NODE", @@ -54361,6 +56826,7 @@ }, { "name": "TextureRepeat", + "is_bitfield": false, "values": [ { "name": "TEXTURE_REPEAT_PARENT_NODE", @@ -54399,7 +56865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -54410,7 +56876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -54424,7 +56890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -54435,7 +56901,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -54446,7 +56912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "hide", @@ -54454,7 +56920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "update", @@ -54462,7 +56928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_as_top_level", @@ -54470,7 +56936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -54484,7 +56950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -54495,7 +56961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "light_mask", @@ -54510,7 +56976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -54522,7 +56988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "modulate", @@ -54536,7 +57002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -54547,7 +57013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "self_modulate", @@ -54561,7 +57027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -54572,7 +57038,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -54586,7 +57052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -54597,7 +57063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 2516941890, "arguments": [ { "name": "from", @@ -54630,7 +57096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 3655830234, "arguments": [ { "name": "from", @@ -54664,7 +57130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 4175878946, "arguments": [ { "name": "points", @@ -54693,7 +57159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 2239164197, "arguments": [ { "name": "points", @@ -54722,7 +57188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 378344303, + "hash": 3486841771, "arguments": [ { "name": "center", @@ -54771,7 +57237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 4230657331, "arguments": [ { "name": "points", @@ -54795,7 +57261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 235933050, "arguments": [ { "name": "points", @@ -54819,7 +57285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 84391229, "arguments": [ { "name": "rect", @@ -54848,7 +57314,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3063020269, "arguments": [ { "name": "position", @@ -54871,7 +57337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1695860435, "arguments": [ { "name": "texture", @@ -54894,7 +57360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 3204081724, "arguments": [ { "name": "texture", @@ -54926,7 +57392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626862, + "hash": 3196597532, "arguments": [ { "name": "texture", @@ -54963,7 +57429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626862, + "hash": 1246729963, "arguments": [ { "name": "texture", @@ -55002,7 +57468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 388176283, "arguments": [ { "name": "style_box", @@ -55020,7 +57486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 3548136561, "arguments": [ { "name": "points", @@ -55053,7 +57519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 2683625537, "arguments": [ { "name": "points", @@ -55081,7 +57547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 1659099617, "arguments": [ { "name": "points", @@ -55109,7 +57575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 788614421, + "hash": 2552080639, "arguments": [ { "name": "font", @@ -55135,7 +57601,7 @@ "default_value": "-1" }, { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -55146,21 +57612,19 @@ "default_value": "Color(1, 1, 1, 1)" }, { - "name": "outline_size", - "type": "int", - "meta": "int32", + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", "default_value": "0" }, { - "name": "outline_modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 0)" - }, - { - "name": "flags", - "type": "int", - "meta": "uint16", - "default_value": "3" + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" } ] }, @@ -55170,7 +57634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4242164481, + "hash": 4002645436, "arguments": [ { "name": "font", @@ -55195,6 +57659,147 @@ "meta": "float", "default_value": "-1" }, + { + "name": "font_size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "max_lines", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "brk_flags", + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" + } + ] + }, + { + "name": "draw_string_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 850005221, + "arguments": [ + { + "name": "font", + "type": "Font" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "1" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" + } + ] + }, + { + "name": "draw_multiline_string_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3717870722, + "arguments": [ + { + "name": "font", + "type": "Font" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, { "name": "max_lines", "type": "int", @@ -55205,7 +57810,7 @@ "name": "size", "type": "int", "meta": "int32", - "default_value": "16" + "default_value": "1" }, { "name": "modulate", @@ -55213,21 +57818,24 @@ "default_value": "Color(1, 1, 1, 1)" }, { - "name": "outline_size", - "type": "int", - "meta": "int32", + "name": "brk_flags", + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", "default_value": "0" }, { - "name": "outline_modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 0)" - }, - { - "name": "flags", - "type": "int", - "meta": "uint16", - "default_value": "99" + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" } ] }, @@ -55237,11 +57845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2009863945, - "return_value": { - "type": "float", - "meta": "float" - }, + "hash": 2329089032, "arguments": [ { "name": "font", @@ -55256,12 +57860,7 @@ "type": "String" }, { - "name": "next", - "type": "String", - "default_value": "\"\"" - }, - { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -55270,17 +57869,45 @@ "name": "modulate", "type": "Color", "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_char_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 419453826, + "arguments": [ + { + "name": "font", + "type": "Font" }, { - "name": "outline_size", + "name": "pos", + "type": "Vector2" + }, + { + "name": "char", + "type": "String" + }, + { + "name": "font_size", "type": "int", "meta": "int32", - "default_value": "0" + "default_value": "16" }, { - "name": "outline_modulate", + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "modulate", "type": "Color", - "default_value": "Color(1, 1, 1, 0)" + "default_value": "Color(1, 1, 1, 1)" } ] }, @@ -55290,7 +57917,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 1634855856, "arguments": [ { "name": "mesh", @@ -55318,7 +57945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 937992368, "arguments": [ { "name": "multimesh", @@ -55336,7 +57963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2793927834, + "hash": 4181505845, "arguments": [ { "name": "position", @@ -55361,7 +57988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "xform", @@ -55375,7 +58002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 2295343543, "arguments": [ { "name": "animation_length", @@ -55406,7 +58033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_transform", @@ -55414,7 +58041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -55425,7 +58052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -55436,7 +58063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -55447,7 +58074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -55458,7 +58085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -55469,7 +58096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -55480,7 +58107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -55491,7 +58118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -55502,7 +58129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -55513,7 +58140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -55524,7 +58151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2339128592, "return_value": { "type": "World2D" } @@ -55535,7 +58162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -55549,7 +58176,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -55560,7 +58187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -55574,7 +58201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -55585,7 +58212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -55599,7 +58226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -55610,7 +58237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -55624,7 +58251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -55635,7 +58262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "make_canvas_position_local", @@ -55643,7 +58270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -55660,7 +58287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 811130057, "return_value": { "type": "InputEvent" }, @@ -55677,7 +58304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1037999706, "arguments": [ { "name": "mode", @@ -55691,7 +58318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 121960042, "return_value": { "type": "enum::CanvasItem.TextureFilter" } @@ -55702,7 +58329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1716472974, "arguments": [ { "name": "mode", @@ -55716,7 +58343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2667158319, "return_value": { "type": "enum::CanvasItem.TextureRepeat" } @@ -55727,7 +58354,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -55741,7 +58368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -55850,6 +58477,7 @@ "enums": [ { "name": "BlendMode", + "is_bitfield": false, "values": [ { "name": "BLEND_MODE_MIX", @@ -55875,6 +58503,7 @@ }, { "name": "LightMode", + "is_bitfield": false, "values": [ { "name": "LIGHT_MODE_NORMAL", @@ -55898,7 +58527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1786054936, "arguments": [ { "name": "blend_mode", @@ -55912,7 +58541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3318684035, "return_value": { "type": "enum::CanvasItemMaterial.BlendMode" } @@ -55923,7 +58552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 628074070, "arguments": [ { "name": "light_mode", @@ -55937,7 +58566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3863292382, "return_value": { "type": "enum::CanvasItemMaterial.LightMode" } @@ -55948,7 +58577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "particles_anim", @@ -55962,7 +58591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -55973,7 +58602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frames", @@ -55988,7 +58617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -56000,7 +58629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frames", @@ -56015,7 +58644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -56027,7 +58656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "loop", @@ -56041,7 +58670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -56105,7 +58734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -56120,7 +58749,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -56132,7 +58761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -56146,7 +58775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -56157,7 +58786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "hide", @@ -56165,7 +58794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_transform", @@ -56173,7 +58802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "transform", @@ -56187,7 +58816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -56198,7 +58827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -56212,7 +58841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -56223,7 +58852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -56238,7 +58867,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56250,7 +58879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "scale", @@ -56264,7 +58893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -56275,7 +58904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -56289,7 +58918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -56300,7 +58929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -56315,7 +58944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56327,7 +58956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "viewport", @@ -56341,7 +58970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -56352,7 +58981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -56442,7 +59071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -56456,7 +59085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -56485,7 +59114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -56499,7 +59128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -56510,7 +59139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -56524,7 +59153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -56535,7 +59164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -56549,7 +59178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -56560,7 +59189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -56574,7 +59203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -56585,7 +59214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "shininess", @@ -56600,7 +59229,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56612,7 +59241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1037999706, "arguments": [ { "name": "filter", @@ -56626,7 +59255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 121960042, "return_value": { "type": "enum::CanvasItem.TextureFilter" } @@ -56637,7 +59266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1716472974, "arguments": [ { "name": "repeat", @@ -56651,7 +59280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2667158319, "return_value": { "type": "enum::CanvasItem.TextureRepeat" } @@ -56722,7 +59351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -56737,7 +59366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56749,7 +59378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -56764,7 +59393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56776,7 +59405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "segments", @@ -56791,7 +59420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -56803,7 +59432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "rings", @@ -56818,7 +59447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -56869,7 +59498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -56884,7 +59513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56896,7 +59525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -56911,7 +59540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56948,7 +59577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -56963,7 +59592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -56975,7 +59604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -56990,7 +59619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -57027,7 +59656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -57041,7 +59670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57070,7 +59699,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2741790807, "return_value": { "type": "Vector2i" } @@ -57081,7 +59710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "range", @@ -57095,7 +59724,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "double" @@ -57107,7 +59736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time", @@ -57122,7 +59751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -57133,7 +59762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visibility", @@ -57147,7 +59776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -57158,7 +59787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "outline", @@ -57172,7 +59801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1497962370, "return_value": { "type": "Vector2" } @@ -57183,7 +59812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -57197,7 +59826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3200896285, "return_value": { "type": "Color" } @@ -57208,7 +59837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -57222,7 +59851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -57233,7 +59862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "environment", @@ -57247,7 +59876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -57259,7 +59888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "glyph_index", @@ -57274,7 +59903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint8" @@ -57286,7 +59915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "glyph_count", @@ -57301,7 +59930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint16" @@ -57313,7 +59942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "glyph_flags", @@ -57328,7 +59957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -57339,7 +59968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "font", @@ -57437,6 +60066,7 @@ "enums": [ { "name": "MotionMode", + "is_bitfield": false, "values": [ { "name": "MOTION_MODE_GROUNDED", @@ -57450,6 +60080,7 @@ }, { "name": "MovingPlatformApplyVelocityOnLeave", + "is_bitfield": false, "values": [ { "name": "PLATFORM_VEL_ON_LEAVE_ALWAYS", @@ -57473,7 +60104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -57484,7 +60115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "velocity", @@ -57498,7 +60129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57509,7 +60140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixels", @@ -57524,7 +60155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -57536,7 +60167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57547,7 +60178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -57561,7 +60192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -57575,7 +60206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57586,7 +60217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -57600,7 +60231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57611,7 +60242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -57625,7 +60256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57636,7 +60267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "exclude_layer", @@ -57651,7 +60282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -57663,7 +60294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "exclude_layer", @@ -57678,7 +60309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -57690,7 +60321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -57702,7 +60333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_slides", @@ -57717,7 +60348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -57729,7 +60360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -57744,7 +60375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -57756,7 +60387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "floor_snap_length", @@ -57771,7 +60402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -57783,7 +60414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -57798,7 +60429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57809,7 +60440,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "up_direction", @@ -57823,7 +60454,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1224392233, "arguments": [ { "name": "mode", @@ -57837,7 +60468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1160151236, "return_value": { "type": "enum::CharacterBody2D.MotionMode" } @@ -57848,7 +60479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1451865543, "arguments": [ { "name": "on_leave_apply_velocity", @@ -57862,7 +60493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3847096330, "return_value": { "type": "enum::CharacterBody2D.MovingPlatformApplyVelocityOnLeave" } @@ -57873,7 +60504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57884,7 +60515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57895,7 +60526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57906,7 +60537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57917,7 +60548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57928,7 +60559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -57939,7 +60570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57950,7 +60581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57961,7 +60592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57972,7 +60603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57983,7 +60614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -57994,7 +60625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3009477143, + "hash": 2841063350, "return_value": { "type": "float", "meta": "float" @@ -58013,7 +60644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -58024,7 +60655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -58036,7 +60667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 860659811, "return_value": { "type": "KinematicCollision2D" }, @@ -58054,7 +60685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2161834755, "return_value": { "type": "KinematicCollision2D" } @@ -58177,6 +60808,7 @@ "enums": [ { "name": "MotionMode", + "is_bitfield": false, "values": [ { "name": "MOTION_MODE_GROUNDED", @@ -58190,6 +60822,7 @@ }, { "name": "MovingPlatformApplyVelocityOnLeave", + "is_bitfield": false, "values": [ { "name": "PLATFORM_VEL_ON_LEAVE_ALWAYS", @@ -58213,7 +60846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -58224,7 +60857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "velocity", @@ -58238,7 +60871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58249,7 +60882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixels", @@ -58264,7 +60897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -58276,7 +60909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58287,7 +60920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -58301,7 +60934,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -58315,7 +60948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58326,7 +60959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -58340,7 +60973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58351,7 +60984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -58365,7 +60998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58376,7 +61009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "exclude_layer", @@ -58391,7 +61024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -58403,7 +61036,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "exclude_layer", @@ -58418,7 +61051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -58430,7 +61063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -58442,7 +61075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_slides", @@ -58457,7 +61090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -58469,7 +61102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -58484,7 +61117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -58496,7 +61129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "floor_snap_length", @@ -58511,7 +61144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -58523,7 +61156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -58538,7 +61171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58549,7 +61182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "up_direction", @@ -58563,7 +61196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2690739026, "arguments": [ { "name": "mode", @@ -58577,7 +61210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3529553604, "return_value": { "type": "enum::CharacterBody3D.MotionMode" } @@ -58588,7 +61221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2748509440, "arguments": [ { "name": "on_leave_apply_velocity", @@ -58602,7 +61235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4009183668, "return_value": { "type": "enum::CharacterBody3D.MovingPlatformApplyVelocityOnLeave" } @@ -58613,7 +61246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58624,7 +61257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58635,7 +61268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58646,7 +61279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58657,7 +61290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58668,7 +61301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -58679,7 +61312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58690,7 +61323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58701,7 +61334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58712,7 +61345,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58723,7 +61356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58734,7 +61367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1958111097, + "hash": 2906300789, "return_value": { "type": "float", "meta": "float" @@ -58753,7 +61386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -58764,7 +61397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -58776,7 +61409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 107003663, "return_value": { "type": "KinematicCollision3D" }, @@ -58794,7 +61427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 186875014, "return_value": { "type": "KinematicCollision3D" } @@ -58935,7 +61568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -58950,7 +61583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -58980,7 +61613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -58991,7 +61624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1761182771, "return_value": { "type": "PackedStringArray" }, @@ -59008,7 +61641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965194235, "return_value": { "type": "StringName" }, @@ -59025,7 +61658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -59042,7 +61675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -59063,7 +61696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -59080,7 +61713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -59097,7 +61730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -59118,7 +61751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3061114238, "return_value": { "type": "Dictionary" }, @@ -59139,7 +61772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3504980660, "return_value": { "type": "Array" }, @@ -59161,7 +61794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3504980660, "return_value": { "type": "Array" }, @@ -59183,7 +61816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2498641674, "return_value": { "type": "Variant" }, @@ -59204,7 +61837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1690314931, "return_value": { "type": "enum::Error" }, @@ -59229,7 +61862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 3860701026, "return_value": { "type": "bool" }, @@ -59255,7 +61888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3504980660, "return_value": { "type": "Array" }, @@ -59277,7 +61910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3031669221, "return_value": { "type": "PackedStringArray" }, @@ -59299,7 +61932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -59320,10 +61953,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2419549490, "return_value": { "type": "int", - "meta": "int32" + "meta": "int64" }, "arguments": [ { @@ -59342,7 +61975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 3860701026, "return_value": { "type": "bool" }, @@ -59368,7 +62001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3031669221, "return_value": { "type": "PackedStringArray" }, @@ -59390,7 +62023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 661528303, "return_value": { "type": "PackedStringArray" }, @@ -59416,7 +62049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 2457504236, "return_value": { "type": "StringName" }, @@ -59442,7 +62075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -59464,6 +62097,7 @@ "enums": [ { "name": "CodeCompletionKind", + "is_bitfield": false, "values": [ { "name": "KIND_CLASS", @@ -59557,7 +62191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -59572,7 +62206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -59584,7 +62218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_spaces", @@ -59598,7 +62232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59609,7 +62243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -59623,7 +62257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59634,7 +62268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "prefixes", @@ -59648,7 +62282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -59659,7 +62293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "do_unindent", @@ -59667,7 +62301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "indent_lines", @@ -59675,7 +62309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "unindent_lines", @@ -59683,7 +62317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_auto_brace_completion_enabled", @@ -59691,7 +62325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -59705,7 +62339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59716,7 +62350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -59730,7 +62364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59741,7 +62375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3186203200, "arguments": [ { "name": "start_key", @@ -59759,7 +62393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "pairs", @@ -59773,7 +62407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -59784,7 +62418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -59801,7 +62435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -59818,7 +62452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -59835,7 +62469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -59849,7 +62483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59860,7 +62494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -59874,7 +62508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59885,7 +62519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -59899,7 +62533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -59910,7 +62544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "line", @@ -59929,7 +62563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -59947,7 +62581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_breakpointed_lines", @@ -59955,7 +62589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -59966,7 +62600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "line", @@ -59985,7 +62619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -60003,7 +62637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_bookmarked_lines", @@ -60011,7 +62645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60022,7 +62656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "line", @@ -60041,7 +62675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -60059,7 +62693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_executing_lines", @@ -60067,7 +62701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60078,7 +62712,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -60092,7 +62726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -60103,7 +62737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -60117,7 +62751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -60128,7 +62762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -60142,7 +62776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -60153,7 +62787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -60167,7 +62801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -60178,7 +62812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -60196,7 +62830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "line", @@ -60211,7 +62845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "line", @@ -60226,7 +62860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "unfold_all_lines", @@ -60234,7 +62868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "toggle_foldable_line", @@ -60242,7 +62876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "line", @@ -60257,7 +62891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -60275,7 +62909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60286,7 +62920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3146098955, "arguments": [ { "name": "start_key", @@ -60309,7 +62943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "start_key", @@ -60323,7 +62957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -60340,7 +62974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "string_delimiters", @@ -60354,7 +62988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_string_delimiters", @@ -60362,7 +62996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60373,7 +63007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3294126239, "return_value": { "type": "int", "meta": "int32" @@ -60398,7 +63032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3146098955, "arguments": [ { "name": "start_key", @@ -60421,7 +63055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "start_key", @@ -60435,7 +63069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -60452,7 +63086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "comment_delimiters", @@ -60466,7 +63100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_comment_delimiters", @@ -60474,7 +63108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60485,7 +63119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3294126239, "return_value": { "type": "int", "meta": "int32" @@ -60510,7 +63144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -60528,7 +63162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -60546,7 +63180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3016396712, "return_value": { "type": "Vector2" }, @@ -60569,7 +63203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3016396712, "return_value": { "type": "Vector2" }, @@ -60592,7 +63226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "code_hint", @@ -60606,7 +63240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "draw_below", @@ -60620,7 +63254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -60631,7 +63265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133278119, + "hash": 107499316, "arguments": [ { "name": "force", @@ -60646,7 +63280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626862, + "hash": 3965792804, "arguments": [ { "name": "type", @@ -60683,7 +63317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "force", @@ -60697,7 +63331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60708,7 +63342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3485342025, "return_value": { "type": "Dictionary" }, @@ -60726,7 +63360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -60738,7 +63372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -60753,7 +63387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133278119, + "hash": 107499316, "arguments": [ { "name": "replace", @@ -60768,7 +63402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_code_completion_enabled", @@ -60776,7 +63410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -60790,7 +63424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -60801,7 +63435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "prefixes", @@ -60815,7 +63449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60826,7 +63460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "guideline_columns", @@ -60840,7 +63474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -60851,7 +63485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -60865,7 +63499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -60876,7 +63510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -60887,7 +63521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "valid", @@ -61092,7 +63726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1636512886, "arguments": [ { "name": "keyword", @@ -61110,7 +63744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "keyword", @@ -61124,7 +63758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -61141,7 +63775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3855908743, "return_value": { "type": "Color" }, @@ -61158,7 +63792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "keywords", @@ -61172,7 +63806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_keyword_colors", @@ -61180,7 +63814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -61191,7 +63825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1636512886, "arguments": [ { "name": "member_keyword", @@ -61209,7 +63843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "member_keyword", @@ -61223,7 +63857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -61240,7 +63874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3855908743, "return_value": { "type": "Color" }, @@ -61257,7 +63891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "member_keyword", @@ -61271,7 +63905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_member_keyword_colors", @@ -61279,7 +63913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -61290,7 +63924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 2924977451, "arguments": [ { "name": "start_key", @@ -61317,7 +63951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "start_key", @@ -61331,7 +63965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -61348,7 +63982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "color_regions", @@ -61362,7 +63996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_color_regions", @@ -61370,7 +64004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -61381,7 +64015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -61395,7 +64029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -61406,7 +64040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -61420,7 +64054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -61431,7 +64065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -61445,7 +64079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -61456,7 +64090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -61470,7 +64104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -61537,6 +64171,7 @@ "enums": [ { "name": "DisableMode", + "is_bitfield": false, "values": [ { "name": "DISABLE_MODE_REMOVE", @@ -61581,7 +64216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -61592,7 +64227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -61607,7 +64242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -61619,7 +64254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -61634,7 +64269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -61646,7 +64281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -61665,7 +64300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -61683,7 +64318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -61702,7 +64337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -61720,7 +64355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1919204045, "arguments": [ { "name": "mode", @@ -61734,7 +64369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3172846349, "return_value": { "type": "enum::CollisionObject2D.DisableMode" } @@ -61745,7 +64380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -61759,7 +64394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -61770,7 +64405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3429307534, "return_value": { "type": "int", "meta": "uint32" @@ -61788,7 +64423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "owner_id", @@ -61803,7 +64438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -61814,7 +64449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 30160968, "arguments": [ { "name": "owner_id", @@ -61833,7 +64468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3836996910, "return_value": { "type": "Transform2D" }, @@ -61851,7 +64486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3332903315, "return_value": { "type": "Object" }, @@ -61869,7 +64504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "owner_id", @@ -61888,7 +64523,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -61906,7 +64541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "owner_id", @@ -61925,7 +64560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -61943,7 +64578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "owner_id", @@ -61963,7 +64598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -61982,7 +64617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2077425081, "arguments": [ { "name": "owner_id", @@ -62001,7 +64636,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -62020,7 +64655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3106725749, "return_value": { "type": "Shape2D" }, @@ -62043,7 +64678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -62067,7 +64702,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "owner_id", @@ -62087,7 +64722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "owner_id", @@ -62102,7 +64737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -62199,6 +64834,7 @@ "enums": [ { "name": "DisableMode", + "is_bitfield": false, "values": [ { "name": "DISABLE_MODE_REMOVE", @@ -62251,7 +64887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -62266,7 +64902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -62278,7 +64914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -62293,7 +64929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -62305,7 +64941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -62324,7 +64960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -62342,7 +64978,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -62361,7 +64997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -62379,7 +65015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1623620376, "arguments": [ { "name": "mode", @@ -62393,7 +65029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 410164780, "return_value": { "type": "enum::CollisionObject3D.DisableMode" } @@ -62404,7 +65040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ray_pickable", @@ -62418,7 +65054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -62429,7 +65065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -62443,7 +65079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -62454,7 +65090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -62465,7 +65101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3429307534, "return_value": { "type": "int", "meta": "uint32" @@ -62483,7 +65119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "owner_id", @@ -62498,7 +65134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -62509,7 +65145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "owner_id", @@ -62528,7 +65164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -62546,7 +65182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3332903315, "return_value": { "type": "Object" }, @@ -62564,7 +65200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "owner_id", @@ -62583,7 +65219,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -62601,7 +65237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2566676345, "arguments": [ { "name": "owner_id", @@ -62620,7 +65256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -62639,7 +65275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4015519174, "return_value": { "type": "Shape3D" }, @@ -62662,7 +65298,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -62686,7 +65322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "owner_id", @@ -62706,7 +65342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "owner_id", @@ -62721,7 +65357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -62815,6 +65451,7 @@ "enums": [ { "name": "BuildMode", + "is_bitfield": false, "values": [ { "name": "BUILD_SOLIDS", @@ -62834,7 +65471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "polygon", @@ -62848,7 +65485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -62859,7 +65496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2780803135, "arguments": [ { "name": "build_mode", @@ -62873,7 +65510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3044948800, "return_value": { "type": "enum::CollisionPolygon2D.BuildMode" } @@ -62884,7 +65521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disabled", @@ -62898,7 +65535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -62909,7 +65546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -62923,7 +65560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -62934,7 +65571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -62949,7 +65586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -63007,7 +65644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "depth", @@ -63022,7 +65659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -63034,7 +65671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "polygon", @@ -63048,7 +65685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -63059,7 +65696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disabled", @@ -63073,7 +65710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63084,7 +65721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -63099,7 +65736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -63150,7 +65787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 771364740, "arguments": [ { "name": "shape", @@ -63164,7 +65801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 522005891, "return_value": { "type": "Shape2D" } @@ -63175,7 +65812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disabled", @@ -63189,7 +65826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63200,7 +65837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -63214,7 +65851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63225,7 +65862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -63240,7 +65877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -63291,7 +65928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "resource", @@ -63305,7 +65942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1549710052, "arguments": [ { "name": "shape", @@ -63319,7 +65956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3214262478, "return_value": { "type": "Shape3D" } @@ -63330,7 +65967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -63344,7 +65981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63355,7 +65992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -63382,8 +66019,31 @@ "inherits": "BoxContainer", "api_type": "core", "enums": [ + { + "name": "ColorModeType", + "is_bitfield": false, + "values": [ + { + "name": "MODE_RGB", + "value": 0 + }, + { + "name": "MODE_HSV", + "value": 1 + }, + { + "name": "MODE_RAW", + "value": 2 + }, + { + "name": "MODE_OKHSL", + "value": 3 + } + ] + }, { "name": "PickerShapeType", + "is_bitfield": false, "values": [ { "name": "SHAPE_HSV_RECTANGLE", @@ -63411,7 +66071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -63425,68 +66085,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } }, - { - "name": "set_hsv_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_hsv_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } - }, - { - "name": "set_raw_mode", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_raw_mode", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } - }, { "name": "set_deferred_mode", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "mode", @@ -63500,18 +66110,43 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, + { + "name": "set_color_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1579114136, + "arguments": [ + { + "name": "color_mode", + "type": "enum::ColorPicker.ColorModeType" + } + ] + }, + { + "name": "get_color_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 392907674, + "return_value": { + "type": "enum::ColorPicker.ColorModeType" + } + }, { "name": "set_edit_alpha", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "show", @@ -63525,7 +66160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63536,7 +66171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -63550,7 +66185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63561,7 +66196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -63575,7 +66210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63586,7 +66221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -63600,7 +66235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -63614,7 +66249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1392750486, "return_value": { "type": "PackedColorArray" } @@ -63625,10 +66260,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3981373861, "arguments": [ { - "name": "picker", + "name": "shape", "type": "enum::ColorPicker.PickerShapeType" } ] @@ -63639,7 +66274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1143229889, "return_value": { "type": "enum::ColorPicker.PickerShapeType" } @@ -63690,17 +66325,10 @@ "index": -1 }, { - "type": "bool", - "name": "hsv_mode", - "setter": "set_hsv_mode", - "getter": "is_hsv_mode", - "index": -1 - }, - { - "type": "bool", - "name": "raw_mode", - "setter": "set_raw_mode", - "getter": "is_raw_mode", + "type": "int", + "name": "color_mode", + "setter": "set_color_mode", + "getter": "get_color_mode", "index": -1 }, { @@ -63746,7 +66374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -63760,7 +66388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -63771,7 +66399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 331835996, "return_value": { "type": "ColorPicker" } @@ -63782,7 +66410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1322440207, "return_value": { "type": "PopupPanel" } @@ -63793,7 +66421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "show", @@ -63807,7 +66435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -63860,7 +66488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -63874,7 +66502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -63917,7 +66545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -63934,7 +66562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -63970,7 +66598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -63987,7 +66615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -64016,7 +66644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -64033,7 +66661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -64062,7 +66690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "segments", @@ -64076,7 +66704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -64105,7 +66733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "faces", @@ -64119,7 +66747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -64130,7 +66758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -64144,7 +66772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -64176,6 +66804,7 @@ "enums": [ { "name": "Param", + "is_bitfield": false, "values": [ { "name": "PARAM_SWING_SPAN", @@ -64211,7 +66840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1062470226, "arguments": [ { "name": "param", @@ -64230,7 +66859,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2928790850, "return_value": { "type": "float", "meta": "float" @@ -64294,7 +66923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2504492430, "arguments": [ { "name": "section", @@ -64316,7 +66945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 89809366, "return_value": { "type": "Variant" }, @@ -64342,7 +66971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -64359,7 +66988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 820780508, "return_value": { "type": "bool" }, @@ -64380,7 +67009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -64391,7 +67020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -64408,7 +67037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "section", @@ -64422,7 +67051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3186203200, "arguments": [ { "name": "section", @@ -64440,7 +67069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -64457,7 +67086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -64474,7 +67103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -64491,7 +67120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 887037711, "return_value": { "type": "enum::Error" }, @@ -64512,7 +67141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -64533,7 +67162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 887037711, "return_value": { "type": "enum::Error" }, @@ -64554,7 +67183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -64575,7 +67204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -64592,10 +67221,44 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1856205918, "return_value": { "type": "Button" } + }, + { + "name": "set_cancel_button_text", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "arg0", + "type": "String" + } + ] + }, + { + "name": "get_cancel_button_text", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "cancel_button_text", + "setter": "set_cancel_button_text", + "getter": "get_cancel_button_text", + "index": -1 } ] }, @@ -64642,7 +67305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "fit_child_in_rect", @@ -64650,7 +67313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1993438598, "arguments": [ { "name": "child", @@ -64719,6 +67382,7 @@ "enums": [ { "name": "FocusMode", + "is_bitfield": false, "values": [ { "name": "FOCUS_NONE", @@ -64736,6 +67400,7 @@ }, { "name": "CursorShape", + "is_bitfield": false, "values": [ { "name": "CURSOR_ARROW", @@ -64809,6 +67474,7 @@ }, { "name": "LayoutPreset", + "is_bitfield": false, "values": [ { "name": "PRESET_TOP_LEFT", @@ -64871,13 +67537,14 @@ "value": 14 }, { - "name": "PRESET_WIDE", + "name": "PRESET_FULL_RECT", "value": 15 } ] }, { "name": "LayoutPresetMode", + "is_bitfield": false, "values": [ { "name": "PRESET_MODE_MINSIZE", @@ -64899,6 +67566,7 @@ }, { "name": "SizeFlags", + "is_bitfield": false, "values": [ { "name": "SIZE_SHRINK_BEGIN", @@ -64928,6 +67596,7 @@ }, { "name": "MouseFilter", + "is_bitfield": false, "values": [ { "name": "MOUSE_FILTER_STOP", @@ -64945,6 +67614,7 @@ }, { "name": "GrowDirection", + "is_bitfield": false, "values": [ { "name": "GROW_DIRECTION_BEGIN", @@ -64962,6 +67632,7 @@ }, { "name": "Anchor", + "is_bitfield": false, "values": [ { "name": "ANCHOR_BEGIN", @@ -64975,6 +67646,7 @@ }, { "name": "LayoutDirection", + "is_bitfield": false, "values": [ { "name": "LAYOUT_DIRECTION_INHERITED", @@ -64996,6 +67668,7 @@ }, { "name": "TextDirection", + "is_bitfield": false, "values": [ { "name": "TEXT_DIRECTION_INHERITED", @@ -65151,7 +67824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_minimum_size", @@ -65159,7 +67832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65170,7 +67843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65181,7 +67854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 509135270, "arguments": [ { "name": "preset", @@ -65200,7 +67873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2600550837, + "hash": 3651818904, "arguments": [ { "name": "preset", @@ -65225,7 +67898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2600550837, + "hash": 3651818904, "arguments": [ { "name": "preset", @@ -65250,7 +67923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 2589937826, "arguments": [ { "name": "side", @@ -65279,7 +67952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -65297,7 +67970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4290182280, "arguments": [ { "name": "side", @@ -65316,7 +67989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -65334,7 +68007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 4031722181, "arguments": [ { "name": "side", @@ -65363,7 +68036,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -65377,7 +68050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -65391,7 +68064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2436320129, "arguments": [ { "name": "position", @@ -65410,7 +68083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2436320129, "arguments": [ { "name": "size", @@ -65429,7 +68102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_custom_minimum_size", @@ -65437,7 +68110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -65451,7 +68124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2436320129, "arguments": [ { "name": "position", @@ -65470,7 +68143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -65485,7 +68158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "scale", @@ -65499,7 +68172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "pivot_offset", @@ -65513,7 +68186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65524,7 +68197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65535,7 +68208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65546,7 +68219,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65557,7 +68230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -65569,7 +68242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65580,7 +68253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65591,7 +68264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65602,7 +68275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65613,7 +68286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65624,7 +68297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -65635,7 +68308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -65646,7 +68319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -65657,7 +68330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3232914922, "arguments": [ { "name": "mode", @@ -65671,7 +68344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2132829277, "return_value": { "type": "enum::Control.FocusMode" } @@ -65682,7 +68355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -65693,7 +68366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "release_focus", @@ -65701,7 +68374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "find_prev_valid_focus", @@ -65709,7 +68382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2783021301, "return_value": { "type": "Control" } @@ -65720,7 +68393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2783021301, "return_value": { "type": "Control" } @@ -65731,7 +68404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "flags", @@ -65746,7 +68419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -65758,7 +68431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -65773,7 +68446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -65785,7 +68458,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "flags", @@ -65800,7 +68473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -65812,7 +68485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2326690814, "arguments": [ { "name": "theme", @@ -65826,7 +68499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3846893731, "return_value": { "type": "Theme" } @@ -65837,7 +68510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "theme_type", @@ -65851,7 +68524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -65862,7 +68535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "end_bulk_theme_override", @@ -65870,7 +68543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_theme_icon_override", @@ -65878,7 +68551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1373065600, "arguments": [ { "name": "name", @@ -65896,7 +68569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4188838905, "arguments": [ { "name": "name", @@ -65914,7 +68587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3518018674, "arguments": [ { "name": "name", @@ -65932,7 +68605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "name", @@ -65951,7 +68624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4260178595, "arguments": [ { "name": "name", @@ -65969,7 +68642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "name", @@ -65988,7 +68661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -66002,7 +68675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -66016,7 +68689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -66030,7 +68703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -66044,7 +68717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -66058,7 +68731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -66072,7 +68745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2336455395, "return_value": { "type": "Texture2D" }, @@ -66094,7 +68767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2759935355, "return_value": { "type": "StyleBox" }, @@ -66116,7 +68789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 387378635, "return_value": { "type": "Font" }, @@ -66138,7 +68811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 229578101, "return_value": { "type": "int", "meta": "int32" @@ -66161,7 +68834,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2377051548, "return_value": { "type": "Color" }, @@ -66183,7 +68856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 229578101, "return_value": { "type": "int", "meta": "int32" @@ -66206,7 +68879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -66223,7 +68896,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -66240,7 +68913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -66257,7 +68930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -66274,7 +68947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -66291,7 +68964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -66308,7 +68981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -66330,7 +69003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -66352,7 +69025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -66374,7 +69047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -66396,7 +69069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -66418,7 +69091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -66440,7 +69113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -66452,7 +69125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229501585, "return_value": { "type": "Font" } @@ -66463,7 +69136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -66475,7 +69148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2783021301, "return_value": { "type": "Control" } @@ -66486,7 +69159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2022385301, "arguments": [ { "name": "direction", @@ -66500,7 +69173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635610155, "return_value": { "type": "enum::Control.GrowDirection" } @@ -66511,7 +69184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2022385301, "arguments": [ { "name": "direction", @@ -66525,7 +69198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635610155, "return_value": { "type": "enum::Control.GrowDirection" } @@ -66536,7 +69209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "tooltip", @@ -66550,7 +69223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2862547492, + "hash": 2895288280, "return_value": { "type": "String" }, @@ -66568,7 +69241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 217062046, "arguments": [ { "name": "shape", @@ -66582,7 +69255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2359535750, "return_value": { "type": "enum::Control.CursorShape" } @@ -66593,7 +69266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2862547492, + "hash": 1395773853, "return_value": { "type": "enum::Control.CursorShape" }, @@ -66611,7 +69284,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2024461774, "arguments": [ { "name": "side", @@ -66629,7 +69302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2757935761, "return_value": { "type": "NodePath" }, @@ -66646,7 +69319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "next", @@ -66660,7 +69333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -66671,7 +69344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "previous", @@ -66685,7 +69358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -66696,7 +69369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3191844692, "arguments": [ { "name": "data", @@ -66714,7 +69387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3891156122, "arguments": [ { "name": "filter", @@ -66728,7 +69401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1572545674, "return_value": { "type": "enum::Control.MouseFilter" } @@ -66739,7 +69412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "force_pass_scroll_events", @@ -66753,7 +69426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -66764,7 +69437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -66778,7 +69451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -66789,7 +69462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_drag_forwarding", @@ -66797,7 +69470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3975164845, "arguments": [ { "name": "target", @@ -66811,7 +69484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "control", @@ -66825,7 +69498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -66836,7 +69509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -66850,7 +69523,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_layout_direction", @@ -66858,7 +69531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3310692370, "arguments": [ { "name": "direction", @@ -66872,7 +69545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1546772008, "return_value": { "type": "enum::Control.LayoutDirection" } @@ -66883,7 +69556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -66894,7 +69567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -66908,7 +69581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -66959,7 +69632,7 @@ }, { "type": "Vector2", - "name": "minimum_size", + "name": "custom_minimum_size", "setter": "set_custom_minimum_size", "getter": "get_custom_minimum_size", "index": -1 @@ -67231,7 +69904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "point_cloud", @@ -67245,7 +69918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "points", @@ -67259,7 +69932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -67288,7 +69961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "points", @@ -67302,7 +69975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -67331,7 +70004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 47165747, "return_value": { "type": "PackedByteArray" }, @@ -67349,7 +70022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1237515462, "return_value": { "type": "CryptoKey" }, @@ -67367,7 +70040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1610309760, + "hash": 947314696, "return_value": { "type": "X509Certificate" }, @@ -67399,7 +70072,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1673662703, "return_value": { "type": "PackedByteArray" }, @@ -67424,7 +70097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 2805902225, "return_value": { "type": "bool" }, @@ -67453,7 +70126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2361793670, "return_value": { "type": "PackedByteArray" }, @@ -67474,7 +70147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2361793670, "return_value": { "type": "PackedByteArray" }, @@ -67495,7 +70168,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2368951203, "return_value": { "type": "PackedByteArray" }, @@ -67520,7 +70193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1024142237, "return_value": { "type": "bool" }, @@ -67550,7 +70223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 885841341, "return_value": { "type": "enum::Error" }, @@ -67572,7 +70245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 885841341, "return_value": { "type": "enum::Error" }, @@ -67594,7 +70267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -67605,7 +70278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 32795936, "return_value": { "type": "String" }, @@ -67623,7 +70296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 885841341, "return_value": { "type": "enum::Error" }, @@ -67664,6 +70337,7 @@ "enums": [ { "name": "TangentMode", + "is_bitfield": false, "values": [ { "name": "TANGENT_FREE", @@ -67687,7 +70361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -67699,7 +70373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -67714,7 +70388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1799894896, + "hash": 2766148617, "return_value": { "type": "int", "meta": "int32" @@ -67754,7 +70428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -67769,7 +70443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_point_position", @@ -67777,7 +70451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -67795,7 +70469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "index", @@ -67815,7 +70489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3780573764, "return_value": { "type": "int", "meta": "int32" @@ -67839,7 +70513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3919130443, "return_value": { "type": "float", "meta": "float" @@ -67858,7 +70532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3919130443, "return_value": { "type": "float", "meta": "float" @@ -67877,7 +70551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -67896,7 +70570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -67915,7 +70589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 426950354, "return_value": { "type": "enum::Curve.TangentMode" }, @@ -67933,7 +70607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 426950354, "return_value": { "type": "enum::Curve.TangentMode" }, @@ -67951,7 +70625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "index", @@ -67971,7 +70645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "index", @@ -67991,7 +70665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1217242874, "arguments": [ { "name": "index", @@ -68010,7 +70684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1217242874, "arguments": [ { "name": "index", @@ -68029,7 +70703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -68041,7 +70715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "min", @@ -68056,7 +70730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -68068,7 +70742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max", @@ -68083,7 +70757,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bake", @@ -68091,7 +70765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_bake_resolution", @@ -68099,7 +70773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -68111,7 +70785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "resolution", @@ -68170,7 +70844,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -68182,7 +70856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -68197,7 +70871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 38931906, + "hash": 2437345566, "arguments": [ { "name": "position", @@ -68227,7 +70901,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "idx", @@ -68246,7 +70920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -68264,7 +70938,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "idx", @@ -68283,7 +70957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -68301,7 +70975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "idx", @@ -68320,7 +70994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -68338,7 +71012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -68353,7 +71027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "interpolate", @@ -68361,7 +71035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 26514310, "return_value": { "type": "Vector2" }, @@ -68384,7 +71058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3588506812, "return_value": { "type": "Vector2" }, @@ -68402,7 +71076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -68417,7 +71091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -68429,7 +71103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -68441,7 +71115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 674850128, "return_value": { "type": "Vector2" }, @@ -68464,7 +71138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -68475,7 +71149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -68492,7 +71166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2276447920, "return_value": { "type": "float", "meta": "float" @@ -68510,7 +71184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3957090367, + "hash": 958145977, "return_value": { "type": "PackedVector2Array" }, @@ -68560,7 +71234,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -68572,7 +71246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -68587,7 +71261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2635598008, + "hash": 3836314258, "arguments": [ { "name": "position", @@ -68617,7 +71291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "idx", @@ -68636,7 +71310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -68654,7 +71328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "idx", @@ -68674,7 +71348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -68693,7 +71367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "idx", @@ -68712,7 +71386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -68730,7 +71404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "idx", @@ -68749,7 +71423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -68767,7 +71441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -68782,7 +71456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "interpolate", @@ -68790,7 +71464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3285246857, "return_value": { "type": "Vector3" }, @@ -68813,7 +71487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2553580215, "return_value": { "type": "Vector3" }, @@ -68831,7 +71505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -68846,7 +71520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -68858,7 +71532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -68872,7 +71546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -68883,7 +71557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -68895,7 +71569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1362627031, "return_value": { "type": "Vector3" }, @@ -68918,7 +71592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1362627031, "return_value": { "type": "Vector3" }, @@ -68941,7 +71615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -68952,7 +71626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 675695659, "return_value": { "type": "PackedFloat32Array" } @@ -68963,7 +71637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -68974,7 +71648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 192990374, "return_value": { "type": "Vector3" }, @@ -68991,7 +71665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1109078154, "return_value": { "type": "float", "meta": "float" @@ -69009,7 +71683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3957090367, + "hash": 1519759391, "return_value": { "type": "PackedVector3Array" }, @@ -69062,6 +71736,7 @@ "enums": [ { "name": "TextureMode", + "is_bitfield": false, "values": [ { "name": "TEXTURE_MODE_RGB", @@ -69081,7 +71756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -69096,7 +71771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -69110,7 +71785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -69121,7 +71796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1321955367, "arguments": [ { "name": "texture_mode", @@ -69135,7 +71810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 715756376, "return_value": { "type": "enum::CurveTexture.TextureMode" } @@ -69178,7 +71853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -69193,7 +71868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -69207,7 +71882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -69218,7 +71893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -69232,7 +71907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -69243,7 +71918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -69257,7 +71932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -69307,7 +71982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -69322,7 +71997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69334,7 +72009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -69349,7 +72024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69361,7 +72036,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -69376,7 +72051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69388,7 +72063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "segments", @@ -69403,7 +72078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -69415,7 +72090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "rings", @@ -69430,7 +72105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -69442,7 +72117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "cap_top", @@ -69456,7 +72131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -69467,7 +72142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "cap_bottom", @@ -69481,7 +72156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -69552,7 +72227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -69567,7 +72242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69579,7 +72254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -69594,7 +72269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69631,7 +72306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 3871247334, "return_value": { "type": "enum::Error" }, @@ -69657,7 +72332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3946580474, "return_value": { "type": "PacketPeerDTLS" }, @@ -69683,7 +72358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -69698,7 +72373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69710,7 +72385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "rest_length", @@ -69725,7 +72400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69737,7 +72412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "stiffness", @@ -69752,7 +72427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69764,7 +72439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "damping", @@ -69779,7 +72454,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69826,6 +72501,7 @@ "enums": [ { "name": "DecalTexture", + "is_bitfield": false, "values": [ { "name": "TEXTURE_ALBEDO", @@ -69857,7 +72533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -69871,7 +72547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -69882,7 +72558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2086764391, "arguments": [ { "name": "type", @@ -69900,7 +72576,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3244119503, "return_value": { "type": "Texture2D" }, @@ -69917,7 +72593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -69932,7 +72608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69944,7 +72620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -69959,7 +72635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -69971,7 +72647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -69985,7 +72661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -69996,7 +72672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fade", @@ -70011,7 +72687,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -70023,7 +72699,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fade", @@ -70038,7 +72714,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -70050,7 +72726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fade", @@ -70065,7 +72741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -70077,7 +72753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -70091,7 +72767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -70102,7 +72778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -70117,7 +72793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -70129,7 +72805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -70144,7 +72820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -70156,7 +72832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -70171,7 +72847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -70299,7 +72975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixels", @@ -70314,7 +72990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -70347,6 +73023,7 @@ "enums": [ { "name": "ShadowMode", + "is_bitfield": false, "values": [ { "name": "SHADOW_ORTHOGONAL", @@ -70364,6 +73041,7 @@ }, { "name": "SkyMode", + "is_bitfield": false, "values": [ { "name": "SKY_MODE_LIGHT_AND_SKY", @@ -70387,7 +73065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1261211726, "arguments": [ { "name": "mode", @@ -70401,7 +73079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2765228544, "return_value": { "type": "enum::DirectionalLight3D.ShadowMode" } @@ -70412,7 +73090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -70426,7 +73104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -70437,7 +73115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2691194817, "arguments": [ { "name": "mode", @@ -70451,7 +73129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3819982774, "return_value": { "type": "enum::DirectionalLight3D.SkyMode" } @@ -70536,7 +73214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -70553,7 +73231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1356729128, + "hash": 2018049411, "return_value": { "type": "enum::Error" } @@ -70564,7 +73242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -70575,7 +73253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -70586,7 +73264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_files", @@ -70594,7 +73272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2981934095, "return_value": { "type": "PackedStringArray" } @@ -70605,7 +73283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2981934095, "return_value": { "type": "PackedStringArray" } @@ -70616,7 +73294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -70628,7 +73306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 990163283, "return_value": { "type": "String" }, @@ -70646,7 +73324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -70658,7 +73336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -70675,7 +73353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -70686,7 +73364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -70703,7 +73381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -70720,7 +73398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -70737,7 +73415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -70754,7 +73432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint64" @@ -70766,7 +73444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -70787,7 +73465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -70808,7 +73486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -70825,7 +73503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -70839,7 +73517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -70850,7 +73528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -70864,7 +73542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -70910,6 +73588,7 @@ "enums": [ { "name": "Feature", + "is_bitfield": false, "values": [ { "name": "FEATURE_GLOBAL_MENU", @@ -70991,6 +73670,7 @@ }, { "name": "MouseMode", + "is_bitfield": false, "values": [ { "name": "MOUSE_MODE_VISIBLE", @@ -71016,6 +73696,7 @@ }, { "name": "ScreenOrientation", + "is_bitfield": false, "values": [ { "name": "SCREEN_LANDSCAPE", @@ -71049,6 +73730,7 @@ }, { "name": "CursorShape", + "is_bitfield": false, "values": [ { "name": "CURSOR_ARROW", @@ -71126,6 +73808,7 @@ }, { "name": "WindowMode", + "is_bitfield": false, "values": [ { "name": "WINDOW_MODE_WINDOWED", @@ -71151,6 +73834,7 @@ }, { "name": "WindowFlags", + "is_bitfield": false, "values": [ { "name": "WINDOW_FLAG_RESIZE_DISABLED", @@ -71184,6 +73868,7 @@ }, { "name": "WindowEvent", + "is_bitfield": false, "values": [ { "name": "WINDOW_EVENT_MOUSE_ENTER", @@ -71217,6 +73902,7 @@ }, { "name": "VSyncMode", + "is_bitfield": false, "values": [ { "name": "VSYNC_DISABLED", @@ -71238,6 +73924,7 @@ }, { "name": "HandleType", + "is_bitfield": false, "values": [ { "name": "DISPLAY_HANDLE", @@ -71255,6 +73942,7 @@ }, { "name": "TTSUtteranceEvent", + "is_bitfield": false, "values": [ { "name": "TTS_UTTERANCE_STARTED", @@ -71282,7 +73970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 334065950, "return_value": { "type": "bool" }, @@ -71299,7 +73987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -71310,7 +73998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2945481455, + "hash": 117014956, "arguments": [ { "name": "menu_root", @@ -71349,7 +74037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2945481455, + "hash": 117014956, "arguments": [ { "name": "menu_root", @@ -71388,7 +74076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2614251472, + "hash": 1885975429, "arguments": [ { "name": "menu_root", @@ -71431,7 +74119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2614251472, + "hash": 1885975429, "arguments": [ { "name": "menu_root", @@ -71474,7 +74162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2945481455, + "hash": 117014956, "arguments": [ { "name": "menu_root", @@ -71513,7 +74201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2614251472, + "hash": 1885975429, "arguments": [ { "name": "menu_root", @@ -71556,7 +74244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2283021489, + "hash": 4281796287, "arguments": [ { "name": "menu_root", @@ -71605,7 +74293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 20262338, "arguments": [ { "name": "menu_root", @@ -71633,7 +74321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3043792800, "arguments": [ { "name": "menu_root", @@ -71653,7 +74341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2878152881, "return_value": { "type": "int", "meta": "int32" @@ -71675,7 +74363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2941063483, "return_value": { "type": "int", "meta": "int32" @@ -71697,7 +74385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3511468594, "return_value": { "type": "bool" }, @@ -71719,7 +74407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3511468594, "return_value": { "type": "bool" }, @@ -71741,7 +74429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3511468594, "return_value": { "type": "bool" }, @@ -71763,7 +74451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 748666903, "return_value": { "type": "Callable" }, @@ -71785,7 +74473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 330672633, "return_value": { "type": "Variant" }, @@ -71807,7 +74495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 591067909, "return_value": { "type": "String" }, @@ -71829,7 +74517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 591067909, "return_value": { "type": "String" }, @@ -71851,7 +74539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 936065394, "return_value": { "type": "enum::Key" }, @@ -71873,7 +74561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3511468594, "return_value": { "type": "bool" }, @@ -71895,7 +74583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 591067909, "return_value": { "type": "String" }, @@ -71917,7 +74605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3422818498, "return_value": { "type": "int", "meta": "int32" @@ -71940,7 +74628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3422818498, "return_value": { "type": "int", "meta": "int32" @@ -71963,7 +74651,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3591713183, "return_value": { "type": "Texture2D" }, @@ -71985,7 +74673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4108344793, "arguments": [ { "name": "menu_root", @@ -72008,7 +74696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4108344793, "arguments": [ { "name": "menu_root", @@ -72031,7 +74719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4108344793, "arguments": [ { "name": "menu_root", @@ -72054,7 +74742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3809915389, "arguments": [ { "name": "menu_root", @@ -72077,7 +74765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 453659863, "arguments": [ { "name": "menu_root", @@ -72100,7 +74788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 965966136, "arguments": [ { "name": "menu_root", @@ -72123,7 +74811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 965966136, "arguments": [ { "name": "menu_root", @@ -72146,7 +74834,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 566943293, "arguments": [ { "name": "menu_root", @@ -72169,7 +74857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4108344793, "arguments": [ { "name": "menu_root", @@ -72192,7 +74880,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 965966136, "arguments": [ { "name": "menu_root", @@ -72215,7 +74903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3474840532, "arguments": [ { "name": "menu_root", @@ -72239,7 +74927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3474840532, "arguments": [ { "name": "menu_root", @@ -72263,7 +74951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3201338066, "arguments": [ { "name": "menu_root", @@ -72286,7 +74974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2956805083, "arguments": [ { "name": "menu_root", @@ -72305,7 +74993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "menu_root", @@ -72319,7 +75007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -72330,7 +75018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -72341,7 +75029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -72352,7 +75040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -72369,7 +75057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 839004078, + "hash": 3723082199, "arguments": [ { "name": "text", @@ -72416,7 +75104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "tts_resume", @@ -72424,7 +75112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "tts_stop", @@ -72432,7 +75120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "tts_set_utterance_callback", @@ -72440,7 +75128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 109679083, "arguments": [ { "name": "event", @@ -72458,7 +75146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 348288463, "arguments": [ { "name": "mouse_mode", @@ -72472,7 +75160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1353961651, "return_value": { "type": "enum::DisplayServer.MouseMode" } @@ -72483,7 +75171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "position", @@ -72497,7 +75185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -72508,7 +75196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1132662608, "return_value": { "type": "enum::MouseButton" } @@ -72519,7 +75207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "clipboard", @@ -72533,7 +75221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -72544,7 +75232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -72555,7 +75243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "clipboard_primary", @@ -72569,7 +75257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -72580,7 +75268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -72591,7 +75279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 410525958, "return_value": { "type": "Rect2i" } @@ -72602,7 +75290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -72614,7 +75302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 1725937825, "return_value": { "type": "Vector2i" }, @@ -72633,7 +75321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 1725937825, "return_value": { "type": "Vector2i" }, @@ -72652,7 +75340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 2439012528, "return_value": { "type": "Rect2i" }, @@ -72671,7 +75359,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 181039630, "return_value": { "type": "int", "meta": "int32" @@ -72691,7 +75379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 909105437, "return_value": { "type": "float", "meta": "float" @@ -72711,7 +75399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 2824505868, "return_value": { "type": "bool" }, @@ -72730,7 +75418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -72742,7 +75430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 909105437, "return_value": { "type": "float", "meta": "float" @@ -72762,7 +75450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2629526904, "arguments": [ { "name": "orientation", @@ -72782,7 +75470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 133818562, "return_value": { "type": "enum::DisplayServer.ScreenOrientation" }, @@ -72801,7 +75489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -72815,7 +75503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -72826,7 +75514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -72837,7 +75525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -72855,7 +75543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 1993979852, "return_value": { "type": "int", "meta": "int32" @@ -72887,7 +75575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "window_id", @@ -72902,7 +75590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2709193271, "return_value": { "type": "int", "meta": "int64" @@ -72926,7 +75614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -72938,7 +75626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3317281434, "arguments": [ { "name": "window", @@ -72957,7 +75645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2161169500, "return_value": { "type": "Rect2i" }, @@ -72975,7 +75663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3043792800, "arguments": [ { "name": "title", @@ -72995,7 +75683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3958815166, "arguments": [ { "name": "region", @@ -73015,7 +75703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "int32" @@ -73035,7 +75723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3023605688, "arguments": [ { "name": "screen", @@ -73056,7 +75744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 763922886, "return_value": { "type": "Vector2i" }, @@ -73075,7 +75763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3614040015, "arguments": [ { "name": "position", @@ -73095,7 +75783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 763922886, "return_value": { "type": "Vector2i" }, @@ -73114,7 +75802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3614040015, "arguments": [ { "name": "size", @@ -73134,7 +75822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3653650673, "arguments": [ { "name": "callback", @@ -73154,7 +75842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3653650673, "arguments": [ { "name": "callback", @@ -73174,7 +75862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3653650673, "arguments": [ { "name": "callback", @@ -73194,7 +75882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3653650673, "arguments": [ { "name": "callback", @@ -73214,7 +75902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3653650673, "arguments": [ { "name": "callback", @@ -73234,7 +75922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3023605688, "arguments": [ { "name": "instance_id", @@ -73255,7 +75943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "uint64" @@ -73275,7 +75963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 763922886, "return_value": { "type": "Vector2i" }, @@ -73294,7 +75982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3614040015, "arguments": [ { "name": "max_size", @@ -73314,7 +76002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 763922886, "return_value": { "type": "Vector2i" }, @@ -73333,7 +76021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3614040015, "arguments": [ { "name": "min_size", @@ -73353,7 +76041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 763922886, "return_value": { "type": "Vector2i" }, @@ -73372,7 +76060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2185728461, "return_value": { "type": "enum::DisplayServer.WindowMode" }, @@ -73391,7 +76079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2942569511, "arguments": [ { "name": "mode", @@ -73411,7 +76099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3971592565, "arguments": [ { "name": "flag", @@ -73435,7 +76123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2662949986, "return_value": { "type": "bool" }, @@ -73458,7 +76146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "window_id", @@ -73474,7 +76162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "window_id", @@ -73490,7 +76178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1051549951, "return_value": { "type": "bool" }, @@ -73509,7 +76197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "window_id", @@ -73529,7 +76217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "window_id", @@ -73548,7 +76236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 450484987, "arguments": [ { "name": "active", @@ -73568,7 +76256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3614040015, "arguments": [ { "name": "position", @@ -73588,7 +76276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1708924624, "arguments": [ { "name": "vsync_mode", @@ -73608,7 +76296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 578873795, "return_value": { "type": "enum::DisplayServer.VSyncMode" }, @@ -73627,7 +76315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -73638,7 +76326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -73649,7 +76337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1151322837, + "hash": 4231754459, "arguments": [ { "name": "existing_text", @@ -73691,7 +76379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "virtual_keyboard_get_height", @@ -73699,7 +76387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -73711,7 +76399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2026291549, "arguments": [ { "name": "shape", @@ -73725,7 +76413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1087724927, "return_value": { "type": "enum::DisplayServer.CursorShape" } @@ -73736,7 +76424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2600550837, + "hash": 1358907026, "arguments": [ { "name": "cursor", @@ -73760,7 +76448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -73771,7 +76459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "process_id", @@ -73786,7 +76474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 4115553226, "return_value": { "type": "enum::Error" }, @@ -73815,7 +76503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 3088703427, "return_value": { "type": "enum::Error" }, @@ -73844,7 +76532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -73856,7 +76544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -73868,7 +76556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -73883,7 +76571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -73901,7 +76589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -73919,7 +76607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3447613187, "return_value": { "type": "enum::Key" }, @@ -73936,7 +76624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "force_process_and_drop_events", @@ -73944,7 +76632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_native_icon", @@ -73952,7 +76640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "filename", @@ -73966,7 +76654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 532598488, "arguments": [ { "name": "image", @@ -73980,7 +76668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -73992,7 +76680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -74010,7 +76698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -74021,7 +76709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -74040,6 +76728,7 @@ "enums": [ { "name": "CompressionMode", + "is_bitfield": false, "values": [ { "name": "COMPRESS_NONE", @@ -74065,6 +76754,7 @@ }, { "name": "EventType", + "is_bitfield": false, "values": [ { "name": "EVENT_ERROR", @@ -74090,6 +76780,7 @@ }, { "name": "HostStatistic", + "is_bitfield": false, "values": [ { "name": "HOST_TOTAL_SENT_DATA", @@ -74117,7 +76808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3777066231, + "hash": 866250949, "return_value": { "type": "enum::Error" }, @@ -74163,7 +76854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3286190379, + "hash": 117198950, "return_value": { "type": "enum::Error" }, @@ -74200,7 +76891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "connect_to_host", @@ -74208,7 +76899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 385984708, "return_value": { "type": "ENetPacketPeer" }, @@ -74242,7 +76933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297011, + "hash": 2402345344, "return_value": { "type": "Array" }, @@ -74261,7 +76952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "bandwidth_limit", @@ -74269,7 +76960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 747192287, + "hash": 2302169788, "arguments": [ { "name": "in_bandwidth", @@ -74291,7 +76982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "limit", @@ -74306,7 +76997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2772371345, "arguments": [ { "name": "channel", @@ -74330,7 +77021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2660215187, "arguments": [ { "name": "mode", @@ -74344,7 +77035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3447544237, "return_value": { "type": "enum::Error" }, @@ -74365,7 +77056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2959136280, "return_value": { "type": "enum::Error" }, @@ -74391,7 +77082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "refuse", @@ -74405,7 +77096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2166904170, "return_value": { "type": "float", "meta": "double" @@ -74423,7 +77114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -74435,7 +77126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -74447,7 +77138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -74467,7 +77158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 663665249, + "hash": 1616151701, "return_value": { "type": "enum::Error" }, @@ -74509,7 +77200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1208486950, + "hash": 920217784, "return_value": { "type": "enum::Error" }, @@ -74555,7 +77246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 844576869, "return_value": { "type": "enum::Error" }, @@ -74573,7 +77264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1293458335, "return_value": { "type": "enum::Error" }, @@ -74595,7 +77286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1814615277, + "hash": 2886164389, "arguments": [ { "name": "wait_usec", @@ -74611,7 +77302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "ip", @@ -74625,7 +77316,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -74639,7 +77330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -74650,7 +77341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4103238886, "return_value": { "type": "ENetConnection" } @@ -74661,7 +77352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3793311544, "return_value": { "type": "ENetPacketPeer" }, @@ -74722,6 +77413,7 @@ "enums": [ { "name": "PeerState", + "is_bitfield": false, "values": [ { "name": "STATE_DISCONNECTED", @@ -74767,6 +77459,7 @@ }, { "name": "PeerStatistic", + "is_bitfield": false, "values": [ { "name": "PEER_PACKET_LOSS", @@ -74834,7 +77527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "data", @@ -74850,7 +77543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "data", @@ -74866,7 +77559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "data", @@ -74882,7 +77575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "ping_interval", @@ -74890,7 +77583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "ping_interval", @@ -74905,7 +77598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "send", @@ -74913,7 +77606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 120522849, "return_value": { "type": "enum::Error" }, @@ -74940,7 +77633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1649997291, "arguments": [ { "name": "interval", @@ -74965,7 +77658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1649997291, "arguments": [ { "name": "timeout", @@ -74990,7 +77683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1642578323, "return_value": { "type": "float", "meta": "double" @@ -75008,7 +77701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 711068532, "return_value": { "type": "enum::ENetPacketPeer.PeerState" } @@ -75019,7 +77712,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -75031,7 +77724,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -75051,7 +77744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 3664614892, "arguments": [ { "name": "command_name", @@ -75078,7 +77771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "key_name", @@ -75101,7 +77794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1209351045, "arguments": [ { "name": "message", @@ -75119,7 +77812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1874754934, "arguments": [ { "name": "name", @@ -75137,7 +77830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -75151,7 +77844,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2041966384, "return_value": { "type": "bool" }, @@ -75168,7 +77861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -75179,7 +77872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -75190,7 +77883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -75283,7 +77976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3098291045, "arguments": [ { "name": "path", @@ -75305,7 +77998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -75319,7 +78012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 527928637, "arguments": [ { "name": "path", @@ -75341,7 +78034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -75355,7 +78048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -75369,7 +78062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "plist_content", @@ -75383,7 +78076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "flags", @@ -75397,7 +78090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -75411,7 +78104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "code", @@ -75420,12 +78113,12 @@ ] }, { - "name": "add_osx_plugin_file", + "name": "add_macos_plugin_file", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -75439,7 +78132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -75452,6 +78145,7 @@ "enums": [ { "name": "Feature", + "is_bitfield": false, "values": [ { "name": "FEATURE_3D", @@ -75495,7 +78189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2524380260, "arguments": [ { "name": "class_name", @@ -75513,7 +78207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -75530,7 +78224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2524380260, "arguments": [ { "name": "class_name", @@ -75548,7 +78242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -75565,7 +78259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 865197084, "arguments": [ { "name": "class_name", @@ -75587,7 +78281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -75608,7 +78302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1884871044, "arguments": [ { "name": "feature", @@ -75626,7 +78320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2974403161, "return_value": { "type": "bool" }, @@ -75643,7 +78337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3401335809, "return_value": { "type": "String" }, @@ -75660,7 +78354,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -75677,7 +78371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -75699,6 +78393,7 @@ "enums": [ { "name": "FileMode", + "is_bitfield": false, "values": [ { "name": "FILE_MODE_OPEN_FILE", @@ -75724,6 +78419,7 @@ }, { "name": "Access", + "is_bitfield": false, "values": [ { "name": "ACCESS_RESOURCES", @@ -75741,6 +78437,7 @@ }, { "name": "DisplayMode", + "is_bitfield": false, "values": [ { "name": "DISPLAY_THUMBNAILS", @@ -75760,7 +78457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_filter", @@ -75768,11 +78465,16 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 233059325, "arguments": [ { "name": "filter", "type": "String" + }, + { + "name": "description", + "type": "String", + "default_value": "\"\"" } ] }, @@ -75782,7 +78484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -75793,7 +78495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -75804,7 +78506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -75815,7 +78517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "dir", @@ -75829,7 +78531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "file", @@ -75843,7 +78545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -75857,7 +78559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 274150415, "arguments": [ { "name": "mode", @@ -75871,7 +78573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2681044145, "return_value": { "type": "enum::EditorFileDialog.FileMode" } @@ -75882,7 +78584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 915758477, "return_value": { "type": "VBoxContainer" } @@ -75893,7 +78595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3882893764, "arguments": [ { "name": "access", @@ -75907,7 +78609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 778734016, "return_value": { "type": "enum::EditorFileDialog.Access" } @@ -75918,7 +78620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "show", @@ -75932,7 +78634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -75943,7 +78645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3049004050, "arguments": [ { "name": "mode", @@ -75957,7 +78659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3517174669, "return_value": { "type": "enum::EditorFileDialog.DisplayMode" } @@ -75968,7 +78670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disable", @@ -75982,7 +78684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -75993,7 +78695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "signals": [ @@ -76097,7 +78799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 842323275, "return_value": { "type": "EditorFileSystemDirectory" } @@ -76108,7 +78810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -76119,7 +78821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -76131,7 +78833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "scan_sources", @@ -76139,7 +78841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "update_file", @@ -76147,7 +78849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -76161,7 +78863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3188521125, "return_value": { "type": "EditorFileSystemDirectory" }, @@ -76178,7 +78880,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -76195,7 +78897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "reimport_files", @@ -76203,7 +78905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "files", @@ -76258,7 +78960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -76270,7 +78972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2330964164, "return_value": { "type": "EditorFileSystemDirectory" }, @@ -76288,7 +78990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -76300,7 +79002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -76318,7 +79020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -76336,7 +79038,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -76354,7 +79056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -76372,7 +79074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -76390,7 +79092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -76408,7 +79110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -76419,7 +79121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -76430,7 +79132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 842323275, "return_value": { "type": "EditorFileSystemDirectory" } @@ -76441,7 +79143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int32" @@ -76459,7 +79161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int32" @@ -76916,7 +79618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "control", @@ -76930,7 +79632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3406284123, "arguments": [ { "name": "property", @@ -76953,7 +79655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 788598683, "arguments": [ { "name": "label", @@ -76984,7 +79686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 188527247, + "hash": 2564140749, "arguments": [ { "name": "object", @@ -77008,7 +79710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 50507531, "return_value": { "type": "EditorSelection" } @@ -77019,7 +79721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2469088558, "return_value": { "type": "EditorSettings" } @@ -77030,7 +79732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3947407316, "return_value": { "type": "ScriptEditor" } @@ -77041,7 +79743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 829782337, "return_value": { "type": "Control" } @@ -77052,7 +79754,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -77064,7 +79766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "resource", @@ -77078,7 +79780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -77092,7 +79794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 420673793, + "hash": 3664508569, "arguments": [ { "name": "script", @@ -77123,7 +79825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "scene_filepath", @@ -77137,7 +79839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "scene_filepath", @@ -77151,7 +79853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "play_current_scene", @@ -77159,7 +79861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "play_custom_scene", @@ -77167,7 +79869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "scene_filepath", @@ -77181,7 +79883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing_scene", @@ -77189,7 +79891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -77200,7 +79902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -77211,7 +79913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -77222,7 +79924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1818953479, "return_value": { "type": "Node" } @@ -77233,7 +79935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1578506115, "return_value": { "type": "EditorResourcePreview" } @@ -77244,7 +79946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 492575303, "return_value": { "type": "EditorFileSystem" } @@ -77255,7 +79957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 829782337, "return_value": { "type": "Control" } @@ -77266,7 +79968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 878078554, "return_value": { "type": "Array" }, @@ -77288,7 +79990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "file", @@ -77302,7 +80004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -77313,7 +80015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -77324,7 +80026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 561123517, "return_value": { "type": "FileSystemDock" } @@ -77335,7 +80037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4197665367, "return_value": { "type": "EditorPaths" } @@ -77346,7 +80048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2471163807, "return_value": { "type": "EditorCommandPalette" } @@ -77357,7 +80059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2678287736, "arguments": [ { "name": "plugin", @@ -77375,7 +80077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -77392,7 +80094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3517113938, "return_value": { "type": "EditorInspector" } @@ -77403,7 +80105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -77414,7 +80116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1168363258, "arguments": [ { "name": "path", @@ -77433,7 +80135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -77447,7 +80149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enter", @@ -77461,7 +80163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -77701,7 +80403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 302451090, "arguments": [ { "name": "lines", @@ -77729,7 +80431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3942238741, + "hash": 1868867708, "arguments": [ { "name": "mesh", @@ -77758,7 +80460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "segments", @@ -77772,7 +80474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 54901064, "arguments": [ { "name": "triangles", @@ -77786,7 +80488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3121317638, + "hash": 3719733075, "arguments": [ { "name": "material", @@ -77811,7 +80513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 2254560097, "arguments": [ { "name": "handles", @@ -77843,7 +80545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -77857,7 +80559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 151077316, "return_value": { "type": "Node3D" } @@ -77868,7 +80570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4250544552, "return_value": { "type": "EditorNode3DGizmoPlugin" } @@ -77879,7 +80581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_hidden", @@ -77887,7 +80589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "hidden", @@ -77901,7 +80603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -77919,7 +80621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -78268,7 +80970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 60158893, + "hash": 3486012546, "arguments": [ { "name": "name", @@ -78301,7 +81003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 2976007329, "arguments": [ { "name": "name", @@ -78329,7 +81031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 182667338, + "hash": 2486475223, "arguments": [ { "name": "name", @@ -78353,7 +81055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1374068695, "arguments": [ { "name": "name", @@ -78371,7 +81073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3501703615, "return_value": { "type": "StandardMaterial3D" }, @@ -78402,7 +81104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -78413,7 +81115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -78424,7 +81126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -78435,7 +81137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -78446,7 +81148,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, + { + "name": "get_project_settings_dir", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, "return_value": { "type": "String" } @@ -78462,6 +81175,7 @@ "enums": [ { "name": "CustomControlContainer", + "is_bitfield": false, "values": [ { "name": "CONTAINER_TOOLBAR", @@ -78515,6 +81229,7 @@ }, { "name": "DockSlot", + "is_bitfield": false, "values": [ { "name": "DOCK_SLOT_LEFT_UL", @@ -78826,7 +81541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3092750152, "arguments": [ { "name": "container", @@ -78844,7 +81559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3526039376, "return_value": { "type": "Button" }, @@ -78865,7 +81580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3354871258, "arguments": [ { "name": "slot", @@ -78883,7 +81598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "control", @@ -78897,7 +81612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "control", @@ -78911,7 +81626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3092750152, "arguments": [ { "name": "container", @@ -78929,7 +81644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2137474292, "arguments": [ { "name": "name", @@ -78947,7 +81662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1019428915, "arguments": [ { "name": "name", @@ -78965,7 +81680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -78979,7 +81694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1775878644, "return_value": { "type": "PopupMenu" } @@ -78990,7 +81705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1986814599, "arguments": [ { "name": "type", @@ -79016,7 +81731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "type", @@ -79030,7 +81745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3186203200, "arguments": [ { "name": "name", @@ -79048,7 +81763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -79062,7 +81777,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -79074,7 +81789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "item", @@ -79088,7 +81803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_undo_redo", @@ -79096,7 +81811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 170677864, "return_value": { "type": "UndoRedo" } @@ -79107,7 +81822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1611583062, "arguments": [ { "name": "callable", @@ -79121,7 +81836,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1611583062, "arguments": [ { "name": "callable", @@ -79135,7 +81850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_translation_parser_plugin", @@ -79143,7 +81858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3116463128, "arguments": [ { "name": "parser", @@ -79157,7 +81872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3116463128, "arguments": [ { "name": "parser", @@ -79171,7 +81886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3113975762, "arguments": [ { "name": "importer", @@ -79190,7 +81905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312482773, "arguments": [ { "name": "importer", @@ -79204,7 +81919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2764104752, "arguments": [ { "name": "scene_format_importer", @@ -79223,7 +81938,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2637776123, "arguments": [ { "name": "scene_format_importer", @@ -79237,7 +81952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3492436322, "arguments": [ { "name": "scene_import_plugin", @@ -79256,7 +81971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3045178206, "arguments": [ { "name": "scene_import_plugin", @@ -79270,7 +81985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4095952207, "arguments": [ { "name": "plugin", @@ -79284,7 +81999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4095952207, "arguments": [ { "name": "plugin", @@ -79298,7 +82013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1541015022, "arguments": [ { "name": "plugin", @@ -79312,7 +82027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1541015022, "arguments": [ { "name": "plugin", @@ -79326,7 +82041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 546395733, "arguments": [ { "name": "plugin", @@ -79340,7 +82055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 546395733, "arguments": [ { "name": "plugin", @@ -79354,7 +82069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_force_draw_over_forwarding_enabled", @@ -79362,7 +82077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_editor_interface", @@ -79370,7 +82085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4223731786, "return_value": { "type": "EditorInterface" } @@ -79381,7 +82096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3121871482, "return_value": { "type": "ScriptCreateDialog" } @@ -79392,7 +82107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3657522847, "arguments": [ { "name": "script", @@ -79406,7 +82121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3657522847, "arguments": [ { "name": "script", @@ -79477,7 +82192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -79491,7 +82206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -79502,7 +82217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "read_only", @@ -79516,7 +82231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -79527,7 +82242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "checkable", @@ -79541,7 +82256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -79552,7 +82267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "checked", @@ -79566,7 +82281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -79577,7 +82292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "draw_warning", @@ -79591,7 +82306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -79602,7 +82317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "keying", @@ -79616,7 +82331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -79627,7 +82342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "deletable", @@ -79641,18 +82356,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, { "name": "get_edited_property", - "is_const": false, + "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -79663,7 +82378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2050059866, "return_value": { "type": "Object" } @@ -79674,7 +82389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -79685,7 +82400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_focusable", @@ -79693,7 +82408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "control", @@ -79707,7 +82422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "editor", @@ -79721,7 +82436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 3069422438, "arguments": [ { "name": "property", @@ -80013,7 +82728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "base_type", @@ -80027,7 +82742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -80038,7 +82753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -80049,7 +82764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "resource", @@ -80063,7 +82778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2674603643, "return_value": { "type": "Resource" } @@ -80074,7 +82789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -80088,7 +82803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -80099,7 +82814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -80113,7 +82828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -80127,7 +82842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -80201,7 +82916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 233177534, "arguments": [ { "name": "path", @@ -80227,7 +82942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1608376650, "arguments": [ { "name": "resource", @@ -80253,7 +82968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 332288124, "arguments": [ { "name": "generator", @@ -80267,7 +82982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 332288124, "arguments": [ { "name": "generator", @@ -80281,7 +82996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -80557,7 +83272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -80573,6 +83288,7 @@ "enums": [ { "name": "InternalImportCategory", + "is_bitfield": false, "values": [ { "name": "INTERNAL_IMPORT_CATEGORY_NODE", @@ -80599,8 +83315,12 @@ "value": 5 }, { - "name": "INTERNAL_IMPORT_CATEGORY_MAX", + "name": "INTERNAL_IMPORT_CATEGORY_SKELETON_3D_NODE", "value": 6 + }, + { + "name": "INTERNAL_IMPORT_CATEGORY_MAX", + "value": 7 } ] } @@ -80757,7 +83477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -80774,7 +83494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 402577236, "arguments": [ { "name": "name", @@ -80792,7 +83512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626862, + "hash": 3774155785, "arguments": [ { "name": "type", @@ -80820,7 +83540,7 @@ "name": "usage_flags", "type": "int", "meta": "int32", - "default_value": "7" + "default_value": "6" } ] } @@ -80846,7 +83566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -80860,7 +83580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1818953479, "return_value": { "type": "Node" } @@ -80871,7 +83591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4223731786, "return_value": { "type": "EditorInterface" } @@ -80891,7 +83611,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "owner_node", @@ -80905,7 +83625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -80934,7 +83654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_node", @@ -80942,7 +83662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -80956,7 +83676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -80970,7 +83690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -80981,7 +83701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -81012,7 +83732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -81029,7 +83749,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 402577236, "arguments": [ { "name": "name", @@ -81047,7 +83767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1868160156, "return_value": { "type": "Variant" }, @@ -81064,7 +83784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "property", @@ -81078,7 +83798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1529169264, "arguments": [ { "name": "name", @@ -81100,7 +83820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -81117,7 +83837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 309047738, "return_value": { "type": "Variant" }, @@ -81134,7 +83854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "info", @@ -81142,24 +83862,13 @@ } ] }, - { - "name": "get_project_settings_dir", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "String" - } - }, { "name": "set_project_metadata", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2504492430, "arguments": [ { "name": "section", @@ -81181,7 +83890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 89809366, "return_value": { "type": "Variant" }, @@ -81207,7 +83916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "dirs", @@ -81221,7 +83930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -81232,7 +83941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "dirs", @@ -81246,7 +83955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -81257,7 +83966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1209351045, "arguments": [ { "name": "name", @@ -81275,7 +83984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -81292,7 +84001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -81303,7 +84012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "setting", @@ -81331,7 +84040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "label", @@ -81345,7 +84054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -81356,7 +84065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "suffix", @@ -81370,7 +84079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -81381,7 +84090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "read_only", @@ -81395,7 +84104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -81406,7 +84115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flat", @@ -81420,7 +84129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -81431,7 +84140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "hide_slider", @@ -81445,7 +84154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -81567,6 +84276,7 @@ "enums": [ { "name": "ChangeType", + "is_bitfield": false, "values": [ { "name": "CHANGE_TYPE_NEW", @@ -81596,6 +84306,7 @@ }, { "name": "TreeArea", + "is_bitfield": false, "values": [ { "name": "TREE_AREA_COMMIT", @@ -81947,7 +84658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 2901184053, "return_value": { "type": "Dictionary" }, @@ -81978,7 +84689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 3784842090, "return_value": { "type": "Dictionary" }, @@ -82011,7 +84722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2723227684, "return_value": { "type": "Dictionary" }, @@ -82032,7 +84743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517835, + "hash": 1075983584, "return_value": { "type": "Dictionary" }, @@ -82067,7 +84778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1083471673, "return_value": { "type": "Dictionary" }, @@ -82092,7 +84803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 4015243225, "return_value": { "type": "Dictionary" }, @@ -82113,7 +84824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 4015243225, "return_value": { "type": "Dictionary" }, @@ -82134,7 +84845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "msg", @@ -82157,7 +84868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -82172,7 +84883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -82202,7 +84913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "physics_ticks_per_second", @@ -82217,7 +84928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -82229,7 +84940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "physics_jitter_fix", @@ -82244,7 +84955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -82256,7 +84967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -82268,7 +84979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "target_fps", @@ -82283,7 +84994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -82295,7 +85006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time_scale", @@ -82310,7 +85021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "double" @@ -82322,7 +85033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -82334,7 +85045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -82346,7 +85057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -82358,7 +85069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -82370,7 +85081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1016888095, "return_value": { "type": "MainLoop" } @@ -82381,7 +85092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -82392,7 +85103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -82403,7 +85114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -82414,7 +85125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -82425,7 +85136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -82436,7 +85147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -82447,7 +85158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -82458,7 +85169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -82475,7 +85186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1371597918, "return_value": { "type": "Object" }, @@ -82492,7 +85203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 965313290, "arguments": [ { "name": "name", @@ -82510,7 +85221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -82524,7 +85235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -82535,7 +85246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1327703655, "arguments": [ { "name": "language", @@ -82549,7 +85260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -82561,7 +85272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2151255799, "return_value": { "type": "ScriptLanguage" }, @@ -82579,18 +85290,29 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, + { + "name": "get_write_movie_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, { "name": "set_print_error_messages", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -82604,7 +85326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -82661,7 +85383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -82672,7 +85394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3651669560, "arguments": [ { "name": "name", @@ -82690,7 +85412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -82704,7 +85426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2041966384, "return_value": { "type": "bool" }, @@ -82721,7 +85443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2041966384, "return_value": { "type": "bool" }, @@ -82738,7 +85460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1895267858, "arguments": [ { "name": "name", @@ -82756,7 +85478,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 438160728, "arguments": [ { "name": "name", @@ -82779,7 +85501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1874754934, "arguments": [ { "name": "name", @@ -82797,7 +85519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -82811,7 +85533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2041966384, "return_value": { "type": "bool" }, @@ -82828,7 +85550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1209351045, "arguments": [ { "name": "message", @@ -82915,6 +85637,7 @@ "enums": [ { "name": "BGMode", + "is_bitfield": false, "values": [ { "name": "BG_CLEAR_COLOR", @@ -82948,6 +85671,7 @@ }, { "name": "AmbientSource", + "is_bitfield": false, "values": [ { "name": "AMBIENT_SOURCE_BG", @@ -82969,6 +85693,7 @@ }, { "name": "ReflectionSource", + "is_bitfield": false, "values": [ { "name": "REFLECTION_SOURCE_BG", @@ -82986,6 +85711,7 @@ }, { "name": "ToneMapper", + "is_bitfield": false, "values": [ { "name": "TONE_MAPPER_LINEAR", @@ -83007,6 +85733,7 @@ }, { "name": "GlowBlendMode", + "is_bitfield": false, "values": [ { "name": "GLOW_BLEND_MODE_ADDITIVE", @@ -83032,6 +85759,7 @@ }, { "name": "SDFGIYScale", + "is_bitfield": false, "values": [ { "name": "SDFGI_Y_SCALE_50_PERCENT", @@ -83055,7 +85783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4071623990, "arguments": [ { "name": "mode", @@ -83069,7 +85797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1843210413, "return_value": { "type": "enum::Environment.BGMode" } @@ -83080,7 +85808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3336722921, "arguments": [ { "name": "sky", @@ -83094,7 +85822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1177136966, "return_value": { "type": "Sky" } @@ -83105,7 +85833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -83120,7 +85848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83132,7 +85860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "euler_radians", @@ -83146,7 +85874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -83157,7 +85885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -83171,7 +85899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -83182,7 +85910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -83197,7 +85925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83209,7 +85937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -83224,7 +85952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -83236,7 +85964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -83251,7 +85979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -83263,7 +85991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -83277,7 +86005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -83288,7 +86016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2607780160, "arguments": [ { "name": "source", @@ -83302,7 +86030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 67453933, "return_value": { "type": "enum::Environment.AmbientSource" } @@ -83313,7 +86041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -83328,7 +86056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83340,7 +86068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -83355,7 +86083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83367,7 +86095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 299673197, "arguments": [ { "name": "source", @@ -83381,7 +86109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 777700713, "return_value": { "type": "enum::Environment.ReflectionSource" } @@ -83392,7 +86120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509116664, "arguments": [ { "name": "mode", @@ -83406,7 +86134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2908408137, "return_value": { "type": "enum::Environment.ToneMapper" } @@ -83417,7 +86145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure", @@ -83432,7 +86160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83444,7 +86172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "white", @@ -83459,7 +86187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83471,7 +86199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -83485,7 +86213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -83496,7 +86224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure_max", @@ -83511,7 +86239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83523,7 +86251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure_min", @@ -83538,7 +86266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83550,7 +86278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure_speed", @@ -83565,7 +86293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83577,7 +86305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure_grey", @@ -83592,7 +86320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83604,7 +86332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -83618,7 +86346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -83629,7 +86357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_steps", @@ -83644,7 +86372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -83656,7 +86384,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fade_in", @@ -83671,7 +86399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83683,7 +86411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fade_out", @@ -83698,7 +86426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83710,7 +86438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "depth_tolerance", @@ -83725,7 +86453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83737,7 +86465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -83751,7 +86479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -83762,7 +86490,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -83777,7 +86505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83789,7 +86517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "intensity", @@ -83804,7 +86532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83816,7 +86544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "power", @@ -83831,7 +86559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83843,7 +86571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "detail", @@ -83858,7 +86586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83870,7 +86598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "horizon", @@ -83885,7 +86613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83897,7 +86625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sharpness", @@ -83912,7 +86640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83924,7 +86652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -83939,7 +86667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83951,7 +86679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -83966,7 +86694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -83978,7 +86706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -83992,7 +86720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84003,7 +86731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -84018,7 +86746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84030,7 +86758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "intensity", @@ -84045,7 +86773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84057,7 +86785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sharpness", @@ -84072,7 +86800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84084,7 +86812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "normal_rejection", @@ -84099,7 +86827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84111,7 +86839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -84125,7 +86853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84136,7 +86864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -84151,7 +86879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -84163,7 +86891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -84178,7 +86906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84190,7 +86918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -84205,7 +86933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84217,7 +86945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -84232,7 +86960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84244,7 +86972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3608608372, "arguments": [ { "name": "scale", @@ -84258,7 +86986,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2568002245, "return_value": { "type": "enum::Environment.SDFGIYScale" } @@ -84269,7 +86997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -84283,7 +87011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84294,7 +87022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -84309,7 +87037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84321,7 +87049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -84335,7 +87063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84346,7 +87074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -84361,7 +87089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84373,7 +87101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -84388,7 +87116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84400,7 +87128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -84415,7 +87143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84427,7 +87155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -84441,7 +87169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84452,7 +87180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "idx", @@ -84472,7 +87200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -84491,7 +87219,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "normalize", @@ -84505,7 +87233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84516,7 +87244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "intensity", @@ -84531,7 +87259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84543,7 +87271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -84558,7 +87286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84570,7 +87298,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mix", @@ -84585,7 +87313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84597,7 +87325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -84612,7 +87340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84624,7 +87352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2561587761, "arguments": [ { "name": "mode", @@ -84638,7 +87366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1529667332, "return_value": { "type": "enum::Environment.GlowBlendMode" } @@ -84649,7 +87377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "threshold", @@ -84664,7 +87392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84676,7 +87404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -84691,7 +87419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84703,7 +87431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -84718,7 +87446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84730,7 +87458,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -84745,7 +87473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84757,7 +87485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1790811099, "arguments": [ { "name": "mode", @@ -84771,7 +87499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4037048985, "return_value": { "type": "Texture" } @@ -84782,7 +87510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -84796,7 +87524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -84807,7 +87535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "light_color", @@ -84821,7 +87549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -84832,7 +87560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "light_energy", @@ -84847,7 +87575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84859,7 +87587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sun_scatter", @@ -84874,7 +87602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84886,7 +87614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "density", @@ -84901,7 +87629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84913,7 +87641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -84928,7 +87656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84940,7 +87668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height_density", @@ -84955,7 +87683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84967,7 +87695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "aerial_perspective", @@ -84982,7 +87710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -84994,7 +87722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -85008,7 +87736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -85019,7 +87747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -85033,7 +87761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -85044,7 +87772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -85058,7 +87786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -85069,7 +87797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "density", @@ -85084,7 +87812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85096,7 +87824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "begin", @@ -85111,7 +87839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85123,7 +87851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "anisotropy", @@ -85138,7 +87866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85150,7 +87878,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -85165,7 +87893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85177,7 +87905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "detail_spread", @@ -85192,7 +87920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85204,7 +87932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gi_inject", @@ -85219,7 +87947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85231,7 +87959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "enabled", @@ -85246,7 +87974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85258,7 +87986,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -85272,7 +88000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -85283,7 +88011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "temporal_reprojection_amount", @@ -85298,7 +88026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85310,7 +88038,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -85324,7 +88052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -85335,7 +88063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "brightness", @@ -85350,7 +88078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85362,7 +88090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "contrast", @@ -85377,7 +88105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85389,7 +88117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "saturation", @@ -85404,7 +88132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -85416,7 +88144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1790811099, "arguments": [ { "name": "color_correction", @@ -85430,7 +88158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4037048985, "return_value": { "type": "Texture" } @@ -86124,7 +88852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3658149758, "return_value": { "type": "enum::Error" }, @@ -86146,7 +88874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1604761611, + "hash": 3712471238, "return_value": { "type": "Variant" }, @@ -86165,6 +88893,11 @@ "name": "show_error", "type": "bool", "default_value": "true" + }, + { + "name": "const_calls_only", + "type": "bool", + "default_value": "false" } ] }, @@ -86174,7 +88907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -86185,7 +88918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -86201,6 +88934,7 @@ "enums": [ { "name": "NoiseType", + "is_bitfield": false, "values": [ { "name": "TYPE_VALUE", @@ -86230,6 +88964,7 @@ }, { "name": "FractalType", + "is_bitfield": false, "values": [ { "name": "FRACTAL_NONE", @@ -86251,6 +88986,7 @@ }, { "name": "CellularDistanceFunction", + "is_bitfield": false, "values": [ { "name": "DISTANCE_EUCLIDEAN", @@ -86272,6 +89008,7 @@ }, { "name": "CellularReturnType", + "is_bitfield": false, "values": [ { "name": "RETURN_CELL_VALUE", @@ -86305,6 +89042,7 @@ }, { "name": "DomainWarpType", + "is_bitfield": false, "values": [ { "name": "DOMAIN_WARP_SIMPLEX", @@ -86322,6 +89060,7 @@ }, { "name": "DomainWarpFractalType", + "is_bitfield": false, "values": [ { "name": "DOMAIN_WARP_FRACTAL_NONE", @@ -86345,7 +89084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2624461392, "arguments": [ { "name": "type", @@ -86359,7 +89098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1458108610, "return_value": { "type": "enum::FastNoiseLite.NoiseType" } @@ -86370,7 +89109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "seed", @@ -86385,7 +89124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -86397,7 +89136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "freq", @@ -86412,7 +89151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86424,7 +89163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -86438,7 +89177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -86449,7 +89188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4132731174, "arguments": [ { "name": "type", @@ -86463,7 +89202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1036889279, "return_value": { "type": "enum::FastNoiseLite.FractalType" } @@ -86474,7 +89213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "octave_count", @@ -86489,7 +89228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -86501,7 +89240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "lacunarity", @@ -86516,7 +89255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86528,7 +89267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gain", @@ -86543,7 +89282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86555,7 +89294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "weighted_strength", @@ -86570,7 +89309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86582,7 +89321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ping_pong_strength", @@ -86597,7 +89336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86609,7 +89348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1006013267, "arguments": [ { "name": "func", @@ -86623,7 +89362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2021274088, "return_value": { "type": "enum::FastNoiseLite.CellularDistanceFunction" } @@ -86634,7 +89373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "jitter", @@ -86649,7 +89388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86661,7 +89400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2654169698, "arguments": [ { "name": "ret", @@ -86675,7 +89414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3699796343, "return_value": { "type": "enum::FastNoiseLite.CellularReturnType" } @@ -86686,7 +89425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "domain_warp_enabled", @@ -86700,7 +89439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -86711,7 +89450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3629692980, "arguments": [ { "name": "domain_warp_type", @@ -86725,7 +89464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2980162020, "return_value": { "type": "enum::FastNoiseLite.DomainWarpType" } @@ -86736,7 +89475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "domain_warp_amplitude", @@ -86751,7 +89490,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86763,7 +89502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "domain_warp_frequency", @@ -86778,7 +89517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86790,7 +89529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3999408287, "arguments": [ { "name": "domain_warp_fractal_type", @@ -86804,7 +89543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 407716934, "return_value": { "type": "enum::FastNoiseLite.DomainWarpFractalType" } @@ -86815,7 +89554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "domain_warp_octave_count", @@ -86830,7 +89569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -86842,7 +89581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "domain_warp_lacunarity", @@ -86857,7 +89596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -86869,7 +89608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "domain_warp_gain", @@ -86884,7 +89623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -87050,6 +89789,7 @@ "enums": [ { "name": "ModeFlags", + "is_bitfield": false, "values": [ { "name": "READ", @@ -87071,6 +89811,7 @@ }, { "name": "CompressionMode", + "is_bitfield": false, "values": [ { "name": "COMPRESSION_FASTLZ", @@ -87098,7 +89839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1337424764, "return_value": { "type": "enum::Error" }, @@ -87123,7 +89864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1053231221, "return_value": { "type": "enum::Error" }, @@ -87148,7 +89889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2636971738, "return_value": { "type": "enum::Error" }, @@ -87174,7 +89915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 985763342, "return_value": { "type": "enum::Error" }, @@ -87195,7 +89936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "close", @@ -87203,7 +89944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_path", @@ -87211,7 +89952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87222,7 +89963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87233,7 +89974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -87244,7 +89985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "position", @@ -87259,7 +90000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "position", @@ -87275,7 +90016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -87287,7 +90028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -87299,7 +90040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -87310,7 +90051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint8" @@ -87322,7 +90063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint16" @@ -87334,7 +90075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -87346,7 +90087,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -87358,7 +90099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -87370,7 +90111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -87382,7 +90123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -87394,7 +90135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4131300905, "return_value": { "type": "PackedByteArray" }, @@ -87412,7 +90153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87423,7 +90164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 365838458, + "hash": 2358116058, "return_value": { "type": "PackedStringArray" }, @@ -87441,7 +90182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87452,7 +90193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -87469,7 +90210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -87486,7 +90227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -87497,7 +90238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "big_endian", @@ -87511,7 +90252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3185525595, "return_value": { "type": "enum::Error" } @@ -87522,7 +90263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 189129690, "return_value": { "type": "Variant" }, @@ -87540,7 +90281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -87555,7 +90296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -87570,7 +90311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -87585,7 +90326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -87600,7 +90341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -87615,7 +90356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -87630,7 +90371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -87645,7 +90386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2971499966, "arguments": [ { "name": "buffer", @@ -87659,7 +90400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "line", @@ -87673,7 +90414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2217842308, "arguments": [ { "name": "values", @@ -87692,7 +90433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "string", @@ -87706,7 +90447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 738511890, "arguments": [ { "name": "value", @@ -87725,7 +90466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "string", @@ -87739,7 +90480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -87750,7 +90491,7 @@ "is_vararg": false, "is_static": true, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -87767,7 +90508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "uint64" @@ -87799,6 +90540,7 @@ "enums": [ { "name": "FileMode", + "is_bitfield": false, "values": [ { "name": "FILE_MODE_OPEN_FILE", @@ -87824,6 +90566,7 @@ }, { "name": "Access", + "is_bitfield": false, "values": [ { "name": "ACCESS_RESOURCES", @@ -87847,7 +90590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_filter", @@ -87855,11 +90598,16 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 233059325, "arguments": [ { "name": "filter", "type": "String" + }, + { + "name": "description", + "type": "String", + "default_value": "\"\"" } ] }, @@ -87869,7 +90617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "filters", @@ -87883,7 +90631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -87894,7 +90642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87905,7 +90653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87916,7 +90664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -87927,7 +90675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "dir", @@ -87941,7 +90689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "file", @@ -87955,7 +90703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -87969,7 +90717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "override", @@ -87983,7 +90731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -87994,7 +90742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3654936397, "arguments": [ { "name": "mode", @@ -88008,7 +90756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4074825319, "return_value": { "type": "enum::FileDialog.FileMode" } @@ -88019,7 +90767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 915758477, "return_value": { "type": "VBoxContainer" } @@ -88030,7 +90778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4071694264, "return_value": { "type": "LineEdit" } @@ -88041,7 +90789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4104413466, "arguments": [ { "name": "access", @@ -88055,18 +90803,43 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3344081076, "return_value": { "type": "enum::FileDialog.Access" } }, + { + "name": "set_root_subfolder", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "dir", + "type": "String" + } + ] + }, + { + "name": "get_root_subfolder", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, { "name": "set_show_hidden_files", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "show", @@ -88080,7 +90853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -88091,7 +90864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "invalidate", @@ -88099,7 +90872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "signals": [ @@ -88153,6 +90926,13 @@ "getter": "get_access", "index": -1 }, + { + "type": "String", + "name": "root_subfolder", + "setter": "set_root_subfolder", + "getter": "get_root_subfolder", + "index": -1 + }, { "type": "PackedStringArray", "name": "filters", @@ -88203,7 +90983,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -88293,7 +91073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -88314,7 +91094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "density", @@ -88329,7 +91109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -88341,7 +91121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "albedo", @@ -88355,7 +91135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -88366,7 +91146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "emission", @@ -88380,7 +91160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -88391,7 +91171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height_falloff", @@ -88406,7 +91186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -88418,7 +91198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "edge_fade", @@ -88433,7 +91213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -88445,7 +91225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1188404210, "arguments": [ { "name": "density_texture", @@ -88459,7 +91239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 373985333, "return_value": { "type": "Texture3D" } @@ -88523,7 +91303,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -88537,7 +91317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -88548,7 +91328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1416323362, "arguments": [ { "name": "shape", @@ -88562,7 +91342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3920334604, "return_value": { "type": "enum::RenderingServer.FogVolumeShape" } @@ -88573,7 +91353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -88587,7 +91367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -88620,175 +91400,79 @@ { "name": "Font", "is_refcounted": true, - "is_instantiable": true, + "is_instantiable": false, "inherits": "Resource", "api_type": "core", "methods": [ { - "name": "add_data", + "name": "set_fallbacks", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { - "name": "data", - "type": "FontData" + "name": "fallbacks", + "type": "Array" } ] }, { - "name": "set_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "data", - "type": "FontData" - } - ] - }, - { - "name": "get_data_count", + "name": "get_fallbacks", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { - "type": "int", - "meta": "int32" + "type": "Array" } }, { - "name": "get_data", + "name": "find_variation", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "FontData" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_data_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, + "hash": 3705324482, "return_value": { "type": "RID" }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "clear_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, - { - "name": "remove_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_variation_coordinates", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, "arguments": [ { "name": "variation_coordinates", "type": "Dictionary" - } - ] - }, - { - "name": "get_variation_coordinates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "set_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" }, { - "name": "value", + "name": "face_index", "type": "int", - "meta": "int32" + "meta": "int32", + "default_value": "0" + }, + { + "name": "strength", + "type": "float", + "meta": "float", + "default_value": "0.0" + }, + { + "name": "transform", + "type": "Transform2D", + "default_value": "Transform2D(1, 0, 0, 1, 0, 0)" } ] }, { - "name": "get_spacing", + "name": "get_rids", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3995934104, "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] + "type": "Array" + } }, { "name": "get_height", @@ -88796,14 +91480,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4222031257, + "hash": 378113874, "return_value": { "type": "float", "meta": "float" }, "arguments": [ { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -88816,14 +91500,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4222031257, + "hash": 378113874, "return_value": { "type": "float", "meta": "float" }, "arguments": [ { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -88836,14 +91520,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4222031257, + "hash": 378113874, "return_value": { "type": "float", "meta": "float" }, "arguments": [ { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -88856,14 +91540,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4222031257, + "hash": 378113874, "return_value": { "type": "float", "meta": "float" }, "arguments": [ { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -88876,27 +91560,109 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4222031257, + "hash": 378113874, "return_value": { "type": "float", "meta": "float" }, "arguments": [ { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" } ] }, + { + "name": "get_font_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, + { + "name": "get_font_style_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, + { + "name": "get_font_style", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2520224254, + "return_value": { + "type": "bitfield::TextServer.FontStyle" + } + }, + { + "name": "get_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1310880908, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + } + ] + }, + { + "name": "get_opentype_features", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3102165223, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_cache_capacity", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3937882851, + "arguments": [ + { + "name": "single_line", + "type": "int", + "meta": "int32" + }, + { + "name": "multi_line", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "get_string_size", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2495867029, + "hash": 3678918099, "return_value": { "type": "Vector2" }, @@ -88905,12 +91671,6 @@ "name": "text", "type": "String" }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "16" - }, { "name": "alignment", "type": "enum::HorizontalAlignment", @@ -88923,10 +91683,25 @@ "default_value": "-1" }, { - "name": "flags", + "name": "font_size", "type": "int", - "meta": "uint16", + "meta": "int32", + "default_value": "16" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" } ] }, @@ -88936,7 +91711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1721178056, + "hash": 2427690650, "return_value": { "type": "Vector2" }, @@ -88945,6 +91720,11 @@ "name": "text", "type": "String" }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, { "name": "width", "type": "float", @@ -88952,16 +91732,36 @@ "default_value": "-1" }, { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" }, { - "name": "flags", + "name": "max_lines", "type": "int", - "meta": "uint16", - "default_value": "96" + "meta": "int32", + "default_value": "-1" + }, + { + "name": "brk_flags", + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" } ] }, @@ -88971,7 +91771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 788614421, + "hash": 2565402639, "arguments": [ { "name": "canvas_item", @@ -88997,7 +91797,7 @@ "default_value": "-1" }, { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32", "default_value": "16" @@ -89008,21 +91808,19 @@ "default_value": "Color(1, 1, 1, 1)" }, { - "name": "outline_size", - "type": "int", - "meta": "int32", + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", "default_value": "0" }, { - "name": "outline_modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 0)" - }, - { - "name": "flags", - "type": "int", - "meta": "uint16", - "default_value": "3" + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" } ] }, @@ -89032,7 +91830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4242164481, + "hash": 348869189, "arguments": [ { "name": "canvas_item", @@ -89057,6 +91855,147 @@ "meta": "float", "default_value": "-1" }, + { + "name": "font_size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "max_lines", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "brk_flags", + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" + } + ] + }, + { + "name": "draw_string_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 657875837, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, + { + "name": "size", + "type": "int", + "meta": "int32", + "default_value": "1" + }, + { + "name": "modulate", + "type": "Color", + "default_value": "Color(1, 1, 1, 1)" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", + "default_value": "0" + }, + { + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" + } + ] + }, + { + "name": "draw_multiline_string_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1649790182, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" + }, + { + "name": "pos", + "type": "Vector2" + }, + { + "name": "text", + "type": "String" + }, + { + "name": "alignment", + "type": "enum::HorizontalAlignment", + "default_value": "0" + }, + { + "name": "width", + "type": "float", + "meta": "float", + "default_value": "-1" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32", + "default_value": "16" + }, { "name": "max_lines", "type": "int", @@ -89067,7 +92006,7 @@ "name": "size", "type": "int", "meta": "int32", - "default_value": "16" + "default_value": "1" }, { "name": "modulate", @@ -89075,21 +92014,24 @@ "default_value": "Color(1, 1, 1, 1)" }, { - "name": "outline_size", - "type": "int", - "meta": "int32", + "name": "brk_flags", + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" + }, + { + "name": "jst_flags", + "type": "bitfield::TextServer.JustificationFlag", + "default_value": "3" + }, + { + "name": "direction", + "type": "enum::TextServer.Direction", "default_value": "0" }, { - "name": "outline_modulate", - "type": "Color", - "default_value": "Color(1, 1, 1, 0)" - }, - { - "name": "flags", - "type": "int", - "meta": "uint16", - "default_value": "99" + "name": "orientation", + "type": "enum::TextServer.Orientation", + "default_value": "0" } ] }, @@ -89099,7 +92041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3892018839, + "hash": 3016396712, "return_value": { "type": "Vector2" }, @@ -89109,15 +92051,9 @@ "type": "int" }, { - "name": "next", + "name": "font_size", "type": "int", - "default_value": "0" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "16" + "meta": "int32" } ] }, @@ -89127,7 +92063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2263791, + "hash": 1462476057, "return_value": { "type": "float", "meta": "float" @@ -89146,31 +92082,56 @@ "type": "int" }, { - "name": "next", + "name": "font_size", "type": "int", - "default_value": "0" - }, - { - "name": "size", - "type": "int", - "meta": "int32", - "default_value": "16" + "meta": "int32" }, { "name": "modulate", "type": "Color", "default_value": "Color(1, 1, 1, 1)" + } + ] + }, + { + "name": "draw_char_outline", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4161008124, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "canvas_item", + "type": "RID" }, { - "name": "outline_size", + "name": "pos", + "type": "Vector2" + }, + { + "name": "char", + "type": "int" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32" + }, + { + "name": "size", "type": "int", "meta": "int32", - "default_value": "0" + "default_value": "-1" }, { - "name": "outline_modulate", + "name": "modulate", "type": "Color", - "default_value": "Color(1, 1, 1, 0)" + "default_value": "Color(1, 1, 1, 1)" } ] }, @@ -89180,7 +92141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -89197,60 +92158,86 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } }, { - "name": "update_changes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, - { - "name": "get_rids", + "name": "is_language_supported", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3927539163, "return_value": { - "type": "Array" + "type": "bool" + }, + "arguments": [ + { + "name": "language", + "type": "String" + } + ] + }, + { + "name": "is_script_supported", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3927539163, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "script", + "type": "String" + } + ] + }, + { + "name": "get_supported_feature_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3102165223, + "return_value": { + "type": "Dictionary" } - } - ], - "properties": [ - { - "type": "Dictionary", - "name": "variation_coordinates", - "setter": "set_variation_coordinates", - "getter": "get_variation_coordinates", - "index": -1 }, { - "type": "int", - "name": "spacing_top", - "setter": "set_spacing", - "getter": "get_spacing", - "index": 2 + "name": "get_supported_variation_list", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3102165223, + "return_value": { + "type": "Dictionary" + } }, { - "type": "int", - "name": "spacing_bottom", - "setter": "set_spacing", - "getter": "get_spacing", - "index": 3 + "name": "get_face_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int64" + } } ] }, { - "name": "FontData", + "name": "FontFile", "is_refcounted": true, "is_instantiable": true, - "inherits": "Resource", + "inherits": "Font", "api_type": "core", "methods": [ { @@ -89259,7 +92246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -89276,7 +92263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -89293,7 +92280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2971499966, "arguments": [ { "name": "data", @@ -89307,18 +92294,60 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } }, + { + "name": "set_font_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_font_style_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "set_font_style", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 918070724, + "arguments": [ + { + "name": "style", + "type": "bitfield::TextServer.FontStyle" + } + ] + }, { "name": "set_antialiased", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "antialiased", @@ -89332,7 +92361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -89343,7 +92372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "generate_mipmaps", @@ -89357,95 +92386,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, - { - "name": "set_font_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_font_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "String" - } - }, - { - "name": "set_font_style_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_font_style_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "String" - } - }, - { - "name": "set_font_style", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "style", - "type": "int", - "meta": "uint32" - } - ] - }, - { - "name": "get_font_style", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "int", - "meta": "uint32" - } - }, { "name": "set_multichannel_signed_distance_field", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "msdf", @@ -89459,7 +92411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -89470,7 +92422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "msdf_pixel_range", @@ -89485,7 +92437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -89497,7 +92449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "msdf_size", @@ -89512,7 +92464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -89524,7 +92476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "fixed_size", @@ -89539,7 +92491,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -89551,7 +92503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "force_autohinter", @@ -89565,7 +92517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -89576,7 +92528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1827459492, "arguments": [ { "name": "hinting", @@ -89590,7 +92542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3683214614, "return_value": { "type": "enum::TextServer.Hinting" } @@ -89601,7 +92553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4225742182, "arguments": [ { "name": "subpixel_positioning", @@ -89615,70 +92567,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1069238588, "return_value": { "type": "enum::TextServer.SubpixelPositioning" } }, - { - "name": "set_embolden", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "strength", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_embolden", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_transform", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "transform", - "type": "Transform2D" - } - ] - }, - { - "name": "get_transform", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Transform2D" - } - }, { "name": "set_oversampling", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "oversampling", @@ -89693,36 +92593,19 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } }, - { - "name": "find_cache", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "variation_coordinates", - "type": "Dictionary" - } - ] - }, { "name": "get_cache_count", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -89734,7 +92617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "remove_cache", @@ -89742,7 +92625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "cache_index", @@ -89757,7 +92640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -89775,7 +92658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "cache_index", @@ -89790,7 +92673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2311374912, "arguments": [ { "name": "cache_index", @@ -89809,7 +92692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 64545446, "arguments": [ { "name": "cache_index", @@ -89828,7 +92711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3485342025, "return_value": { "type": "Dictionary" }, @@ -89841,12 +92724,127 @@ ] }, { - "name": "set_ascent", + "name": "set_embolden", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1602489585, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_embolden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2339986948, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 30160968, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3836996910, + "return_value": { + "type": "Transform2D" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_face_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3937882851, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + }, + { + "name": "face_index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_face_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 923996154, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "cache_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_cache_ascent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3506521499, "arguments": [ { "name": "cache_index", @@ -89866,12 +92864,12 @@ ] }, { - "name": "get_ascent", + "name": "get_cache_ascent", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -89890,12 +92888,12 @@ ] }, { - "name": "set_descent", + "name": "set_cache_descent", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "cache_index", @@ -89915,12 +92913,12 @@ ] }, { - "name": "get_descent", + "name": "get_cache_descent", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -89939,12 +92937,12 @@ ] }, { - "name": "set_underline_position", + "name": "set_cache_underline_position", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "cache_index", @@ -89964,12 +92962,12 @@ ] }, { - "name": "get_underline_position", + "name": "get_cache_underline_position", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -89988,12 +92986,12 @@ ] }, { - "name": "set_underline_thickness", + "name": "set_cache_underline_thickness", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "cache_index", @@ -90013,12 +93011,12 @@ ] }, { - "name": "get_underline_thickness", + "name": "get_cache_underline_thickness", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -90037,12 +93035,12 @@ ] }, { - "name": "set_scale", + "name": "set_cache_scale", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "cache_index", @@ -90062,12 +93060,12 @@ ] }, { - "name": "get_scale", + "name": "get_cache_scale", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -90085,70 +93083,13 @@ } ] }, - { - "name": "set_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134295977, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "spacing_type", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135445994, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - }, - { - "name": "size", - "type": "int", - "meta": "int32" - }, - { - "name": "spacing_type", - "type": "enum::TextServer.SpacingType" - } - ] - }, { "name": "get_texture_count", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1987661582, "return_value": { "type": "int", "meta": "int32" @@ -90171,7 +93112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2311374912, "arguments": [ { "name": "cache_index", @@ -90190,7 +93131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2328951467, "arguments": [ { "name": "cache_index", @@ -90214,7 +93155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4157974066, "arguments": [ { "name": "cache_index", @@ -90242,7 +93183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3878418953, "return_value": { "type": "Image" }, @@ -90269,7 +93210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2849993437, "arguments": [ { "name": "cache_index", @@ -90297,7 +93238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3703444828, "return_value": { "type": "PackedInt32Array" }, @@ -90324,7 +93265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3611457556, "return_value": { "type": "Array" }, @@ -90346,7 +93287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2311374912, "arguments": [ { "name": "cache_index", @@ -90365,7 +93306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2328951467, "arguments": [ { "name": "cache_index", @@ -90389,7 +93330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 947991729, "arguments": [ { "name": "cache_index", @@ -90418,7 +93359,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1601573536, "return_value": { "type": "Vector2" }, @@ -90446,7 +93387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 921719850, "arguments": [ { "name": "cache_index", @@ -90474,7 +93415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3205412300, "return_value": { "type": "Vector2" }, @@ -90501,7 +93442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 921719850, "arguments": [ { "name": "cache_index", @@ -90529,7 +93470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3205412300, "return_value": { "type": "Vector2" }, @@ -90556,7 +93497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3821620992, "arguments": [ { "name": "cache_index", @@ -90584,7 +93525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3927917900, "return_value": { "type": "Rect2" }, @@ -90611,7 +93552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 355564111, "arguments": [ { "name": "cache_index", @@ -90640,7 +93581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1629411054, "return_value": { "type": "int", "meta": "int32" @@ -90668,7 +93609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2345056839, "return_value": { "type": "Array" }, @@ -90691,7 +93632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "cache_index", @@ -90711,7 +93652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3930204747, "arguments": [ { "name": "cache_index", @@ -90735,7 +93676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3182200918, "arguments": [ { "name": "cache_index", @@ -90763,7 +93704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1611912865, "return_value": { "type": "Vector2" }, @@ -90790,7 +93731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 355564111, "arguments": [ { "name": "cache_index", @@ -90817,7 +93758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2328951467, "arguments": [ { "name": "cache_index", @@ -90835,48 +93776,13 @@ } ] }, - { - "name": "get_cache_rid", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "RID" - }, - "arguments": [ - { - "name": "cache_index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "is_language_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "language", - "type": "String" - } - ] - }, { "name": "set_language_support_override", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2678287736, "arguments": [ { "name": "language", @@ -90894,7 +93800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -90911,7 +93817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -90925,35 +93831,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } }, - { - "name": "is_script_supported", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "script", - "type": "String" - } - ] - }, { "name": "set_script_support_override", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2678287736, "arguments": [ { "name": "script", @@ -90971,7 +93860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -90988,7 +93877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "script", @@ -91002,7 +93891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -91013,7 +93902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "overrides", @@ -91027,46 +93916,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } }, - { - "name": "has_char", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "char", - "type": "int" - } - ] - }, - { - "name": "get_supported_chars", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "String" - } - }, { "name": "get_glyph_index", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 864943070, "return_value": { "type": "int", "meta": "int32" @@ -91086,28 +93947,6 @@ "type": "int" } ] - }, - { - "name": "get_supported_feature_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Dictionary" - } - }, - { - "name": "get_supported_variation_list", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Dictionary" - } } ], "properties": [ @@ -91160,20 +93999,6 @@ "getter": "get_subpixel_positioning", "index": -1 }, - { - "type": "float", - "name": "embolden", - "setter": "set_embolden", - "getter": "get_embolden", - "index": -1 - }, - { - "type": "Transform2D", - "name": "transform", - "setter": "set_transform", - "getter": "get_transform", - "index": -1 - }, { "type": "bool", "name": "multichannel_signed_distance_field", @@ -91229,6 +94054,263 @@ "setter": "set_opentype_feature_overrides", "getter": "get_opentype_feature_overrides", "index": -1 + }, + { + "type": "Array", + "name": "fallbacks", + "setter": "set_fallbacks", + "getter": "get_fallbacks", + "index": -1 + } + ] + }, + { + "name": "FontVariation", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Font", + "api_type": "core", + "methods": [ + { + "name": "set_base_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1262170328, + "arguments": [ + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_base_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3229501585, + "return_value": { + "type": "Font" + } + }, + { + "name": "set_variation_opentype", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4155329257, + "arguments": [ + { + "name": "coords", + "type": "Dictionary" + } + ] + }, + { + "name": "get_variation_opentype", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3102165223, + "return_value": { + "type": "Dictionary" + } + }, + { + "name": "set_variation_embolden", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_variation_embolden", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_variation_face_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "face_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_variation_face_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_variation_transform", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2761652528, + "arguments": [ + { + "name": "transform", + "type": "Transform2D" + } + ] + }, + { + "name": "get_variation_transform", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3814499831, + "return_value": { + "type": "Transform2D" + } + }, + { + "name": "set_opentype_features", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4155329257, + "arguments": [ + { + "name": "features", + "type": "Dictionary" + } + ] + }, + { + "name": "set_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3122339690, + "arguments": [ + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int", + "meta": "int32" + } + ] + } + ], + "properties": [ + { + "type": "Font", + "name": "base_font", + "setter": "set_base_font", + "getter": "get_base_font", + "index": -1 + }, + { + "type": "Array", + "name": "fallbacks", + "setter": "set_fallbacks", + "getter": "get_fallbacks", + "index": -1 + }, + { + "type": "Dictionary", + "name": "variation_opentype", + "setter": "set_variation_opentype", + "getter": "get_variation_opentype", + "index": -1 + }, + { + "type": "int", + "name": "variation_face_index", + "setter": "set_variation_face_index", + "getter": "get_variation_face_index", + "index": -1 + }, + { + "type": "float", + "name": "variation_embolden", + "setter": "set_variation_embolden", + "getter": "get_variation_embolden", + "index": -1 + }, + { + "type": "Transform2D", + "name": "variation_transform", + "setter": "set_variation_transform", + "getter": "get_variation_transform", + "index": -1 + }, + { + "type": "Dictionary", + "name": "opentype_features", + "setter": "set_opentype_features", + "getter": "get_opentype_features", + "index": -1 + }, + { + "type": "int", + "name": "spacing_glyph", + "setter": "set_spacing", + "getter": "get_spacing", + "index": 0 + }, + { + "type": "int", + "name": "spacing_space", + "setter": "set_spacing", + "getter": "get_spacing", + "index": 1 + }, + { + "type": "int", + "name": "spacing_top", + "setter": "set_spacing", + "getter": "get_spacing", + "index": 2 + }, + { + "type": "int", + "name": "spacing_bottom", + "setter": "set_spacing", + "getter": "get_spacing", + "index": 3 } ] }, @@ -91245,7 +94327,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 135338151, + "hash": 1545262638, "return_value": { "type": "Variant" } @@ -91256,7 +94338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -91283,7 +94365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1460262497, "return_value": { "type": "Variant" } @@ -91303,7 +94385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91315,7 +94397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "buffer_view", @@ -91330,7 +94412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91342,7 +94424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "byte_offset", @@ -91357,7 +94439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91369,7 +94451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "component_type", @@ -91384,7 +94466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -91395,7 +94477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "normalized", @@ -91409,7 +94491,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91421,7 +94503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -91436,7 +94518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91448,7 +94530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "type", @@ -91463,7 +94545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 148677866, "return_value": { "type": "PackedFloat64Array" } @@ -91474,7 +94556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2576592201, "arguments": [ { "name": "min", @@ -91488,7 +94570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 148677866, "return_value": { "type": "PackedFloat64Array" } @@ -91499,7 +94581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2576592201, "arguments": [ { "name": "max", @@ -91513,7 +94595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91525,7 +94607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sparse_count", @@ -91540,7 +94622,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91552,7 +94634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sparse_indices_buffer_view", @@ -91567,7 +94649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91579,7 +94661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sparse_indices_byte_offset", @@ -91594,7 +94676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91606,7 +94688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sparse_indices_component_type", @@ -91621,7 +94703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91633,7 +94715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sparse_values_buffer_view", @@ -91648,7 +94730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91660,7 +94742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sparse_values_byte_offset", @@ -91784,7 +94866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -91795,7 +94877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "loop", @@ -91827,7 +94909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91839,7 +94921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "buffer", @@ -91854,7 +94936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91866,7 +94948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "byte_offset", @@ -91881,7 +94963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91893,7 +94975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "byte_length", @@ -91908,7 +94990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -91920,7 +95002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "byte_stride", @@ -91935,7 +95017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -91946,7 +95028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "indices", @@ -92006,7 +95088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -92017,7 +95099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "perspective", @@ -92031,7 +95113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -92043,7 +95125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fov_size", @@ -92058,7 +95140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -92070,7 +95152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "zdepth_far", @@ -92085,7 +95167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -92097,7 +95179,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "zdepth_near", @@ -92151,7 +95233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2146812409, + "hash": 151088826, "return_value": { "type": "enum::Error" }, @@ -92189,7 +95271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1552406093, + "hash": 3407700015, "return_value": { "type": "enum::Error" }, @@ -92226,7 +95308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 2536678188, "return_value": { "type": "enum::Error" }, @@ -92259,7 +95341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 1603623551, "return_value": { "type": "Node" }, @@ -92282,7 +95364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 741783455, "return_value": { "type": "PackedByteArray" }, @@ -92299,7 +95381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1784551478, "return_value": { "type": "enum::Error" }, @@ -92320,7 +95402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "extensions", @@ -92334,7 +95416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -92519,7 +95601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3200896285, "return_value": { "type": "Color" } @@ -92530,7 +95612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -92544,7 +95626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -92556,7 +95638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "intensity", @@ -92571,7 +95653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -92582,7 +95664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "light_type", @@ -92596,7 +95678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -92608,7 +95690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "range", @@ -92623,7 +95705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -92635,7 +95717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "inner_cone_angle", @@ -92650,7 +95732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -92662,7 +95744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "outer_cone_angle", @@ -92730,7 +95812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3754628756, "return_value": { "type": "ImporterMesh" } @@ -92741,7 +95823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2255166972, "arguments": [ { "name": "mesh", @@ -92755,7 +95837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2445143706, "return_value": { "type": "PackedFloat32Array" } @@ -92766,7 +95848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "blend_weights", @@ -92780,7 +95862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -92791,7 +95873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "instance_materials", @@ -92837,7 +95919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -92849,7 +95931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "parent", @@ -92864,7 +95946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -92876,7 +95958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "height", @@ -92891,7 +95973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4183770049, "return_value": { "type": "Transform3D" } @@ -92902,7 +95984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "xform", @@ -92916,7 +95998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -92928,7 +96010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mesh", @@ -92943,7 +96025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -92955,7 +96037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "camera", @@ -92970,7 +96052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -92982,7 +96064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "skin", @@ -92997,7 +96079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -93009,7 +96091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "skeleton", @@ -93024,7 +96106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -93035,7 +96117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "joint", @@ -93049,7 +96131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3783033775, "return_value": { "type": "Vector3" } @@ -93060,7 +96142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "position", @@ -93074,7 +96156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2916281908, "return_value": { "type": "Quaternion" } @@ -93085,7 +96167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1727505552, "arguments": [ { "name": "rotation", @@ -93099,7 +96181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3783033775, "return_value": { "type": "Vector3" } @@ -93110,7 +96192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "scale", @@ -93124,7 +96206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93135,7 +96217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "children", @@ -93149,7 +96231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -93161,7 +96243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "light", @@ -93278,7 +96360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93289,7 +96371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "joints", @@ -93303,7 +96385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93314,7 +96396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "roots", @@ -93328,7 +96410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1814733083, "return_value": { "type": "Skeleton3D" } @@ -93339,7 +96421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -93350,7 +96432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "unique_names", @@ -93364,7 +96446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -93375,7 +96457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "godot_bone_node", @@ -93389,7 +96471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -93401,7 +96483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 945440495, "return_value": { "type": "BoneAttachment3D" }, @@ -93458,7 +96540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -93470,7 +96552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "skin_root", @@ -93485,7 +96567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93496,7 +96578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "joints_original", @@ -93510,7 +96592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -93521,7 +96603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "inverse_binds", @@ -93535,7 +96617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93546,7 +96628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "joints", @@ -93560,7 +96642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93571,7 +96653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "non_joints", @@ -93585,7 +96667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -93596,7 +96678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "roots", @@ -93610,7 +96692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -93622,7 +96704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "skeleton", @@ -93637,7 +96719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -93648,7 +96730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "joint_i_to_bone_i", @@ -93662,7 +96744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -93673,7 +96755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "joint_i_to_name", @@ -93687,7 +96769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1032037385, "return_value": { "type": "Skin" } @@ -93698,7 +96780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3971435618, "arguments": [ { "name": "godot_skin", @@ -93793,7 +96875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 564927088, "return_value": { "type": "Image" } @@ -93804,7 +96886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 532598488, "arguments": [ { "name": "diffuse_img", @@ -93818,7 +96900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3200896285, "return_value": { "type": "Color" } @@ -93829,7 +96911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "diffuse_factor", @@ -93843,7 +96925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -93855,7 +96937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gloss_factor", @@ -93870,7 +96952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3200896285, "return_value": { "type": "Color" } @@ -93881,7 +96963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "specular_factor", @@ -93895,7 +96977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 564927088, "return_value": { "type": "Image" } @@ -93906,7 +96988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 532598488, "arguments": [ { "name": "spec_gloss_img", @@ -93966,7 +97048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -93977,7 +97059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "json", @@ -93991,7 +97073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -94003,7 +97085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "major_version", @@ -94018,7 +97100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -94030,7 +97112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "minor_version", @@ -94045,7 +97127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2115431945, "return_value": { "type": "PackedByteArray" } @@ -94056,7 +97138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2971499966, "arguments": [ { "name": "glb_data", @@ -94070,7 +97152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -94081,7 +97163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_named_skin_binds", @@ -94095,7 +97177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94106,7 +97188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "nodes", @@ -94120,7 +97202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94131,7 +97213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "buffers", @@ -94145,7 +97227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94156,7 +97238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "buffer_views", @@ -94170,7 +97252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94181,7 +97263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "accessors", @@ -94195,7 +97277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94206,7 +97288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "meshes", @@ -94220,7 +97302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -94239,7 +97321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 925043400, "return_value": { "type": "AnimationPlayer" }, @@ -94257,7 +97339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94268,7 +97350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "materials", @@ -94282,7 +97364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -94293,7 +97375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "scene_name", @@ -94307,7 +97389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -94318,7 +97400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "base_path", @@ -94332,7 +97414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94343,7 +97425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "root_nodes", @@ -94357,7 +97439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94368,7 +97450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "textures", @@ -94382,7 +97464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94393,7 +97475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "images", @@ -94407,7 +97489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94418,7 +97500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "skins", @@ -94432,7 +97514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94443,7 +97525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "cameras", @@ -94457,7 +97539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94468,7 +97550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "lights", @@ -94482,7 +97564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94493,7 +97575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "unique_names", @@ -94507,7 +97589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94518,7 +97600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "unique_animation_names", @@ -94532,7 +97614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94543,7 +97625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "skeletons", @@ -94557,7 +97639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -94568,7 +97650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "skeleton_to_node", @@ -94582,7 +97664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -94593,7 +97675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "animations", @@ -94607,7 +97689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4253421667, "return_value": { "type": "Node" }, @@ -94804,7 +97886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -94816,7 +97898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "src_image", @@ -94845,6 +97927,7 @@ "enums": [ { "name": "DrawOrder", + "is_bitfield": false, "values": [ { "name": "DRAW_ORDER_INDEX", @@ -94862,6 +97945,7 @@ }, { "name": "EmitFlags", + "is_bitfield": false, "values": [ { "name": "EMIT_FLAG_POSITION", @@ -94893,7 +97977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "emitting", @@ -94907,7 +97991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -94922,7 +98006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -94937,7 +98021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "secs", @@ -94951,7 +98035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -94966,7 +98050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -94981,7 +98065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -94996,7 +98080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "visibility_rect", @@ -95010,7 +98094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95024,7 +98108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "fps", @@ -95039,7 +98123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95053,7 +98137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95067,7 +98151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -95081,7 +98165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -95096,7 +98180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -95111,7 +98195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95122,7 +98206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -95134,7 +98218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -95146,7 +98230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95157,7 +98241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -95169,7 +98253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -95181,7 +98265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -95193,7 +98277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -95204,7 +98288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95215,7 +98299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -95227,7 +98311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95238,7 +98322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95249,7 +98333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -95260,7 +98344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -95272,7 +98356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -95284,7 +98368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1939677959, "arguments": [ { "name": "order", @@ -95298,7 +98382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 941479095, "return_value": { "type": "enum::GPUParticles2D.DrawOrder" } @@ -95309,7 +98393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -95323,7 +98407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -95334,7 +98418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -95345,7 +98429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_sub_emitter", @@ -95353,7 +98437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -95367,7 +98451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -95378,7 +98462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 2179202058, "arguments": [ { "name": "xform", @@ -95409,7 +98493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -95423,7 +98507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -95438,7 +98522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95449,7 +98533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -95461,7 +98545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sections", @@ -95476,7 +98560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -95488,7 +98572,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "subdivisions", @@ -95503,7 +98587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -95682,6 +98766,7 @@ "enums": [ { "name": "DrawOrder", + "is_bitfield": false, "values": [ { "name": "DRAW_ORDER_INDEX", @@ -95703,6 +98788,7 @@ }, { "name": "EmitFlags", + "is_bitfield": false, "values": [ { "name": "EMIT_FLAG_POSITION", @@ -95728,6 +98814,7 @@ }, { "name": "TransformAlign", + "is_bitfield": false, "values": [ { "name": "TRANSFORM_ALIGN_DISABLED", @@ -95755,7 +98842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "emitting", @@ -95769,7 +98856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -95784,7 +98871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -95799,7 +98886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95813,7 +98900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -95828,7 +98915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -95843,7 +98930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -95858,7 +98945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 259215842, "arguments": [ { "name": "aabb", @@ -95872,7 +98959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95886,7 +98973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "fps", @@ -95901,7 +98988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95915,7 +99002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -95929,7 +99016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -95943,7 +99030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -95958,7 +99045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -95973,7 +99060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -95984,7 +99071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -95996,7 +99083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -96008,7 +99095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -96019,7 +99106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -96031,7 +99118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96043,7 +99130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96055,7 +99142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -96066,7 +99153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -96077,7 +99164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -96089,7 +99176,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -96100,7 +99187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -96111,7 +99198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -96122,7 +99209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -96134,7 +99221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96146,7 +99233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1208074815, "arguments": [ { "name": "order", @@ -96160,7 +99247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3770381780, "return_value": { "type": "enum::GPUParticles3D.DrawOrder" } @@ -96171,7 +99258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "passes", @@ -96186,7 +99273,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 969122797, "arguments": [ { "name": "pass", @@ -96205,7 +99292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -96217,7 +99304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1576363275, "return_value": { "type": "Mesh" }, @@ -96235,7 +99322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3971435618, "arguments": [ { "name": "skin", @@ -96249,7 +99336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2074563878, "return_value": { "type": "Skin" } @@ -96260,7 +99347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "capture_aabb", @@ -96268,7 +99355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -96279,7 +99366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -96293,7 +99380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -96304,7 +99391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 992173727, "arguments": [ { "name": "xform", @@ -96335,7 +99422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -96349,7 +99436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "secs", @@ -96364,7 +99451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -96375,7 +99462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -96387,7 +99474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3892425954, "arguments": [ { "name": "align", @@ -96401,7 +99488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2100992166, "return_value": { "type": "enum::GPUParticles3D.TransformAlign" } @@ -96605,7 +99692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -96620,7 +99707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -96632,7 +99719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -96647,7 +99734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96659,7 +99746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "attenuation", @@ -96674,7 +99761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96686,7 +99773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -96701,7 +99788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96752,7 +99839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -96766,7 +99853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -96795,7 +99882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -96810,7 +99897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -96840,7 +99927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -96854,7 +99941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -96865,7 +99952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1188404210, "arguments": [ { "name": "texture", @@ -96879,7 +99966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 373985333, "return_value": { "type": "Texture3D" } @@ -96915,7 +100002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -96930,7 +100017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -96960,7 +100047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -96974,7 +100061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -96999,6 +100086,7 @@ "enums": [ { "name": "Resolution", + "is_bitfield": false, "values": [ { "name": "RESOLUTION_256", @@ -97032,6 +100120,7 @@ }, { "name": "UpdateMode", + "is_bitfield": false, "values": [ { "name": "UPDATE_MODE_WHEN_MOVED", @@ -97051,7 +100140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -97065,7 +100154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -97076,7 +100165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1009996517, "arguments": [ { "name": "resolution", @@ -97090,7 +100179,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1156065644, "return_value": { "type": "enum::GPUParticlesCollisionHeightField3D.Resolution" } @@ -97101,7 +100190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 673680859, "arguments": [ { "name": "update_mode", @@ -97115,7 +100204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1998141380, "return_value": { "type": "enum::GPUParticlesCollisionHeightField3D.UpdateMode" } @@ -97126,7 +100215,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -97140,7 +100229,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -97186,6 +100275,7 @@ "enums": [ { "name": "Resolution", + "is_bitfield": false, "values": [ { "name": "RESOLUTION_16", @@ -97225,7 +100315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -97239,7 +100329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -97250,7 +100340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1155629297, "arguments": [ { "name": "resolution", @@ -97264,7 +100354,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2919555867, "return_value": { "type": "enum::GPUParticlesCollisionSDF3D.Resolution" } @@ -97275,7 +100365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1188404210, "arguments": [ { "name": "texture", @@ -97289,7 +100379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 373985333, "return_value": { "type": "Texture3D" } @@ -97300,7 +100390,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "thickness", @@ -97315,7 +100405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -97366,7 +100456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -97381,7 +100471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -97407,6 +100497,7 @@ "enums": [ { "name": "Param", + "is_bitfield": false, "values": [ { "name": "PARAM_LINEAR_LOWER_LIMIT", @@ -97504,6 +100595,7 @@ }, { "name": "Flag", + "is_bitfield": false, "values": [ { "name": "FLAG_ENABLE_LINEAR_LIMIT", @@ -97543,7 +100635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2018184242, "arguments": [ { "name": "param", @@ -97562,7 +100654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2599835054, "return_value": { "type": "float", "meta": "float" @@ -97580,7 +100672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2018184242, "arguments": [ { "name": "param", @@ -97599,7 +100691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2599835054, "return_value": { "type": "float", "meta": "float" @@ -97617,7 +100709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2018184242, "arguments": [ { "name": "param", @@ -97636,7 +100728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2599835054, "return_value": { "type": "float", "meta": "float" @@ -97654,7 +100746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2451594564, "arguments": [ { "name": "flag", @@ -97672,7 +100764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2122427807, "return_value": { "type": "bool" }, @@ -97689,7 +100781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2451594564, "arguments": [ { "name": "flag", @@ -97707,7 +100799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2122427807, "return_value": { "type": "bool" }, @@ -97724,7 +100816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2451594564, "arguments": [ { "name": "flag", @@ -97742,7 +100834,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2122427807, "return_value": { "type": "bool" }, @@ -97797,6 +100889,90 @@ "getter": "get_param_x", "index": 4 }, + { + "type": "bool", + "name": "linear_limit_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_y/upper_distance", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 1 + }, + { + "type": "float", + "name": "linear_limit_y/lower_distance", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_y/softness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 2 + }, + { + "type": "float", + "name": "linear_limit_y/restitution", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 3 + }, + { + "type": "float", + "name": "linear_limit_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 4 + }, + { + "type": "bool", + "name": "linear_limit_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_z/upper_distance", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 1 + }, + { + "type": "float", + "name": "linear_limit_z/lower_distance", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 0 + }, + { + "type": "float", + "name": "linear_limit_z/softness", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 2 + }, + { + "type": "float", + "name": "linear_limit_z/restitution", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 3 + }, + { + "type": "float", + "name": "linear_limit_z/damping", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 4 + }, { "type": "bool", "name": "linear_motor_x/enabled", @@ -97818,6 +100994,48 @@ "getter": "get_param_x", "index": 6 }, + { + "type": "bool", + "name": "linear_motor_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_y/target_velocity", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_y/force_limit", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 6 + }, + { + "type": "bool", + "name": "linear_motor_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_z/target_velocity", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 5 + }, + { + "type": "float", + "name": "linear_motor_z/force_limit", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 6 + }, { "type": "bool", "name": "linear_spring_x/enabled", @@ -97846,6 +101064,62 @@ "getter": "get_param_x", "index": 9 }, + { + "type": "bool", + "name": "linear_spring_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 3 + }, + { + "type": "float", + "name": "linear_spring_y/stiffness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 7 + }, + { + "type": "float", + "name": "linear_spring_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 8 + }, + { + "type": "float", + "name": "linear_spring_y/equilibrium_point", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 9 + }, + { + "type": "bool", + "name": "linear_spring_z/enabled", + "setter": "set_flag_z", + "getter": "get_flag_z", + "index": 3 + }, + { + "type": "float", + "name": "linear_spring_z/stiffness", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 7 + }, + { + "type": "float", + "name": "linear_spring_z/damping", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 8 + }, + { + "type": "float", + "name": "linear_spring_z/equilibrium_point", + "setter": "set_param_z", + "getter": "get_param_z", + "index": 9 + }, { "type": "bool", "name": "angular_limit_x/enabled", @@ -97902,146 +101176,6 @@ "getter": "get_param_x", "index": 16 }, - { - "type": "bool", - "name": "angular_motor_x/enabled", - "setter": "set_flag_x", - "getter": "get_flag_x", - "index": 4 - }, - { - "type": "float", - "name": "angular_motor_x/target_velocity", - "setter": "set_param_x", - "getter": "get_param_x", - "index": 17 - }, - { - "type": "float", - "name": "angular_motor_x/force_limit", - "setter": "set_param_x", - "getter": "get_param_x", - "index": 18 - }, - { - "type": "bool", - "name": "angular_spring_x/enabled", - "setter": "set_flag_x", - "getter": "get_flag_x", - "index": 2 - }, - { - "type": "float", - "name": "angular_spring_x/stiffness", - "setter": "set_param_x", - "getter": "get_param_x", - "index": 19 - }, - { - "type": "float", - "name": "angular_spring_x/damping", - "setter": "set_param_x", - "getter": "get_param_x", - "index": 20 - }, - { - "type": "float", - "name": "angular_spring_x/equilibrium_point", - "setter": "set_param_x", - "getter": "get_param_x", - "index": 21 - }, - { - "type": "bool", - "name": "linear_limit_y/enabled", - "setter": "set_flag_y", - "getter": "get_flag_y", - "index": 0 - }, - { - "type": "float", - "name": "linear_limit_y/upper_distance", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 1 - }, - { - "type": "float", - "name": "linear_limit_y/lower_distance", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 0 - }, - { - "type": "float", - "name": "linear_limit_y/softness", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 2 - }, - { - "type": "float", - "name": "linear_limit_y/restitution", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 3 - }, - { - "type": "float", - "name": "linear_limit_y/damping", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 4 - }, - { - "type": "bool", - "name": "linear_motor_y/enabled", - "setter": "set_flag_y", - "getter": "get_flag_y", - "index": 5 - }, - { - "type": "float", - "name": "linear_motor_y/target_velocity", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 5 - }, - { - "type": "float", - "name": "linear_motor_y/force_limit", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 6 - }, - { - "type": "bool", - "name": "linear_spring_y/enabled", - "setter": "set_flag_y", - "getter": "get_flag_y", - "index": 3 - }, - { - "type": "float", - "name": "linear_spring_y/stiffness", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 7 - }, - { - "type": "float", - "name": "linear_spring_y/damping", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 8 - }, - { - "type": "float", - "name": "linear_spring_y/equilibrium_point", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 9 - }, { "type": "bool", "name": "angular_limit_y/enabled", @@ -98098,146 +101232,6 @@ "getter": "get_param_y", "index": 16 }, - { - "type": "bool", - "name": "angular_motor_y/enabled", - "setter": "set_flag_y", - "getter": "get_flag_y", - "index": 4 - }, - { - "type": "float", - "name": "angular_motor_y/target_velocity", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 17 - }, - { - "type": "float", - "name": "angular_motor_y/force_limit", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 18 - }, - { - "type": "bool", - "name": "angular_spring_y/enabled", - "setter": "set_flag_y", - "getter": "get_flag_y", - "index": 2 - }, - { - "type": "float", - "name": "angular_spring_y/stiffness", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 19 - }, - { - "type": "float", - "name": "angular_spring_y/damping", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 20 - }, - { - "type": "float", - "name": "angular_spring_y/equilibrium_point", - "setter": "set_param_y", - "getter": "get_param_y", - "index": 21 - }, - { - "type": "bool", - "name": "linear_limit_z/enabled", - "setter": "set_flag_z", - "getter": "get_flag_z", - "index": 0 - }, - { - "type": "float", - "name": "linear_limit_z/upper_distance", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 1 - }, - { - "type": "float", - "name": "linear_limit_z/lower_distance", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 0 - }, - { - "type": "float", - "name": "linear_limit_z/softness", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 2 - }, - { - "type": "float", - "name": "linear_limit_z/restitution", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 3 - }, - { - "type": "float", - "name": "linear_limit_z/damping", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 4 - }, - { - "type": "bool", - "name": "linear_motor_z/enabled", - "setter": "set_flag_z", - "getter": "get_flag_z", - "index": 5 - }, - { - "type": "float", - "name": "linear_motor_z/target_velocity", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 5 - }, - { - "type": "float", - "name": "linear_motor_z/force_limit", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 6 - }, - { - "type": "bool", - "name": "linear_spring_z/enabled", - "setter": "set_flag_z", - "getter": "get_flag_z", - "index": 3 - }, - { - "type": "float", - "name": "linear_spring_z/stiffness", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 7 - }, - { - "type": "float", - "name": "linear_spring_z/damping", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 8 - }, - { - "type": "float", - "name": "linear_spring_z/equilibrium_point", - "setter": "set_param_z", - "getter": "get_param_z", - "index": 9 - }, { "type": "bool", "name": "angular_limit_z/enabled", @@ -98294,6 +101288,48 @@ "getter": "get_param_z", "index": 16 }, + { + "type": "bool", + "name": "angular_motor_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 4 + }, + { + "type": "float", + "name": "angular_motor_x/target_velocity", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 17 + }, + { + "type": "float", + "name": "angular_motor_x/force_limit", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 18 + }, + { + "type": "bool", + "name": "angular_motor_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 4 + }, + { + "type": "float", + "name": "angular_motor_y/target_velocity", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 17 + }, + { + "type": "float", + "name": "angular_motor_y/force_limit", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 18 + }, { "type": "bool", "name": "angular_motor_z/enabled", @@ -98315,6 +101351,62 @@ "getter": "get_param_z", "index": 18 }, + { + "type": "bool", + "name": "angular_spring_x/enabled", + "setter": "set_flag_x", + "getter": "get_flag_x", + "index": 2 + }, + { + "type": "float", + "name": "angular_spring_x/stiffness", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 19 + }, + { + "type": "float", + "name": "angular_spring_x/damping", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 20 + }, + { + "type": "float", + "name": "angular_spring_x/equilibrium_point", + "setter": "set_param_x", + "getter": "get_param_x", + "index": 21 + }, + { + "type": "bool", + "name": "angular_spring_y/enabled", + "setter": "set_flag_y", + "getter": "get_flag_y", + "index": 2 + }, + { + "type": "float", + "name": "angular_spring_y/stiffness", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 19 + }, + { + "type": "float", + "name": "angular_spring_y/damping", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 20 + }, + { + "type": "float", + "name": "angular_spring_y/equilibrium_point", + "setter": "set_param_y", + "getter": "get_param_y", + "index": 21 + }, { "type": "bool", "name": "angular_spring_z/enabled", @@ -98354,6 +101446,7 @@ "enums": [ { "name": "PolyBooleanOperation", + "is_bitfield": false, "values": [ { "name": "OPERATION_UNION", @@ -98375,6 +101468,7 @@ }, { "name": "PolyJoinType", + "is_bitfield": false, "values": [ { "name": "JOIN_SQUARE", @@ -98392,6 +101486,7 @@ }, { "name": "PolyEndType", + "is_bitfield": false, "values": [ { "name": "END_POLYGON", @@ -98423,7 +101518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2929491703, "return_value": { "type": "bool" }, @@ -98449,7 +101544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 2058025344, "return_value": { "type": "Variant" }, @@ -98478,7 +101573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 2058025344, "return_value": { "type": "Variant" }, @@ -98507,7 +101602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 3344690961, "return_value": { "type": "PackedVector2Array" }, @@ -98536,7 +101631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 4172901909, "return_value": { "type": "Vector2" }, @@ -98561,7 +101656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 4172901909, "return_value": { "type": "Vector2" }, @@ -98586,7 +101681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481931, + "hash": 1025948137, "return_value": { "type": "bool" }, @@ -98615,7 +101710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1361156557, "return_value": { "type": "bool" }, @@ -98632,7 +101727,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 738277916, "return_value": { "type": "bool" }, @@ -98653,7 +101748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1389921771, "return_value": { "type": "PackedInt32Array" }, @@ -98670,7 +101765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1389921771, "return_value": { "type": "PackedInt32Array" }, @@ -98687,7 +101782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2004331998, "return_value": { "type": "PackedVector2Array" }, @@ -98704,7 +101799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3637387053, "return_value": { "type": "Array" }, @@ -98725,7 +101820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3637387053, "return_value": { "type": "Array" }, @@ -98746,7 +101841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3637387053, "return_value": { "type": "Array" }, @@ -98767,7 +101862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3637387053, "return_value": { "type": "Array" }, @@ -98788,7 +101883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3637387053, "return_value": { "type": "Array" }, @@ -98809,7 +101904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3637387053, "return_value": { "type": "Array" }, @@ -98830,7 +101925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 3837618924, "return_value": { "type": "Array" }, @@ -98857,7 +101952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 328033063, "return_value": { "type": "Array" }, @@ -98889,7 +101984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1337682371, "return_value": { "type": "Dictionary" }, @@ -98915,7 +102010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3622277145, "return_value": { "type": "Array" }, @@ -98932,7 +102027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 3142160516, "return_value": { "type": "Array" }, @@ -98965,7 +102060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 177157196, + "hash": 410870045, "return_value": { "type": "Array" }, @@ -99003,7 +102098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 1056373962, "return_value": { "type": "PackedVector3Array" }, @@ -99032,7 +102127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2168193209, "return_value": { "type": "Vector3" }, @@ -99057,7 +102152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2168193209, "return_value": { "type": "Vector3" }, @@ -99082,7 +102177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517835, + "hash": 1718655448, "return_value": { "type": "Variant" }, @@ -99115,7 +102210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517835, + "hash": 1718655448, "return_value": { "type": "Variant" }, @@ -99148,7 +102243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 4080141172, "return_value": { "type": "PackedVector3Array" }, @@ -99178,7 +102273,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 2361316491, "return_value": { "type": "PackedVector3Array" }, @@ -99209,7 +102304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 537425332, "return_value": { "type": "PackedVector3Array" }, @@ -99234,7 +102329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2603188319, "return_value": { "type": "PackedVector3Array" }, @@ -99260,6 +102355,7 @@ "enums": [ { "name": "ShadowCastingSetting", + "is_bitfield": false, "values": [ { "name": "SHADOW_CASTING_SETTING_OFF", @@ -99281,6 +102377,7 @@ }, { "name": "GIMode", + "is_bitfield": false, "values": [ { "name": "GI_MODE_DISABLED", @@ -99298,6 +102395,7 @@ }, { "name": "LightmapScale", + "is_bitfield": false, "values": [ { "name": "LIGHTMAP_SCALE_1X", @@ -99323,6 +102421,7 @@ }, { "name": "VisibilityRangeFadeMode", + "is_bitfield": false, "values": [ { "name": "VISIBILITY_RANGE_FADE_DISABLED", @@ -99346,7 +102445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -99360,7 +102459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -99371,7 +102470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -99385,7 +102484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -99396,7 +102495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 856677339, "arguments": [ { "name": "shadow_casting_setting", @@ -99410,7 +102509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3383019359, "return_value": { "type": "enum::GeometryInstance3D.ShadowCastingSetting" } @@ -99421,7 +102520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -99436,7 +102535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99448,7 +102547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "transparency", @@ -99463,7 +102562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99475,7 +102574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -99490,7 +102589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99502,7 +102601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -99517,7 +102616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99529,7 +102628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -99544,7 +102643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99556,7 +102655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -99571,7 +102670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99583,7 +102682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1440117808, "arguments": [ { "name": "mode", @@ -99597,7 +102696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2067221882, "return_value": { "type": "enum::GeometryInstance3D.VisibilityRangeFadeMode" } @@ -99608,7 +102707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "uniform", @@ -99626,7 +102725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -99643,7 +102742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -99658,7 +102757,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -99670,7 +102769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2462696582, "arguments": [ { "name": "scale", @@ -99684,7 +102783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 798767852, "return_value": { "type": "enum::GeometryInstance3D.LightmapScale" } @@ -99695,7 +102794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2548557163, "arguments": [ { "name": "mode", @@ -99709,7 +102808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2188566509, "return_value": { "type": "enum::GeometryInstance3D.GIMode" } @@ -99720,7 +102819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ignore_culling", @@ -99734,7 +102833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -99745,7 +102844,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 259215842, "arguments": [ { "name": "aabb", @@ -99878,6 +102977,7 @@ "enums": [ { "name": "InterpolationMode", + "is_bitfield": false, "values": [ { "name": "GRADIENT_INTERPOLATE_LINEAR", @@ -99901,7 +103001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3629403827, "arguments": [ { "name": "offset", @@ -99920,7 +103020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "point", @@ -99935,7 +103035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "point", @@ -99955,7 +103055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4025615559, "return_value": { "type": "float", "meta": "float" @@ -99974,7 +103074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_color", @@ -99982,7 +103082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "point", @@ -100001,7 +103101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2624840992, "return_value": { "type": "Color" }, @@ -100019,7 +103119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1250405064, "return_value": { "type": "Color" }, @@ -100037,7 +103137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -100049,7 +103149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "offsets", @@ -100063,7 +103163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 675695659, "return_value": { "type": "PackedFloat32Array" } @@ -100074,7 +103174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3546319833, "arguments": [ { "name": "colors", @@ -100088,7 +103188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1392750486, "return_value": { "type": "PackedColorArray" } @@ -100099,7 +103199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1971444490, "arguments": [ { "name": "interpolation_mode", @@ -100113,7 +103213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3674172981, "return_value": { "type": "enum::Gradient.InterpolationMode" } @@ -100156,7 +103256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "gradient", @@ -100170,7 +103270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -100181,7 +103281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -100196,7 +103296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -100210,7 +103310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -100249,6 +103349,7 @@ "enums": [ { "name": "Fill", + "is_bitfield": false, "values": [ { "name": "FILL_LINEAR", @@ -100262,6 +103363,7 @@ }, { "name": "Repeat", + "is_bitfield": false, "values": [ { "name": "REPEAT_NONE", @@ -100285,7 +103387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "gradient", @@ -100299,7 +103401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -100310,7 +103412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -100325,7 +103427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "height", @@ -100340,7 +103442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -100354,7 +103456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -100365,7 +103467,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3623927636, "arguments": [ { "name": "fill", @@ -100379,7 +103481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1876227217, "return_value": { "type": "enum::GradientTexture2D.Fill" } @@ -100390,7 +103492,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "fill_from", @@ -100404,7 +103506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -100415,7 +103517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "fill_to", @@ -100429,7 +103531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -100440,7 +103542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1357597002, "arguments": [ { "name": "repeat", @@ -100454,7 +103556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3351758665, "return_value": { "type": "enum::GradientTexture2D.Repeat" } @@ -100528,6 +103630,7 @@ "enums": [ { "name": "PanningScheme", + "is_bitfield": false, "values": [ { "name": "SCROLL_ZOOMS", @@ -100615,7 +103718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 195065850, "return_value": { "type": "enum::Error" }, @@ -100646,7 +103749,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 4216241294, "return_value": { "type": "bool" }, @@ -100677,7 +103780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1933654315, "arguments": [ { "name": "from", @@ -100705,7 +103808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1141899943, "arguments": [ { "name": "from", @@ -100738,7 +103841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -100749,7 +103852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "force_connection_drag_end", @@ -100757,7 +103860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_scroll_ofs", @@ -100765,7 +103868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -100776,7 +103879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -100790,7 +103893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "type", @@ -100805,7 +103908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "type", @@ -100820,7 +103923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "type", @@ -100835,7 +103938,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "type", @@ -100850,7 +103953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from_type", @@ -100870,7 +103973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from_type", @@ -100890,7 +103993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2522259332, "return_value": { "type": "bool" }, @@ -100913,7 +104016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1562168077, "return_value": { "type": "PackedVector2Array" }, @@ -100934,7 +104037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 18893313, "arguments": [ { "name": "scheme", @@ -100948,7 +104051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 549924446, "return_value": { "type": "enum::GraphEdit.PanningScheme" } @@ -100959,7 +104062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "zoom", @@ -100974,7 +104077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -100986,7 +104089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "zoom_min", @@ -101001,7 +104104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -101013,7 +104116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "zoom_max", @@ -101028,7 +104131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -101040,7 +104143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "zoom_step", @@ -101055,7 +104158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -101067,7 +104170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -101081,7 +104184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -101092,7 +104195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "pixels", @@ -101107,7 +104210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -101119,7 +104222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -101133,7 +104236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -101144,7 +104247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "curvature", @@ -101159,7 +104262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -101171,7 +104274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixels", @@ -101186,7 +104289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -101198,7 +104301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pixels", @@ -101212,7 +104315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -101223,7 +104326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -101237,7 +104340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -101248,7 +104351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "opacity", @@ -101263,7 +104366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -101275,7 +104378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -101289,7 +104392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -101300,7 +104403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -101314,7 +104417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -101325,7 +104428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3590609951, "return_value": { "type": "HBoxContainer" } @@ -101336,7 +104439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_selected", @@ -101344,7 +104447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -101635,6 +104738,7 @@ "enums": [ { "name": "Overlay", + "is_bitfield": false, "values": [ { "name": "OVERLAY_DISABLED", @@ -101658,7 +104762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "title", @@ -101672,7 +104776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -101683,7 +104787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -101697,63 +104801,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -101767,7 +104826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -101778,7 +104837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2222531442, + "hash": 902131739, "arguments": [ { "name": "idx", @@ -101834,7 +104893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -101849,7 +104908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_slot_enabled_left", @@ -101857,7 +104916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -101875,7 +104934,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -101894,7 +104953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "idx", @@ -101914,7 +104973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -101933,7 +104992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "idx", @@ -101952,7 +105011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -101970,7 +105029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -101988,7 +105047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -102007,7 +105066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "idx", @@ -102027,7 +105086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -102046,7 +105105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "idx", @@ -102065,7 +105124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -102083,7 +105142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -102101,7 +105160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -102120,7 +105179,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -102134,7 +105193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -102145,7 +105204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "comment", @@ -102159,7 +105218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -102170,7 +105229,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "resizable", @@ -102184,7 +105243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -102195,7 +105254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "selected", @@ -102209,7 +105268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -102220,7 +105279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -102232,7 +105291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -102251,7 +105310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3114997196, "return_value": { "type": "Vector2" }, @@ -102269,7 +105328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -102288,7 +105347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2624840992, "return_value": { "type": "Color" }, @@ -102306,7 +105365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -102318,7 +105377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -102337,7 +105396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3114997196, "return_value": { "type": "Vector2" }, @@ -102355,7 +105414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -102374,7 +105433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2624840992, "return_value": { "type": "Color" }, @@ -102392,7 +105451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "show", @@ -102406,7 +105465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -102417,7 +105476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3144190109, "arguments": [ { "name": "overlay", @@ -102431,7 +105490,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2854257040, "return_value": { "type": "enum::GraphNode.Overlay" } @@ -102487,20 +105546,6 @@ "getter": "get_title", "index": -1 }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction", - "index": -1 - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language", - "index": -1 - }, { "type": "Vector2", "name": "position_offset", @@ -102542,6 +105587,20 @@ "setter": "set_overlay", "getter": "get_overlay", "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 } ] }, @@ -102558,7 +105617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "columns", @@ -102573,7 +105632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -102609,7 +105668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -102624,7 +105683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -102636,7 +105695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -102651,7 +105710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -102663,7 +105722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -102682,7 +105741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -102700,7 +105759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -102719,7 +105778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -102737,7 +105796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1784508650, "arguments": [ { "name": "material", @@ -102751,7 +105810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2521850424, "return_value": { "type": "PhysicsMaterial" } @@ -102762,7 +105821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "bake_navigation", @@ -102776,7 +105835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -102787,7 +105846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layers", @@ -102798,23 +105857,60 @@ }, { "name": "get_navigation_layers", - "is_const": false, + "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" } }, + { + "name": "set_navigation_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_navigation_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "set_mesh_library", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1488083439, "arguments": [ { "name": "mesh_library", @@ -102828,7 +105924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3350993772, "return_value": { "type": "MeshLibrary" } @@ -102839,7 +105935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "size", @@ -102853,7 +105949,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -102864,7 +105960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -102879,7 +105975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -102891,7 +105987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -102906,7 +106002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -102918,7 +106014,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 4177201334, "arguments": [ { "name": "position", @@ -102943,7 +106039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3724960147, "return_value": { "type": "int", "meta": "int32" @@ -102961,7 +106057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3724960147, "return_value": { "type": "int", "meta": "int32" @@ -102979,7 +106075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1257687843, "return_value": { "type": "Vector3i" }, @@ -102996,7 +106092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1088329196, "return_value": { "type": "Vector3" }, @@ -103013,7 +106109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "resource", @@ -103027,7 +106123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -103041,7 +106137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -103052,7 +106148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -103066,7 +106162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -103077,7 +106173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -103091,7 +106187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -103102,7 +106198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_used_cells", @@ -103110,7 +106206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -103121,7 +106217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -103139,7 +106235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -103150,7 +106246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -103161,7 +106257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 937000113, "return_value": { "type": "RID" }, @@ -103179,7 +106275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "make_baked_meshes", @@ -103187,7 +106283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3650612583, + "hash": 1135556294, "arguments": [ { "name": "gen_lightmap_uv", @@ -103314,7 +106410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -103329,7 +106425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -103341,7 +106437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -103356,7 +106452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -103407,7 +106503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3537364598, "return_value": { "type": "enum::Error" }, @@ -103428,7 +106524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -103445,7 +106541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2115431945, "return_value": { "type": "PackedByteArray" } @@ -103489,6 +106585,7 @@ "enums": [ { "name": "Method", + "is_bitfield": false, "values": [ { "name": "METHOD_GET", @@ -103534,6 +106631,7 @@ }, { "name": "Status", + "is_bitfield": false, "values": [ { "name": "STATUS_DISCONNECTED", @@ -103579,6 +106677,7 @@ }, { "name": "ResponseCode", + "is_bitfield": false, "values": [ { "name": "RESPONSE_CONTINUE", @@ -103834,7 +106933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1966527607, + "hash": 2602796911, "return_value": { "type": "enum::Error" }, @@ -103867,7 +106966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3281897016, "arguments": [ { "name": "connection", @@ -103881,7 +106980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2741655269, "return_value": { "type": "StreamPeer" } @@ -103892,7 +106991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 540161961, "return_value": { "type": "enum::Error" }, @@ -103921,7 +107020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 3249905507, "return_value": { "type": "enum::Error" }, @@ -103951,7 +107050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "has_response", @@ -103959,7 +107058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -103970,7 +107069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -103981,7 +107080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -103993,7 +107092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2981934095, "return_value": { "type": "PackedStringArray" } @@ -104004,7 +107103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -104015,7 +107114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -104027,7 +107126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2115431945, "return_value": { "type": "PackedByteArray" } @@ -104038,7 +107137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bytes", @@ -104053,7 +107152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104065,7 +107164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -104079,7 +107178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -104090,7 +107189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1426656811, "return_value": { "type": "enum::HTTPClient.Status" } @@ -104101,7 +107200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -104112,7 +107211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2956805083, "arguments": [ { "name": "host", @@ -104131,7 +107230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2956805083, "arguments": [ { "name": "host", @@ -104150,7 +107249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2538086567, "return_value": { "type": "String" }, @@ -104195,6 +107294,7 @@ "enums": [ { "name": "Result", + "is_bitfield": false, "values": [ { "name": "RESULT_SUCCESS", @@ -104262,7 +107362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1679146786, + "hash": 1899023990, "return_value": { "type": "enum::Error" }, @@ -104299,7 +107399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1679146786, + "hash": 3236422912, "return_value": { "type": "enum::Error" }, @@ -104336,7 +107436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_http_client_status", @@ -104344,7 +107444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1426656811, "return_value": { "type": "enum::HTTPClient.Status" } @@ -104355,7 +107455,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -104369,7 +107469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -104380,7 +107480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -104394,7 +107494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -104405,7 +107505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bytes", @@ -104420,7 +107520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104432,7 +107532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -104447,7 +107547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104459,7 +107559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -104473,7 +107573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -104484,7 +107584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104496,7 +107596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104508,7 +107608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "timeout", @@ -104523,7 +107623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "double" @@ -104535,7 +107635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "chunk_size", @@ -104550,7 +107650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104562,7 +107662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2956805083, "arguments": [ { "name": "host", @@ -104581,7 +107681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2956805083, "arguments": [ { "name": "host", @@ -104679,6 +107779,7 @@ "enums": [ { "name": "HashType", + "is_bitfield": false, "values": [ { "name": "HASH_MD5", @@ -104702,7 +107803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3940338335, "return_value": { "type": "enum::Error" }, @@ -104719,7 +107820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -104736,7 +107837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2115431945, "return_value": { "type": "PackedByteArray" } @@ -104756,7 +107857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -104771,7 +107872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104783,7 +107884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "height", @@ -104798,7 +107899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -104810,7 +107911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "data", @@ -104824,7 +107925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 675695659, "return_value": { "type": "PackedFloat32Array" } @@ -104863,6 +107964,7 @@ "enums": [ { "name": "Param", + "is_bitfield": false, "values": [ { "name": "PARAM_BIAS", @@ -104904,6 +108006,7 @@ }, { "name": "Flag", + "is_bitfield": false, "values": [ { "name": "FLAG_USE_LIMIT", @@ -104927,7 +108030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3082977519, "arguments": [ { "name": "param", @@ -104946,7 +108049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4066002676, "return_value": { "type": "float", "meta": "float" @@ -104964,7 +108067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1083494620, "arguments": [ { "name": "flag", @@ -104982,7 +108085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2841369610, "return_value": { "type": "bool" }, @@ -105086,6 +108189,7 @@ "enums": [ { "name": "ResolverStatus", + "is_bitfield": false, "values": [ { "name": "RESOLVER_STATUS_NONE", @@ -105107,6 +108211,7 @@ }, { "name": "Type", + "is_bitfield": false, "values": [ { "name": "TYPE_NONE", @@ -105134,7 +108239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 396864159, "return_value": { "type": "String" }, @@ -105156,7 +108261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 500071499, "return_value": { "type": "Array" }, @@ -105178,7 +108283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3936392508, "return_value": { "type": "int", "meta": "int32" @@ -105201,7 +108306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3812250196, "return_value": { "type": "enum::IP.ResolverStatus" }, @@ -105219,7 +108324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -105237,7 +108342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -105255,7 +108360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -105270,7 +108375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -105281,7 +108386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -105292,7 +108397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 139138028, + "hash": 3005725572, "arguments": [ { "name": "hostname", @@ -105329,6 +108434,7 @@ "enums": [ { "name": "Format", + "is_bitfield": false, "values": [ { "name": "FORMAT_L8", @@ -105478,6 +108584,7 @@ }, { "name": "Interpolation", + "is_bitfield": false, "values": [ { "name": "INTERPOLATE_NEAREST", @@ -105503,6 +108610,7 @@ }, { "name": "AlphaMode", + "is_bitfield": false, "values": [ { "name": "ALPHA_NONE", @@ -105520,6 +108628,7 @@ }, { "name": "CompressMode", + "is_bitfield": false, "values": [ { "name": "COMPRESS_S3TC", @@ -105541,6 +108650,7 @@ }, { "name": "UsedChannels", + "is_bitfield": false, "values": [ { "name": "USED_CHANNELS_L", @@ -105570,6 +108680,7 @@ }, { "name": "CompressSource", + "is_bitfield": false, "values": [ { "name": "COMPRESS_SOURCE_GENERIC", @@ -105593,7 +108704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -105605,7 +108716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -105617,7 +108728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -105628,7 +108739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -105639,7 +108750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3847873762, "return_value": { "type": "enum::Image.Format" } @@ -105650,7 +108761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -105661,7 +108772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2120693146, "arguments": [ { "name": "format", @@ -105675,7 +108786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -105694,7 +108805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3082182245, + "hash": 4189212329, "arguments": [ { "name": "square", @@ -105714,7 +108825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 2461393748, "arguments": [ { "name": "width", @@ -105739,7 +108850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "crop", @@ -105747,7 +108858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "width", @@ -105767,7 +108878,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "flip_y", @@ -105775,7 +108886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "generate_mipmaps", @@ -105783,7 +108894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 1633102583, "return_value": { "type": "enum::Error" }, @@ -105801,7 +108912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create", @@ -105809,7 +108920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2904688759, "arguments": [ { "name": "width", @@ -105837,7 +108948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 2740482212, "arguments": [ { "name": "width", @@ -105869,7 +108980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -105880,7 +108991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -105891,13 +109002,30 @@ } ] }, + { + "name": "load_from_file", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 736337515, + "return_value": { + "type": "Image" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, { "name": "save_png", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2113323047, "return_value": { "type": "enum::Error" }, @@ -105914,18 +109042,60 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } }, + { + "name": "save_jpg", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 578836491, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "quality", + "type": "float", + "meta": "float", + "default_value": "0.75" + } + ] + }, + { + "name": "save_jpg_to_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 310747435, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "quality", + "type": "float", + "meta": "float", + "default_value": "0.75" + } + ] + }, { "name": "save_exr", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3108122999, "return_value": { "type": "enum::Error" }, @@ -105941,13 +109111,83 @@ } ] }, + { + "name": "save_exr_to_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3178917920, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "grayscale", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "save_webp", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3594949219, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "path", + "type": "String" + }, + { + "name": "lossy", + "type": "bool", + "default_value": "false" + }, + { + "name": "quality", + "type": "float", + "meta": "float", + "default_value": "0.75" + } + ] + }, + { + "name": "save_webp_to_buffer", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1235769281, + "return_value": { + "type": "PackedByteArray" + }, + "arguments": [ + { + "name": "lossy", + "type": "bool", + "default_value": "false" + }, + { + "name": "quality", + "type": "float", + "meta": "float", + "default_value": "0.75" + } + ] + }, { "name": "detect_alpha", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2030116505, "return_value": { "type": "enum::Image.AlphaMode" } @@ -105958,7 +109198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -105969,7 +109209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2703139984, "return_value": { "type": "enum::Image.UsedChannels" }, @@ -105987,7 +109227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3892018806, + "hash": 2521880595, "return_value": { "type": "enum::Error" }, @@ -106015,7 +109255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1815281629, "return_value": { "type": "enum::Error" }, @@ -106042,7 +109282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -106053,18 +109293,40 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, + { + "name": "rotate_90", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1901204267, + "arguments": [ + { + "name": "direction", + "type": "enum::ClockDirection" + } + ] + }, + { + "name": "rotate_180", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3218959716 + }, { "name": "fix_alpha_edges", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "premultiply_alpha", @@ -106072,7 +109334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "srgb_to_linear", @@ -106080,7 +109342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "normal_map_to_xy", @@ -106088,7 +109350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "rgbe_to_srgb", @@ -106096,7 +109358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 564927088, "return_value": { "type": "Image" } @@ -106107,7 +109369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3158860097, + "hash": 336773324, "arguments": [ { "name": "bump_scale", @@ -106123,7 +109385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3080961247, "return_value": { "type": "Dictionary" }, @@ -106144,7 +109406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2903928755, "arguments": [ { "name": "src", @@ -106152,11 +109414,11 @@ }, { "name": "src_rect", - "type": "Rect2" + "type": "Rect2i" }, { "name": "dst", - "type": "Vector2" + "type": "Vector2i" } ] }, @@ -106166,7 +109428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3383581145, "arguments": [ { "name": "src", @@ -106178,11 +109440,11 @@ }, { "name": "src_rect", - "type": "Rect2" + "type": "Rect2i" }, { "name": "dst", - "type": "Vector2" + "type": "Vector2i" } ] }, @@ -106192,7 +109454,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2903928755, "arguments": [ { "name": "src", @@ -106200,11 +109462,11 @@ }, { "name": "src_rect", - "type": "Rect2" + "type": "Rect2i" }, { "name": "dst", - "type": "Vector2" + "type": "Vector2i" } ] }, @@ -106214,7 +109476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3383581145, "arguments": [ { "name": "src", @@ -106226,11 +109488,11 @@ }, { "name": "src_rect", - "type": "Rect2" + "type": "Rect2i" }, { "name": "dst", - "type": "Vector2" + "type": "Vector2i" } ] }, @@ -106240,7 +109502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -106254,11 +109516,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 514693913, "arguments": [ { "name": "rect", - "type": "Rect2" + "type": "Rect2i" }, { "name": "color", @@ -106272,9 +109534,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 410525958, "return_value": { - "type": "Rect2" + "type": "Rect2i" } }, { @@ -106283,14 +109545,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2601441065, "return_value": { "type": "Image" }, "arguments": [ { "name": "rect", - "type": "Rect2" + "type": "Rect2i" } ] }, @@ -106300,7 +109562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 532598488, "arguments": [ { "name": "src", @@ -106314,7 +109576,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1532707496, "return_value": { "type": "Color" }, @@ -106331,7 +109593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2165839948, "return_value": { "type": "Color" }, @@ -106354,7 +109616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 287851464, "arguments": [ { "name": "point", @@ -106372,7 +109634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3733378741, "arguments": [ { "name": "x", @@ -106396,7 +109658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2385087082, "arguments": [ { "name": "brightness", @@ -106421,7 +109683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -106438,7 +109700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -106455,7 +109717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -106472,7 +109734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -106489,7 +109751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -106522,9 +109784,12 @@ "name": "create_from_image", "is_const": false, "is_vararg": false, - "is_static": false, + "is_static": true, "is_virtual": false, - "hash": 134188166, + "hash": 2775144163, + "return_value": { + "type": "ImageTexture" + }, "arguments": [ { "name": "image", @@ -106538,18 +109803,32 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3847873762, "return_value": { "type": "enum::Image.Format" } }, + { + "name": "set_image", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 532598488, + "arguments": [ + { + "name": "image", + "type": "Image" + } + ] + }, { "name": "update", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 532598488, "arguments": [ { "name": "image", @@ -106563,11 +109842,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", - "type": "Vector2" + "type": "Vector2i" } ] } @@ -106586,7 +109865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135553772, + "hash": 1130379827, "return_value": { "type": "enum::Error" }, @@ -106626,7 +109905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "data", @@ -106649,7 +109928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2785773503, "return_value": { "type": "enum::Error" }, @@ -106666,7 +109945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3331733361, "arguments": [ { "name": "image", @@ -106694,7 +109973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3716480242, "arguments": [ { "name": "primitive", @@ -106713,7 +109992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -106727,7 +110006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "normal", @@ -106741,7 +110020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3505987427, "arguments": [ { "name": "tangent", @@ -106755,7 +110034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "uv", @@ -106769,7 +110048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "uv2", @@ -106783,7 +110062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "vertex", @@ -106797,7 +110076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "vertex", @@ -106811,7 +110090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_surfaces", @@ -106819,7 +110098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -106836,7 +110115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -106850,7 +110129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -106862,7 +110141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -106880,7 +110159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 227983991, "arguments": [ { "name": "mode", @@ -106894,7 +110173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 836485024, "return_value": { "type": "enum::Mesh.BlendShapeMode" } @@ -106905,7 +110184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2484236017, + "hash": 4122361985, "arguments": [ { "name": "primitive", @@ -106949,7 +110228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -106961,7 +110240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3552571330, "return_value": { "type": "enum::Mesh.PrimitiveType" }, @@ -106979,7 +110258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -106997,7 +110276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -107015,7 +110294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2345056839, "return_value": { "type": "Array" }, @@ -107038,7 +110317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -107057,7 +110336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -107081,7 +110360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1265128013, "return_value": { "type": "PackedInt32Array" }, @@ -107104,7 +110383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2897466400, "return_value": { "type": "Material" }, @@ -107122,7 +110401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -107141,7 +110420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "surface_idx", @@ -107160,7 +110439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3671737478, "arguments": [ { "name": "surface_idx", @@ -107173,13 +110452,33 @@ } ] }, + { + "name": "generate_lods", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1017552074, + "arguments": [ + { + "name": "normal_merge_angle", + "type": "float", + "meta": "float" + }, + { + "name": "normal_split_angle", + "type": "float", + "meta": "float" + } + ] + }, { "name": "get_mesh", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 365790509, + "hash": 1457573577, "return_value": { "type": "ArrayMesh" }, @@ -107197,7 +110496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_lightmap_size_hint", @@ -107205,7 +110504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -107219,7 +110518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -107239,7 +110538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2255166972, "arguments": [ { "name": "mesh", @@ -107253,7 +110552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3161779525, "return_value": { "type": "ImporterMesh" } @@ -107264,7 +110563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3971435618, "arguments": [ { "name": "skin", @@ -107278,7 +110577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2074563878, "return_value": { "type": "Skin" } @@ -107289,7 +110588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "skeleton_path", @@ -107303,7 +110602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -107342,6 +110641,7 @@ "enums": [ { "name": "MouseMode", + "is_bitfield": false, "values": [ { "name": "MOUSE_MODE_VISIBLE", @@ -107367,6 +110667,7 @@ }, { "name": "CursorShape", + "is_bitfield": false, "values": [ { "name": "CURSOR_ARROW", @@ -107446,7 +110747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -107457,7 +110758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1938909964, "return_value": { "type": "bool" }, @@ -107474,7 +110775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1938909964, "return_value": { "type": "bool" }, @@ -107491,7 +110792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1821097125, "return_value": { "type": "bool" }, @@ -107508,7 +110809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 787208542, "return_value": { "type": "bool" }, @@ -107530,7 +110831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1558498928, "return_value": { "type": "bool" }, @@ -107552,7 +110853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1558498928, "return_value": { "type": "bool" }, @@ -107574,7 +110875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1558498928, "return_value": { "type": "bool" }, @@ -107596,7 +110897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 801543509, "return_value": { "type": "float", "meta": "float" @@ -107619,7 +110920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 801543509, "return_value": { "type": "float", "meta": "float" @@ -107642,7 +110943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1958752504, "return_value": { "type": "float", "meta": "float" @@ -107664,7 +110965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 177157229, + "hash": 1517139831, "return_value": { "type": "Vector2" }, @@ -107699,7 +111000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1168363258, "arguments": [ { "name": "mapping", @@ -107718,7 +111019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "guid", @@ -107732,7 +111033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -107750,7 +111051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4063175957, "return_value": { "type": "float", "meta": "float" @@ -107773,7 +111074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 990163283, "return_value": { "type": "String" }, @@ -107791,7 +111092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -107809,7 +111110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -107820,7 +111121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3114997196, "return_value": { "type": "Vector2" }, @@ -107838,7 +111139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4025615559, "return_value": { "type": "float", "meta": "float" @@ -107857,7 +111158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 1890603622, "arguments": [ { "name": "device", @@ -107888,7 +111189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "device", @@ -107903,7 +111204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 909473821, + "hash": 955504365, "arguments": [ { "name": "duration_ms", @@ -107919,7 +111220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -107930,7 +111231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -107941,7 +111242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -107952,7 +111253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -107963,7 +111264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "value", @@ -107977,7 +111278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "value", @@ -107991,7 +111292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "value", @@ -108005,7 +111306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "value", @@ -108019,7 +111320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1497962370, "return_value": { "type": "Vector2" } @@ -108030,7 +111331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1132662608, "return_value": { "type": "enum::MouseButton" } @@ -108041,7 +111342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2228490894, "arguments": [ { "name": "mode", @@ -108055,7 +111356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 965286182, "return_value": { "type": "enum::Input.MouseMode" } @@ -108066,7 +111367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -108080,7 +111381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 573731101, "arguments": [ { "name": "action", @@ -108100,7 +111401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "action", @@ -108114,7 +111415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 2124816902, "arguments": [ { "name": "shape", @@ -108129,7 +111430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3455658929, "return_value": { "type": "enum::Input.CursorShape" } @@ -108140,7 +111441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2600550837, + "hash": 3489634142, "arguments": [ { "name": "image", @@ -108164,7 +111465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3754044979, "arguments": [ { "name": "event", @@ -108178,7 +111479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -108192,7 +111493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -108203,7 +111504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "signals": [ @@ -108251,7 +111552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "device", @@ -108266,7 +111567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -108278,7 +111579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1558498928, "return_value": { "type": "bool" }, @@ -108300,7 +111601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474135340, + "hash": 1631499404, "return_value": { "type": "bool" }, @@ -108327,7 +111628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1558498928, "return_value": { "type": "bool" }, @@ -108349,7 +111650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 801543509, "return_value": { "type": "float", "meta": "float" @@ -108372,7 +111673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -108383,7 +111684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -108394,7 +111695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -108405,7 +111706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3392494811, "return_value": { "type": "bool" }, @@ -108427,7 +111728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -108438,7 +111739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1062211774, "return_value": { "type": "bool" }, @@ -108455,7 +111756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2747409789, "return_value": { "type": "InputEvent" }, @@ -108495,7 +111796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "action", @@ -108509,7 +111810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -108520,7 +111821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -108534,7 +111835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -108549,7 +111850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -108593,7 +111894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -108608,7 +111909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -108638,7 +111939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -108652,7 +111953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -108681,7 +111982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1466368136, "arguments": [ { "name": "button_index", @@ -108695,7 +111996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 595588182, "return_value": { "type": "enum::JoyButton" } @@ -108706,7 +112007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pressure", @@ -108721,7 +112022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -108733,7 +112034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -108779,7 +112080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1332685170, "arguments": [ { "name": "axis", @@ -108793,7 +112094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4019121683, "return_value": { "type": "enum::JoyAxis" } @@ -108804,7 +112105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "axis_value", @@ -108819,7 +112120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -108856,7 +112157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -108870,7 +112171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 888074362, "arguments": [ { "name": "keycode", @@ -108884,7 +112185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1585896689, "return_value": { "type": "enum::Key" } @@ -108895,7 +112196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 888074362, "arguments": [ { "name": "physical_keycode", @@ -108909,7 +112210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1585896689, "return_value": { "type": "enum::Key" } @@ -108920,7 +112221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "unicode", @@ -108934,7 +112235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int" } @@ -108945,7 +112246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "echo", @@ -108959,7 +112260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1585896689, "return_value": { "type": "enum::Key" } @@ -108970,7 +112271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1585896689, "return_value": { "type": "enum::Key" } @@ -109027,7 +112328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "channel", @@ -109042,7 +112343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109054,7 +112355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1064271510, "arguments": [ { "name": "message", @@ -109068,7 +112369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1936512097, "return_value": { "type": "enum::MIDIMessage" } @@ -109079,7 +112380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "pitch", @@ -109094,7 +112395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109106,7 +112407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "velocity", @@ -109121,7 +112422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109133,7 +112434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "instrument", @@ -109148,7 +112449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109160,7 +112461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "pressure", @@ -109175,7 +112476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109187,7 +112488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "controller_number", @@ -109202,7 +112503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109214,7 +112515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "controller_value", @@ -109229,7 +112530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109308,7 +112609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "factor", @@ -109323,7 +112624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -109353,7 +112654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3624991109, "arguments": [ { "name": "button_mask", @@ -109367,7 +112668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1132662608, "return_value": { "type": "enum::MouseButton" } @@ -109378,7 +112679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -109392,7 +112693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109403,7 +112704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "global_position", @@ -109417,7 +112718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109460,7 +112761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "factor", @@ -109475,7 +112776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -109487,7 +112788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3624991109, "arguments": [ { "name": "button_index", @@ -109501,7 +112802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1132662608, "return_value": { "type": "enum::MouseButton" } @@ -109512,7 +112813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -109526,7 +112827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "double_click", @@ -109540,7 +112841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -109590,7 +112891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "tilt", @@ -109604,7 +112905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109615,7 +112916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pressure", @@ -109630,19 +112931,44 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } }, + { + "name": "set_pen_inverted", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "pen_inverted", + "type": "bool" + } + ] + }, + { + "name": "get_pen_inverted", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, { "name": "set_relative", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "relative", @@ -109656,7 +112982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109667,7 +112993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "velocity", @@ -109681,7 +113007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109702,6 +113028,13 @@ "getter": "get_pressure", "index": -1 }, + { + "type": "bool", + "name": "pen_inverted", + "setter": "set_pen_inverted", + "getter": "get_pen_inverted", + "index": -1 + }, { "type": "Vector2", "name": "relative", @@ -109731,7 +113064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "delta", @@ -109745,7 +113078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109774,7 +113107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -109789,7 +113122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109801,7 +113134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -109815,7 +113148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109826,7 +113159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "relative", @@ -109840,7 +113173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109851,7 +113184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "velocity", @@ -109865,7 +113198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109915,7 +113248,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -109930,7 +113263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -109942,7 +113275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -109956,7 +113289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -109967,7 +113300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -110013,7 +113346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 857163497, "arguments": [ { "name": "shortcut", @@ -110027,7 +113360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3766804753, "return_value": { "type": "Shortcut" } @@ -110056,7 +113389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -110070,7 +113403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -110081,7 +113414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -110095,7 +113428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -110106,7 +113439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -110120,7 +113453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -110131,7 +113464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -110145,7 +113478,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -110156,7 +113489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -110170,7 +113503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -110181,7 +113514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "pressed", @@ -110195,7 +113528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -110259,7 +113592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -110276,7 +113609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -110287,7 +113620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 573731101, "arguments": [ { "name": "action", @@ -110307,7 +113640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "action", @@ -110321,7 +113654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4135858297, "arguments": [ { "name": "action", @@ -110340,7 +113673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1391627649, "return_value": { "type": "float", "meta": "float" @@ -110358,7 +113691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 518302593, "arguments": [ { "name": "action", @@ -110376,7 +113709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1185871985, "return_value": { "type": "bool" }, @@ -110397,7 +113730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 518302593, "arguments": [ { "name": "action", @@ -110415,7 +113748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "action", @@ -110429,7 +113762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 689397652, "return_value": { "type": "Array" }, @@ -110446,7 +113779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 3193353650, "return_value": { "type": "bool" }, @@ -110472,7 +113805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -110489,7 +113822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 2230153369, "return_value": { "type": "Dictionary" }, @@ -110507,7 +113840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1434999914, + "hash": 3794612210, "return_value": { "type": "Node" }, @@ -110530,7 +113863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -110553,6 +113886,7 @@ "enums": [ { "name": "IconMode", + "is_bitfield": false, "values": [ { "name": "ICON_MODE_TOP", @@ -110566,6 +113900,7 @@ }, { "name": "SelectMode", + "is_bitfield": false, "values": [ { "name": "SELECT_SINGLE", @@ -110585,7 +113920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474135307, + "hash": 4086250691, "return_value": { "type": "int", "meta": "int32" @@ -110613,7 +113948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3332687421, "return_value": { "type": "int", "meta": "int32" @@ -110636,7 +113971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "idx", @@ -110655,7 +113990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -110673,7 +114008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "idx", @@ -110692,7 +114027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -110710,7 +114045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1707680378, "arguments": [ { "name": "idx", @@ -110729,7 +114064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4235602388, "return_value": { "type": "enum::Control.TextDirection" }, @@ -110741,75 +114076,13 @@ } ] }, - { - "name": "set_item_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134260040, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_item_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135410057, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_item_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "set_item_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "idx", @@ -110828,7 +114101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -110846,7 +114119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -110865,7 +114138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -110883,7 +114156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1356297692, "arguments": [ { "name": "idx", @@ -110902,7 +114175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3327874267, "return_value": { "type": "Rect2" }, @@ -110920,7 +114193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "idx", @@ -110939,7 +114212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -110957,7 +114230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -110976,7 +114249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -110994,7 +114267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -111013,7 +114286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -111031,7 +114304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "idx", @@ -111050,7 +114323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -111068,7 +114341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "idx", @@ -111087,7 +114360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -111105,7 +114378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "idx", @@ -111124,7 +114397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -111142,7 +114415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -111161,7 +114434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -111179,7 +114452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "idx", @@ -111198,7 +114471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -111216,7 +114489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "idx", @@ -111236,7 +114509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -111251,7 +114524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_selected", @@ -111259,7 +114532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -111277,7 +114550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -111288,7 +114561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from_idx", @@ -111308,7 +114581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -111323,7 +114596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -111335,7 +114608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -111350,7 +114623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "sort_items_by_text", @@ -111358,7 +114631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_fixed_column_width", @@ -111366,7 +114639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -111381,7 +114654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -111393,7 +114666,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -111407,7 +114680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -111418,7 +114691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "lines", @@ -111433,7 +114706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -111445,7 +114718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -111460,7 +114733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -111472,7 +114745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 928267388, "arguments": [ { "name": "mode", @@ -111486,7 +114759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1191945842, "return_value": { "type": "enum::ItemList.SelectMode" } @@ -111497,7 +114770,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2025053633, "arguments": [ { "name": "mode", @@ -111511,7 +114784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3353929232, "return_value": { "type": "enum::ItemList.IconMode" } @@ -111522,7 +114795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -111536,7 +114809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -111547,7 +114820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -111562,7 +114835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -111574,7 +114847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -111588,7 +114861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -111599,7 +114872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -111613,7 +114886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -111624,7 +114897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -111638,7 +114911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -111649,7 +114922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -111660,7 +114933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2300324924, "return_value": { "type": "int", "meta": "int32" @@ -111683,7 +114956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_v_scroll_bar", @@ -111691,7 +114964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2630340773, "return_value": { "type": "VScrollBar" } @@ -111702,11 +114975,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1008890932, "arguments": [ { "name": "overrun_behavior", - "type": "enum::TextParagraph.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } ] }, @@ -111716,9 +114989,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3779142101, "return_value": { - "type": "enum::TextParagraph.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } } ], @@ -111899,7 +115172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2925806323, + "hash": 2656701787, "return_value": { "type": "String" }, @@ -111931,7 +115204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -111948,7 +115221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -111959,7 +115232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -111971,7 +115244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -111987,6 +115260,7 @@ "enums": [ { "name": "ErrorCode", + "is_bitfield": false, "values": [ { "name": "PARSE_ERROR", @@ -112018,7 +115292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2572618360, "arguments": [ { "name": "scope", @@ -112036,7 +115310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 2963479484, "return_value": { "type": "Variant" }, @@ -112058,7 +115332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1703090593, "return_value": { "type": "String" }, @@ -112075,7 +115349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 3423508980, "return_value": { "type": "Dictionary" }, @@ -112100,7 +115374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 5053918, "return_value": { "type": "Dictionary" }, @@ -112121,7 +115395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2949127017, "return_value": { "type": "Dictionary" }, @@ -112142,7 +115416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 928596297, "return_value": { "type": "Dictionary" }, @@ -112185,7 +115459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1124367868, "return_value": { "type": "JavaClass" }, @@ -112211,7 +115485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 218087648, "return_value": { "type": "Variant" }, @@ -112233,7 +115507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1355533281, "return_value": { "type": "JavaScriptObject" }, @@ -112250,7 +115524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 422818440, "return_value": { "type": "JavaScriptObject" }, @@ -112267,7 +115541,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 135374088, + "hash": 3093893586, "return_value": { "type": "Variant" }, @@ -112284,7 +115558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 4123979296, "arguments": [ { "name": "buffer", @@ -112307,7 +115581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -112318,7 +115592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -112350,7 +115624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "node", @@ -112364,7 +115638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -112375,7 +115649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "node", @@ -112389,7 +115663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -112400,7 +115674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -112415,7 +115689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -112427,7 +115701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -112441,7 +115715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -112491,7 +115765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "node", @@ -112505,7 +115779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -112516,7 +115790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "node", @@ -112530,7 +115804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -112541,7 +115815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -112556,7 +115830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -112568,7 +115842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -112582,7 +115856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -112632,7 +115906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -112643,7 +115917,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -112654,7 +115928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -112665,7 +115939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -112676,7 +115950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3009477143, + "hash": 2841063350, "return_value": { "type": "float", "meta": "float" @@ -112695,7 +115969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1981248198, "return_value": { "type": "Object" } @@ -112706,7 +115980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1981248198, "return_value": { "type": "Object" } @@ -112717,7 +115991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -112729,7 +116003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -112740,7 +116014,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1981248198, "return_value": { "type": "Object" } @@ -112751,7 +116025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -112763,7 +116037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -112783,7 +116057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -112794,7 +116068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -112805,7 +116079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -112817,7 +116091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1914908202, "return_value": { "type": "Vector3" }, @@ -112836,7 +116110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1914908202, "return_value": { "type": "Vector3" }, @@ -112855,7 +116129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1406474342, + "hash": 1242741860, "return_value": { "type": "float", "meta": "float" @@ -112880,7 +116154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2639523548, "return_value": { "type": "Object" }, @@ -112899,7 +116173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2639523548, "return_value": { "type": "Object" }, @@ -112918,7 +116192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "uint64" @@ -112938,7 +116212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1231817359, "return_value": { "type": "RID" }, @@ -112957,7 +116231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2639523548, "return_value": { "type": "Object" }, @@ -112976,7 +116250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "int32" @@ -112996,7 +116270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1914908202, "return_value": { "type": "Vector3" }, @@ -113017,79 +116291,6 @@ "is_instantiable": true, "inherits": "Control", "api_type": "core", - "enums": [ - { - "name": "AutowrapMode", - "values": [ - { - "name": "AUTOWRAP_OFF", - "value": 0 - }, - { - "name": "AUTOWRAP_ARBITRARY", - "value": 1 - }, - { - "name": "AUTOWRAP_WORD", - "value": 2 - }, - { - "name": "AUTOWRAP_WORD_SMART", - "value": 3 - } - ] - }, - { - "name": "OverrunBehavior", - "values": [ - { - "name": "OVERRUN_NO_TRIMMING", - "value": 0 - }, - { - "name": "OVERRUN_TRIM_CHAR", - "value": 1 - }, - { - "name": "OVERRUN_TRIM_WORD", - "value": 2 - }, - { - "name": "OVERRUN_TRIM_ELLIPSIS", - "value": 3 - }, - { - "name": "OVERRUN_TRIM_WORD_ELLIPSIS", - "value": 4 - } - ] - }, - { - "name": "VisibleCharactersBehavior", - "values": [ - { - "name": "VC_CHARS_BEFORE_SHAPING", - "value": 0 - }, - { - "name": "VC_CHARS_AFTER_SHAPING", - "value": 1 - }, - { - "name": "VC_GLYPHS_AUTO", - "value": 2 - }, - { - "name": "VC_GLYPHS_LTR", - "value": 3 - }, - { - "name": "VC_GLYPHS_RTL", - "value": 4 - } - ] - } - ], "methods": [ { "name": "set_horizontal_alignment", @@ -113097,7 +116298,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -113111,7 +116312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -113122,7 +116323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1796458609, "arguments": [ { "name": "alignment", @@ -113136,7 +116337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3274884059, "return_value": { "type": "enum::VerticalAlignment" } @@ -113147,7 +116348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -113161,18 +116362,43 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } }, + { + "name": "set_label_settings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1030653839, + "arguments": [ + { + "name": "settings", + "type": "LabelSettings" + } + ] + }, + { + "name": "get_label_settings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 826676056, + "return_value": { + "type": "LabelSettings" + } + }, { "name": "set_text_direction", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -113186,63 +116412,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -113256,7 +116437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -113267,11 +116448,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3289138044, "arguments": [ { "name": "autowrap_mode", - "type": "enum::Label.AutowrapMode" + "type": "enum::TextServer.AutowrapMode" } ] }, @@ -113281,9 +116462,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1549071663, "return_value": { - "type": "enum::Label.AutowrapMode" + "type": "enum::TextServer.AutowrapMode" } }, { @@ -113292,7 +116473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -113306,7 +116487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -113317,11 +116498,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1008890932, "arguments": [ { "name": "overrun_behavior", - "type": "enum::Label.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } ] }, @@ -113331,9 +116512,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3779142101, "return_value": { - "type": "enum::Label.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } }, { @@ -113342,7 +116523,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -113356,7 +116537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -113367,7 +116548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204435, + "hash": 181039630, "return_value": { "type": "int", "meta": "int32" @@ -113387,7 +116568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -113399,7 +116580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -113411,7 +116592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -113423,7 +116604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -113438,7 +116619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -113450,9 +116631,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 258789322, "return_value": { - "type": "enum::Label.VisibleCharactersBehavior" + "type": "enum::TextServer.VisibleCharactersBehavior" } }, { @@ -113461,11 +116642,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3383839701, "arguments": [ { "name": "behavior", - "type": "enum::Label.VisibleCharactersBehavior" + "type": "enum::TextServer.VisibleCharactersBehavior" } ] }, @@ -113475,7 +116656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "percent_visible", @@ -113490,7 +116671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -113502,7 +116683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "lines_skipped", @@ -113517,7 +116698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -113529,7 +116710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "lines_visible", @@ -113544,7 +116725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -113556,7 +116737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -113570,7 +116751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -113581,7 +116762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -113595,7 +116776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -113609,6 +116790,13 @@ "getter": "get_text", "index": -1 }, + { + "type": "LabelSettings", + "name": "label_settings", + "setter": "set_label_settings", + "getter": "get_label_settings", + "index": -1 + }, { "type": "int", "name": "horizontal_alignment", @@ -113723,29 +116911,9 @@ "inherits": "GeometryInstance3D", "api_type": "core", "enums": [ - { - "name": "AutowrapMode", - "values": [ - { - "name": "AUTOWRAP_OFF", - "value": 0 - }, - { - "name": "AUTOWRAP_ARBITRARY", - "value": 1 - }, - { - "name": "AUTOWRAP_WORD", - "value": 2 - }, - { - "name": "AUTOWRAP_WORD_SMART", - "value": 3 - } - ] - }, { "name": "DrawFlags", + "is_bitfield": false, "values": [ { "name": "FLAG_SHADED", @@ -113771,6 +116939,7 @@ }, { "name": "AlphaCutMode", + "is_bitfield": false, "values": [ { "name": "ALPHA_CUT_DISABLED", @@ -113794,7 +116963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -113808,7 +116977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -113819,7 +116988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1796458609, "arguments": [ { "name": "alignment", @@ -113833,7 +117002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3274884059, "return_value": { "type": "enum::VerticalAlignment" } @@ -113844,7 +117013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "modulate", @@ -113858,7 +117027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -113869,7 +117038,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "modulate", @@ -113883,7 +117052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -113894,7 +117063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -113908,7 +117077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -113919,7 +117088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1418190634, "arguments": [ { "name": "direction", @@ -113933,63 +117102,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2516697328, "return_value": { "type": "enum::TextServer.Direction" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -114003,7 +117127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -114014,7 +117138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -114028,7 +117152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -114039,7 +117163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -114053,7 +117177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -114064,7 +117188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -114078,7 +117202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -114089,7 +117213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -114104,7 +117228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114116,7 +117240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -114131,7 +117255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114143,7 +117267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1262170328, "arguments": [ { "name": "font", @@ -114157,7 +117281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229501585, "return_value": { "type": "Font" } @@ -114168,7 +117292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -114183,7 +117307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114195,7 +117319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "outline_size", @@ -114210,7 +117334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114222,7 +117346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "line_spacing", @@ -114237,7 +117361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -114249,11 +117373,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3289138044, "arguments": [ { "name": "autowrap_mode", - "type": "enum::Label3D.AutowrapMode" + "type": "enum::TextServer.AutowrapMode" } ] }, @@ -114263,9 +117387,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1549071663, "return_value": { - "type": "enum::Label3D.AutowrapMode" + "type": "enum::TextServer.AutowrapMode" } }, { @@ -114274,7 +117398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "width", @@ -114289,7 +117413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -114301,7 +117425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixel_size", @@ -114316,7 +117440,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -114328,7 +117452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -114342,7 +117466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -114353,7 +117477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1285833066, "arguments": [ { "name": "flag", @@ -114371,7 +117495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 259226453, "return_value": { "type": "bool" }, @@ -114388,7 +117512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4202036497, "arguments": [ { "name": "mode", @@ -114402,7 +117526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1283840139, "return_value": { "type": "enum::BaseMaterial3D.BillboardMode" } @@ -114413,7 +117537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2549142916, "arguments": [ { "name": "mode", @@ -114427,7 +117551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 219468601, "return_value": { "type": "enum::Label3D.AlphaCutMode" } @@ -114438,7 +117562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "threshold", @@ -114453,7 +117577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -114465,7 +117589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 22904437, "arguments": [ { "name": "mode", @@ -114479,7 +117603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3289213076, "return_value": { "type": "enum::BaseMaterial3D.TextureFilter" } @@ -114490,7 +117614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3476533166, "return_value": { "type": "TriangleMesh" } @@ -114665,6 +117789,20 @@ "getter": "get_width", "index": -1 }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, { "type": "int", "name": "structured_text_bidi_override", @@ -114678,19 +117816,312 @@ "setter": "set_structured_text_bidi_override_options", "getter": "get_structured_text_bidi_override_options", "index": -1 + } + ] + }, + { + "name": "LabelSettings", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_line_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "spacing", + "type": "float", + "meta": "float" + } + ] }, { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction", + "name": "get_line_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_font", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1262170328, + "arguments": [ + { + "name": "font", + "type": "Font" + } + ] + }, + { + "name": "get_font", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3229501585, + "return_value": { + "type": "Font" + } + }, + { + "name": "set_font_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_font_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_font_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2920490490, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_font_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3444240500, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_outline_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_outline_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_outline_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2920490490, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_outline_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3444240500, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_shadow_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_shadow_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_shadow_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2920490490, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_shadow_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3444240500, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_shadow_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 743155724, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_shadow_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3341600327, + "return_value": { + "type": "Vector2" + } + } + ], + "properties": [ + { + "type": "float", + "name": "line_spacing", + "setter": "set_line_spacing", + "getter": "get_line_spacing", "index": -1 }, { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language", + "type": "Font", + "name": "font", + "setter": "set_font", + "getter": "get_font", + "index": -1 + }, + { + "type": "int", + "name": "font_size", + "setter": "set_font_size", + "getter": "get_font_size", + "index": -1 + }, + { + "type": "Color", + "name": "font_color", + "setter": "set_font_color", + "getter": "get_font_color", + "index": -1 + }, + { + "type": "int", + "name": "outline_size", + "setter": "set_outline_size", + "getter": "get_outline_size", + "index": -1 + }, + { + "type": "Color", + "name": "outline_color", + "setter": "set_outline_color", + "getter": "get_outline_color", + "index": -1 + }, + { + "type": "int", + "name": "shadow_size", + "setter": "set_shadow_size", + "getter": "get_shadow_size", + "index": -1 + }, + { + "type": "Color", + "name": "shadow_color", + "setter": "set_shadow_color", + "getter": "get_shadow_color", + "index": -1 + }, + { + "type": "Vector2", + "name": "shadow_offset", + "setter": "set_shadow_offset", + "getter": "get_shadow_offset", "index": -1 } ] @@ -114704,6 +118135,7 @@ "enums": [ { "name": "ShadowFilter", + "is_bitfield": false, "values": [ { "name": "SHADOW_FILTER_NONE", @@ -114721,6 +118153,7 @@ }, { "name": "BlendMode", + "is_bitfield": false, "values": [ { "name": "BLEND_MODE_ADD", @@ -114744,7 +118177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -114758,7 +118191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -114769,7 +118202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "editor_only", @@ -114783,7 +118216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -114794,7 +118227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -114808,7 +118241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -114819,7 +118252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -114834,7 +118267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -114846,7 +118279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "z", @@ -114861,7 +118294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114873,7 +118306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "z", @@ -114888,7 +118321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114900,7 +118333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -114915,7 +118348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114927,7 +118360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -114942,7 +118375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114954,7 +118387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "item_cull_mask", @@ -114969,7 +118402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -114981,7 +118414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "item_shadow_cull_mask", @@ -114996,7 +118429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -115008,7 +118441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -115022,7 +118455,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115033,7 +118466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "smooth", @@ -115048,7 +118481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -115060,7 +118493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3209356555, "arguments": [ { "name": "filter", @@ -115074,7 +118507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1973619177, "return_value": { "type": "enum::Light2D.ShadowFilter" } @@ -115085,7 +118518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "shadow_color", @@ -115099,7 +118532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -115110,7 +118543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2916638796, "arguments": [ { "name": "mode", @@ -115124,7 +118557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 936255250, "return_value": { "type": "enum::Light2D.BlendMode" } @@ -115135,7 +118568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -115150,7 +118583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -115274,6 +118707,7 @@ "enums": [ { "name": "Param", + "is_bitfield": false, "values": [ { "name": "PARAM_ENERGY", @@ -115359,6 +118793,7 @@ }, { "name": "BakeMode", + "is_bitfield": false, "values": [ { "name": "BAKE_DISABLED", @@ -115382,7 +118817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "editor_only", @@ -115396,7 +118831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115407,7 +118842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1722734213, "arguments": [ { "name": "param", @@ -115426,7 +118861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1844084987, "return_value": { "type": "float", "meta": "float" @@ -115444,7 +118879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -115458,7 +118893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115469,7 +118904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -115483,7 +118918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115494,7 +118929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "cull_mask", @@ -115509,7 +118944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -115521,7 +118956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -115535,7 +118970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115546,7 +118981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -115561,7 +118996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -115573,7 +119008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -115588,7 +119023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -115600,7 +119035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -115615,7 +119050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -115627,7 +119062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -115641,7 +119076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -115652,7 +119087,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -115666,7 +119101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115677,7 +119112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 37739303, "arguments": [ { "name": "bake_mode", @@ -115691,7 +119126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 371737608, "return_value": { "type": "enum::Light3D.BakeMode" } @@ -115702,7 +119137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "projector", @@ -115716,7 +119151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -115892,7 +119327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3258315893, "arguments": [ { "name": "polygon", @@ -115906,7 +119341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3962317075, "return_value": { "type": "OccluderPolygon2D" } @@ -115917,7 +119352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -115932,7 +119367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -115944,7 +119379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -115958,7 +119393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -115997,6 +119432,7 @@ "enums": [ { "name": "BakeQuality", + "is_bitfield": false, "values": [ { "name": "BAKE_QUALITY_LOW", @@ -116018,6 +119454,7 @@ }, { "name": "GenerateProbes", + "is_bitfield": false, "values": [ { "name": "GENERATE_PROBES_DISABLED", @@ -116043,6 +119480,7 @@ }, { "name": "BakeError", + "is_bitfield": false, "values": [ { "name": "BAKE_ERROR_OK", @@ -116076,6 +119514,7 @@ }, { "name": "EnvironmentMode", + "is_bitfield": false, "values": [ { "name": "ENVIRONMENT_MODE_DISABLED", @@ -116103,7 +119542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1790597277, "arguments": [ { "name": "data", @@ -116117,7 +119556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 290354153, "return_value": { "type": "LightmapGIData" } @@ -116128,7 +119567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1192215803, "arguments": [ { "name": "bake_quality", @@ -116142,7 +119581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 688832735, "return_value": { "type": "enum::LightmapGI.BakeQuality" } @@ -116153,7 +119592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bounces", @@ -116168,7 +119607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -116180,7 +119619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 549981046, "arguments": [ { "name": "subdivision", @@ -116194,7 +119633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3930596226, "return_value": { "type": "enum::LightmapGI.GenerateProbes" } @@ -116205,7 +119644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -116220,7 +119659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -116232,7 +119671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2282650285, "arguments": [ { "name": "mode", @@ -116246,7 +119685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4128646479, "return_value": { "type": "enum::LightmapGI.EnvironmentMode" } @@ -116257,7 +119696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3336722921, "arguments": [ { "name": "sky", @@ -116271,7 +119710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1177136966, "return_value": { "type": "Sky" } @@ -116282,7 +119721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -116296,7 +119735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -116307,7 +119746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -116322,7 +119761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -116334,7 +119773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_texture_size", @@ -116349,7 +119788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -116361,7 +119800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_denoiser", @@ -116375,7 +119814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -116386,7 +119825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -116400,7 +119839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -116411,7 +119850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "directional", @@ -116425,7 +119864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -116538,7 +119977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1278366092, "arguments": [ { "name": "light_texture", @@ -116552,7 +119991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3984243839, "return_value": { "type": "TextureLayered" } @@ -116563,7 +120002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "uses_spherical_harmonics", @@ -116577,7 +120016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -116588,7 +120027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4272570515, "arguments": [ { "name": "path", @@ -116616,7 +120055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -116628,7 +120067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -116646,7 +120085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -116657,6 +120096,13 @@ "getter": "get_light_texture", "index": -1 }, + { + "type": "Array", + "name": "light_textures", + "setter": "_set_light_textures_data", + "getter": "_get_light_textures_data", + "index": -1 + }, { "type": "bool", "name": "uses_spherical_harmonics", @@ -116710,6 +120156,7 @@ "enums": [ { "name": "LineJointMode", + "is_bitfield": false, "values": [ { "name": "LINE_JOINT_SHARP", @@ -116727,6 +120174,7 @@ }, { "name": "LineCapMode", + "is_bitfield": false, "values": [ { "name": "LINE_CAP_NONE", @@ -116744,6 +120192,7 @@ }, { "name": "LineTextureMode", + "is_bitfield": false, "values": [ { "name": "LINE_TEXTURE_NONE", @@ -116767,7 +120216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "points", @@ -116781,7 +120230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -116792,7 +120241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "i", @@ -116811,7 +120260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -116829,7 +120278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -116841,7 +120290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 468506575, "arguments": [ { "name": "position", @@ -116861,7 +120310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "i", @@ -116876,7 +120325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_width", @@ -116884,7 +120333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "width", @@ -116899,7 +120348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -116911,7 +120360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -116925,7 +120374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -116936,7 +120385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -116950,7 +120399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -116961,7 +120410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "color", @@ -116975,7 +120424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -116986,7 +120435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -117000,7 +120449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -117011,7 +120460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1952559516, "arguments": [ { "name": "mode", @@ -117025,7 +120474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2341040722, "return_value": { "type": "enum::Line2D.LineTextureMode" } @@ -117036,7 +120485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 604292979, "arguments": [ { "name": "mode", @@ -117050,7 +120499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2546544037, "return_value": { "type": "enum::Line2D.LineJointMode" } @@ -117061,7 +120510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1669024546, "arguments": [ { "name": "mode", @@ -117075,7 +120524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1107511441, "return_value": { "type": "enum::Line2D.LineCapMode" } @@ -117086,7 +120535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1669024546, "arguments": [ { "name": "mode", @@ -117100,7 +120549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1107511441, "return_value": { "type": "enum::Line2D.LineCapMode" } @@ -117111,7 +120560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "limit", @@ -117126,7 +120575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -117138,7 +120587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "precision", @@ -117153,7 +120602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -117165,7 +120614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "antialiased", @@ -117179,7 +120628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117288,6 +120737,7 @@ "enums": [ { "name": "MenuItems", + "is_bitfield": false, "values": [ { "name": "MENU_CUT", @@ -117415,7 +120865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -117429,7 +120879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -117440,7 +120890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "select", @@ -117448,7 +120898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2601066974, + "hash": 1328111411, "arguments": [ { "name": "from", @@ -117470,7 +120920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "deselect", @@ -117478,7 +120928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "has_selection", @@ -117486,7 +120936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117497,7 +120947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -117509,7 +120959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -117521,7 +120971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -117535,7 +120985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -117546,7 +120996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117557,7 +121007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -117571,7 +121021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -117585,63 +121035,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -117655,7 +121060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -117666,7 +121071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -117680,7 +121085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -117691,7 +121096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -117705,7 +121110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -117716,7 +121121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -117730,7 +121135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -117741,7 +121146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "position", @@ -117756,7 +121161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -117768,7 +121173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -117780,7 +121185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -117794,7 +121199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117805,7 +121210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -117819,7 +121224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117830,7 +121235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -117844,7 +121249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117855,7 +121260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -117869,7 +121274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -117880,7 +121285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "blink_speed", @@ -117895,7 +121300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -117907,7 +121312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "chars", @@ -117922,7 +121327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -117934,7 +121339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -117948,7 +121353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "delete_text", @@ -117956,7 +121361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from_column", @@ -117976,7 +121381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -117990,7 +121395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118001,7 +121406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -118015,7 +121420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118026,7 +121431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "character", @@ -118040,7 +121445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -118051,7 +121456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "option", @@ -118066,7 +121471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 229722558, "return_value": { "type": "PopupMenu" } @@ -118077,7 +121482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118088,7 +121493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118102,7 +121507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -118113,7 +121518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118127,7 +121532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118138,7 +121543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118152,7 +121557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118163,7 +121568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118177,7 +121582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118188,7 +121593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118202,7 +121607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118213,7 +121618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118227,7 +121632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118238,7 +121643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -118252,7 +121657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118263,7 +121668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "icon", @@ -118277,7 +121682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 255860311, "return_value": { "type": "Texture2D" } @@ -118288,7 +121693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -118302,7 +121707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -118457,20 +121862,6 @@ "getter": "is_flat", "index": -1 }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction", - "index": -1 - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language", - "index": -1 - }, { "type": "bool", "name": "draw_control_chars", @@ -118478,20 +121869,6 @@ "getter": "get_draw_control_chars", "index": -1 }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override", - "index": -1 - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options", - "index": -1 - }, { "type": "bool", "name": "caret_blink", @@ -118526,6 +121903,34 @@ "setter": "set_caret_mid_grapheme_enabled", "getter": "is_caret_mid_grapheme_enabled", "index": -1 + }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 } ] }, @@ -118538,6 +121943,7 @@ "enums": [ { "name": "UnderlineMode", + "is_bitfield": false, "values": [ { "name": "UNDERLINE_MODE_ALWAYS", @@ -118561,7 +121967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -118575,7 +121981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -118586,7 +121992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -118600,63 +122006,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -118670,7 +122031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -118681,7 +122042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4032947085, "arguments": [ { "name": "underline_mode", @@ -118695,7 +122056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 568343738, "return_value": { "type": "enum::LinkButton.UnderlineMode" } @@ -118706,7 +122067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -118720,7 +122081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -118731,7 +122092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -118745,7 +122106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -118759,6 +122120,13 @@ "getter": "get_text", "index": -1 }, + { + "type": "int", + "name": "underline", + "setter": "set_underline_mode", + "getter": "get_underline_mode", + "index": -1 + }, { "type": "int", "name": "text_direction", @@ -118773,13 +122141,6 @@ "getter": "get_language", "index": -1 }, - { - "type": "int", - "name": "underline", - "setter": "set_underline_mode", - "getter": "get_underline_mode", - "index": -1 - }, { "type": "int", "name": "structured_text_bidi_override", @@ -118928,7 +122289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3876248563, "return_value": { "type": "String" }, @@ -118950,7 +122311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 218087648, "return_value": { "type": "Variant" }, @@ -118972,7 +122333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3999417757, "return_value": { "type": "String" }, @@ -118989,7 +122350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 659035735, "return_value": { "type": "PackedByteArray" }, @@ -119006,7 +122367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1703090593, "return_value": { "type": "String" }, @@ -119023,7 +122384,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1703090593, "return_value": { "type": "String" }, @@ -119099,7 +122460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "next_pass", @@ -119113,7 +122474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -119124,7 +122485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -119139,7 +122500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -119151,7 +122512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -119184,7 +122545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 229722558, "return_value": { "type": "PopupMenu" } @@ -119195,7 +122556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -119209,7 +122570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -119220,7 +122581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disabled", @@ -119234,7 +122595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -119249,7 +122610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -119287,6 +122648,7 @@ "enums": [ { "name": "PrimitiveType", + "is_bitfield": false, "values": [ { "name": "PRIMITIVE_POINTS", @@ -119312,6 +122674,7 @@ }, { "name": "ArrayType", + "is_bitfield": false, "values": [ { "name": "ARRAY_VERTEX", @@ -119373,6 +122736,7 @@ }, { "name": "ArrayCustomFormat", + "is_bitfield": false, "values": [ { "name": "ARRAY_CUSTOM_RGBA8_UNORM", @@ -119414,6 +122778,7 @@ }, { "name": "ArrayFormat", + "is_bitfield": false, "values": [ { "name": "ARRAY_FORMAT_VERTEX", @@ -119519,6 +122884,7 @@ }, { "name": "BlendShapeMode", + "is_bitfield": false, "values": [ { "name": "BLEND_SHAPE_MODE_NORMALIZED", @@ -119746,7 +123112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -119760,7 +123126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -119771,7 +123137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -119782,7 +123148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -119794,7 +123160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -119812,7 +123178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -119830,7 +123196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3671737478, "arguments": [ { "name": "surf_idx", @@ -119849,7 +123215,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2897466400, "return_value": { "type": "Material" }, @@ -119867,7 +123233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3214262478, "return_value": { "type": "Shape3D" } @@ -119878,7 +123244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1435035884, + "hash": 1330343779, "return_value": { "type": "Shape3D" }, @@ -119901,7 +123267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1208642001, "return_value": { "type": "Mesh" }, @@ -119919,7 +123285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -119930,7 +123296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3476533166, "return_value": { "type": "TriangleMesh" } @@ -119959,7 +123325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create_from_surface", @@ -119967,7 +123333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2727020678, "return_value": { "type": "enum::Error" }, @@ -119989,7 +123355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521099812, "return_value": { "type": "enum::Error" }, @@ -120006,7 +123372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -120018,7 +123384,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -120030,7 +123396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -120042,7 +123408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -120054,7 +123420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "idx", @@ -120073,7 +123439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -120091,7 +123457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "idx", @@ -120110,7 +123476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -120128,7 +123494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1104099133, "arguments": [ { "name": "idx", @@ -120147,7 +123513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1372055458, "return_value": { "type": "Plane" }, @@ -120165,7 +123531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "idx", @@ -120184,7 +123550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -120202,7 +123568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "idx", @@ -120221,7 +123587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -120239,7 +123605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "idx", @@ -120258,7 +123624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -120276,7 +123642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3500328261, "arguments": [ { "name": "idx", @@ -120295,7 +123661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1706082319, "return_value": { "type": "PackedInt32Array" }, @@ -120313,7 +123679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1345852415, "arguments": [ { "name": "idx", @@ -120332,7 +123698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1542882410, "return_value": { "type": "PackedFloat32Array" }, @@ -120350,7 +123716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "idx", @@ -120369,7 +123735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -120387,7 +123753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1706082319, "return_value": { "type": "PackedInt32Array" }, @@ -120405,7 +123771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1706082319, "return_value": { "type": "PackedInt32Array" }, @@ -120423,7 +123789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -120447,7 +123813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1706082319, "return_value": { "type": "PackedInt32Array" }, @@ -120465,7 +123831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "idx", @@ -120484,7 +123850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -120502,7 +123868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -120526,7 +123892,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -120550,7 +123916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "idx", @@ -120569,7 +123935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -120587,7 +123953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -120605,7 +123971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -120619,7 +123985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -120639,7 +124005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -120653,7 +124019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1808005922, "return_value": { "type": "Mesh" } @@ -120664,7 +124030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -120678,7 +124044,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -120689,7 +124055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "normal_map", @@ -120703,7 +124069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -120751,7 +124117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -120765,7 +124131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1808005922, "return_value": { "type": "Mesh" } @@ -120776,7 +124142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "skeleton_path", @@ -120790,7 +124156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 277076166, "return_value": { "type": "NodePath" } @@ -120801,7 +124167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3971435618, "arguments": [ { "name": "skin", @@ -120815,7 +124181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2074563878, "return_value": { "type": "Skin" } @@ -120826,7 +124192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -120838,7 +124204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3671737478, "arguments": [ { "name": "surface", @@ -120857,7 +124223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2897466400, "return_value": { "type": "Material" }, @@ -120875,7 +124241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2897466400, "return_value": { "type": "Material" }, @@ -120893,7 +124259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create_convex_collision", @@ -120901,7 +124267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 143567882, + "hash": 2751962654, "arguments": [ { "name": "clean", @@ -120921,7 +124287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_blend_shape_count", @@ -120929,7 +124295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -120941,7 +124307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4150868206, "return_value": { "type": "int", "meta": "int32" @@ -120959,7 +124325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -120978,7 +124344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "blend_shape_idx", @@ -120998,7 +124364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -121038,7 +124404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -121053,7 +124419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "id", @@ -121072,7 +124438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 969122797, "arguments": [ { "name": "id", @@ -121091,7 +124457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "id", @@ -121110,7 +124476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3483353960, "arguments": [ { "name": "id", @@ -121129,7 +124495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "id", @@ -121148,7 +124514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 537221740, "arguments": [ { "name": "id", @@ -121167,7 +124533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "id", @@ -121186,7 +124552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -121204,7 +124570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1576363275, "return_value": { "type": "Mesh" }, @@ -121222,7 +124588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -121240,7 +124606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2729647406, "return_value": { "type": "NavigationMesh" }, @@ -121258,7 +124624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -121276,7 +124642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -121294,7 +124660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -121312,7 +124678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -121327,7 +124693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int32" @@ -121345,7 +124711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_item_list", @@ -121353,7 +124719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -121364,7 +124730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -121385,7 +124751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -121399,7 +124765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1808005922, "return_value": { "type": "Mesh" } @@ -121410,7 +124776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -121424,7 +124790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -121435,7 +124801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -121449,7 +124815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -121492,7 +124858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 266477812, "return_value": { "type": "MethodTweener" }, @@ -121510,7 +124876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3740975367, "return_value": { "type": "MethodTweener" }, @@ -121527,7 +124893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 315540545, "return_value": { "type": "MethodTweener" }, @@ -121553,7 +124919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -121567,7 +124933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -121578,7 +124944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -121592,7 +124958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -121628,7 +124994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -121642,7 +125008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -121653,7 +125019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -121667,7 +125033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -121703,7 +125069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "eye_height", @@ -121718,7 +125084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121730,7 +125096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "iod", @@ -121745,7 +125111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121757,7 +125123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "display_width", @@ -121772,7 +125138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121784,7 +125150,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "display_to_lens", @@ -121799,7 +125165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121811,7 +125177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "oversample", @@ -121826,7 +125192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121838,7 +125204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "k", @@ -121853,7 +125219,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121865,7 +125231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "k", @@ -121880,7 +125246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -121939,6 +125305,130 @@ } ] }, + { + "name": "MovieWriter", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "_get_audio_mix_rate", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_audio_speaker_mode", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::AudioServer.SpeakerMode" + } + }, + { + "name": "_handles_file", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, + { + "name": "_write_begin", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "movie_size", + "type": "Vector2i" + }, + { + "name": "fps", + "type": "int" + }, + { + "name": "base_path", + "type": "String" + } + ] + }, + { + "name": "_write_frame", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "frame_image", + "type": "Image" + }, + { + "name": "audio_frame_block", + "type": "const void*" + } + ] + }, + { + "name": "_write_end", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true + }, + { + "name": "add_writer", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 4023702871, + "arguments": [ + { + "name": "writer", + "type": "MovieWriter" + } + ] + } + ] + }, + { + "name": "MovieWriterMJPEG", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "MovieWriter", + "api_type": "core" + }, + { + "name": "MovieWriterPNGWAV", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "MovieWriter", + "api_type": "core" + }, { "name": "MultiMesh", "is_refcounted": true, @@ -121948,6 +125438,7 @@ "enums": [ { "name": "TransformFormat", + "is_bitfield": false, "values": [ { "name": "TRANSFORM_2D", @@ -121967,7 +125458,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -121981,7 +125472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1808005922, "return_value": { "type": "Mesh" } @@ -121992,7 +125483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -122006,7 +125497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -122017,7 +125508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -122031,7 +125522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -122042,7 +125533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2404750322, "arguments": [ { "name": "format", @@ -122056,7 +125547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2444156481, "return_value": { "type": "enum::MultiMesh.TransformFormat" } @@ -122067,7 +125558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -122082,7 +125573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -122094,7 +125585,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -122109,7 +125600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -122121,7 +125612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "instance", @@ -122140,7 +125631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 30160968, "arguments": [ { "name": "instance", @@ -122159,7 +125650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -122177,7 +125668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3836996910, "return_value": { "type": "Transform2D" }, @@ -122195,7 +125686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "instance", @@ -122214,7 +125705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -122232,7 +125723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "instance", @@ -122251,7 +125742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -122269,7 +125760,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -122280,7 +125771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 675695659, "return_value": { "type": "PackedFloat32Array" } @@ -122291,7 +125782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "buffer", @@ -122393,7 +125884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2246127404, "arguments": [ { "name": "multimesh", @@ -122407,7 +125898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1385450523, "return_value": { "type": "MultiMesh" } @@ -122418,7 +125909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -122432,7 +125923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -122443,7 +125934,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "normal_map", @@ -122457,7 +125948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -122505,7 +125996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2246127404, "arguments": [ { "name": "multimesh", @@ -122519,7 +126010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1385450523, "return_value": { "type": "MultiMesh" } @@ -122538,87 +126029,48 @@ { "name": "MultiplayerAPI", "is_refcounted": true, - "is_instantiable": true, + "is_instantiable": false, "inherits": "RefCounted", "api_type": "core", + "enums": [ + { + "name": "RPCMode", + "is_bitfield": false, + "values": [ + { + "name": "RPC_MODE_DISABLED", + "value": 0 + }, + { + "name": "RPC_MODE_ANY_PEER", + "value": 1 + }, + { + "name": "RPC_MODE_AUTHORITY", + "value": 2 + } + ] + } + ], "methods": [ - { - "name": "set_root_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "path", - "type": "NodePath" - } - ] - }, - { - "name": "get_root_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "send_bytes", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2499035564, - "return_value": { - "type": "enum::Error" - }, - "arguments": [ - { - "name": "bytes", - "type": "PackedByteArray" - }, - { - "name": "id", - "type": "int", - "meta": "int32", - "default_value": "0" - }, - { - "name": "mode", - "type": "enum::TransferMode", - "default_value": "2" - }, - { - "name": "channel", - "type": "int", - "meta": "int32", - "default_value": "0" - } - ] - }, { "name": "has_multiplayer_peer", - "is_const": true, + "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2240911060, "return_value": { "type": "bool" } }, { "name": "get_multiplayer_peer", - "is_const": true, + "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3223692825, "return_value": { "type": "MultiplayerPeer" } @@ -122629,7 +126081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3694835298, "arguments": [ { "name": "peer", @@ -122639,11 +126091,11 @@ }, { "name": "get_unique_id", - "is_const": true, + "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -122651,22 +126103,22 @@ }, { "name": "is_server", - "is_const": true, + "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2240911060, "return_value": { "type": "bool" } }, { "name": "get_remote_sender_id", - "is_const": true, + "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -122678,75 +126130,129 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 166280745, + "return_value": { + "type": "enum::Error" + } }, { - "name": "clear", + "name": "rpc", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 1833408346, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "peer", + "type": "int", + "meta": "int32" + }, + { + "name": "object", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + }, + { + "name": "arguments", + "type": "Array", + "default_value": "[]" + } + ] }, { - "name": "get_peers", - "is_const": true, + "name": "object_configuration_add", + "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1171879464, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "configuration", + "type": "Variant" + } + ] + }, + { + "name": "object_configuration_remove", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1171879464, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "configuration", + "type": "Variant" + } + ] + }, + { + "name": "get_peers", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } }, { - "name": "set_refuse_new_connections", + "name": "set_default_interface", "is_const": false, "is_vararg": false, - "is_static": false, + "is_static": true, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { - "name": "refuse", - "type": "bool" + "name": "interface_name", + "type": "StringName" } ] }, { - "name": "is_refusing_new_connections", - "is_const": true, + "name": "get_default_interface", + "is_const": false, "is_vararg": false, - "is_static": false, + "is_static": true, "is_virtual": false, - "hash": 135338183, + "hash": 2737447660, "return_value": { - "type": "bool" + "type": "StringName" } }, { - "name": "set_allow_object_decoding", + "name": "create_default_interface", "is_const": false, "is_vararg": false, - "is_static": false, + "is_static": true, "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enable", - "type": "bool" - } - ] - }, - { - "name": "is_object_decoding_allowed", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, + "hash": 3294156723, "return_value": { - "type": "bool" + "type": "MultiplayerAPI" } } ], @@ -122769,19 +126275,6 @@ } ] }, - { - "name": "peer_packet", - "arguments": [ - { - "name": "id", - "type": "int" - }, - { - "name": "packet", - "type": "PackedByteArray" - } - ] - }, { "name": "connected_to_server" }, @@ -122793,33 +126286,152 @@ } ], "properties": [ - { - "type": "bool", - "name": "allow_object_decoding", - "setter": "set_allow_object_decoding", - "getter": "is_object_decoding_allowed", - "index": -1 - }, - { - "type": "bool", - "name": "refuse_new_connections", - "setter": "set_refuse_new_connections", - "getter": "is_refusing_new_connections", - "index": -1 - }, { "type": "MultiplayerPeer", "name": "multiplayer_peer", "setter": "set_multiplayer_peer", "getter": "get_multiplayer_peer", "index": -1 + } + ] + }, + { + "name": "MultiplayerAPIExtension", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "MultiplayerAPI", + "api_type": "core", + "methods": [ + { + "name": "_poll", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } }, { - "type": "NodePath", - "name": "root_path", - "setter": "set_root_path", - "getter": "get_root_path", - "index": -1 + "name": "_set_multiplayer_peer", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "multiplayer_peer", + "type": "MultiplayerPeer" + } + ] + }, + { + "name": "_get_multiplayer_peer", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "MultiplayerPeer" + } + }, + { + "name": "_get_unique_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_get_peer_ids", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedInt32Array" + } + }, + { + "name": "_rpc", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "peer", + "type": "int" + }, + { + "name": "object", + "type": "Object" + }, + { + "name": "method", + "type": "StringName" + }, + { + "name": "args", + "type": "Array" + } + ] + }, + { + "name": "_get_remote_sender_id", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + } + }, + { + "name": "_object_configuration_add", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "configuration", + "type": "Variant" + } + ] + }, + { + "name": "_object_configuration_remove", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "object", + "type": "Object" + }, + { + "name": "configuration", + "type": "Variant" + } + ] } ] }, @@ -122842,6 +126454,7 @@ "enums": [ { "name": "ConnectionStatus", + "is_bitfield": false, "values": [ { "name": "CONNECTION_DISCONNECTED", @@ -122856,6 +126469,24 @@ "value": 2 } ] + }, + { + "name": "TransferMode", + "is_bitfield": false, + "values": [ + { + "name": "TRANSFER_MODE_UNRELIABLE", + "value": 0 + }, + { + "name": "TRANSFER_MODE_UNRELIABLE_ORDERED", + "value": 1 + }, + { + "name": "TRANSFER_MODE_RELIABLE", + "value": 2 + } + ] } ], "methods": [ @@ -122865,7 +126496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "channel", @@ -122880,7 +126511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -122892,11 +126523,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 950411049, "arguments": [ { "name": "mode", - "type": "enum::TransferMode" + "type": "enum::MultiplayerPeer.TransferMode" } ] }, @@ -122906,9 +126537,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3369852622, "return_value": { - "type": "enum::TransferMode" + "type": "enum::MultiplayerPeer.TransferMode" } }, { @@ -122917,7 +126548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -122932,7 +126563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -122944,7 +126575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_connection_status", @@ -122952,7 +126583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2147374275, "return_value": { "type": "enum::MultiplayerPeer.ConnectionStatus" } @@ -122963,7 +126594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -122975,7 +126606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -122987,7 +126618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -123001,7 +126632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -123127,6 +126758,32 @@ "type": "int" } }, + { + "name": "_get_packet_script", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedByteArray" + } + }, + { + "name": "_put_packet_script", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "p_buffer", + "type": "PackedByteArray" + } + ] + }, { "name": "_set_transfer_channel", "is_const": false, @@ -123290,7 +126947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -123304,7 +126961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -123316,7 +126973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -123334,7 +126991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "spawn", @@ -123342,7 +126999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 1991184589, "return_value": { "type": "Node" }, @@ -123360,7 +127017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -123371,7 +127028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -123385,7 +127042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -123397,7 +127054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "limit", @@ -123405,31 +127062,6 @@ "meta": "uint32" } ] - }, - { - "name": "set_auto_spawning", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "enabled", - "type": "bool" - } - ] - }, - { - "name": "is_auto_spawning", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "bool" - } } ], "signals": [ @@ -123474,13 +127106,6 @@ "setter": "set_spawn_limit", "getter": "get_spawn_limit", "index": -1 - }, - { - "type": "bool", - "name": "auto_spawn", - "setter": "set_auto_spawning", - "getter": "is_auto_spawning", - "index": -1 } ] }, @@ -123490,6 +127115,26 @@ "is_instantiable": true, "inherits": "Node", "api_type": "core", + "enums": [ + { + "name": "VisibilityUpdateMode", + "is_bitfield": false, + "values": [ + { + "name": "VISIBILITY_PROCESS_IDLE", + "value": 0 + }, + { + "name": "VISIBILITY_PROCESS_PHYSICS", + "value": 1 + }, + { + "name": "VISIBILITY_PROCESS_NONE", + "value": 2 + } + ] + } + ], "methods": [ { "name": "set_root_path", @@ -123497,7 +127142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -123511,7 +127156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -123522,7 +127167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "milliseconds", @@ -123537,7 +127182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -123549,7 +127194,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3889206742, "arguments": [ { "name": "config", @@ -123563,10 +127208,152 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3200254614, "return_value": { "type": "SceneReplicationConfig" } + }, + { + "name": "set_visibility_update_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3494860300, + "arguments": [ + { + "name": "mode", + "type": "enum::MultiplayerSynchronizer.VisibilityUpdateMode" + } + ] + }, + { + "name": "get_visibility_update_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3352241418, + "return_value": { + "type": "enum::MultiplayerSynchronizer.VisibilityUpdateMode" + } + }, + { + "name": "update_visibility", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1995695955, + "arguments": [ + { + "name": "for_peer", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + }, + { + "name": "set_visibility_public", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "is_visibility_public", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "add_visibility_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1611583062, + "arguments": [ + { + "name": "filter", + "type": "Callable" + } + ] + }, + { + "name": "remove_visibility_filter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1611583062, + "arguments": [ + { + "name": "filter", + "type": "Callable" + } + ] + }, + { + "name": "set_visibility_for", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "peer", + "type": "int", + "meta": "int32" + }, + { + "name": "visible", + "type": "bool" + } + ] + }, + { + "name": "get_visibility_for", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "peer", + "type": "int", + "meta": "int32" + } + ] + } + ], + "signals": [ + { + "name": "visibility_changed", + "arguments": [ + { + "name": "for_peer", + "type": "int" + } + ] } ], "properties": [ @@ -123590,6 +127377,20 @@ "setter": "set_replication_config", "getter": "get_replication_config", "index": -1 + }, + { + "type": "int", + "name": "visibility_update_mode", + "setter": "set_visibility_update_mode", + "getter": "get_visibility_update_mode", + "index": -1 + }, + { + "type": "bool", + "name": "public_visibility", + "setter": "set_visibility_public", + "getter": "is_visibility_public", + "index": -1 } ] }, @@ -123606,7 +127407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "try_lock", @@ -123614,7 +127415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -123625,7 +127426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -123638,6 +127439,7 @@ "enums": [ { "name": "InitializationLevel", + "is_bitfield": false, "values": [ { "name": "INITIALIZATION_LEVEL_CORE", @@ -123665,7 +127467,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -123686,7 +127488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_library_open", @@ -123694,7 +127496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -123705,7 +127507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3541246554, "return_value": { "type": "enum::NativeExtension.InitializationLevel" } @@ -123716,7 +127518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3743496778, "arguments": [ { "name": "level", @@ -123735,6 +127537,7 @@ "enums": [ { "name": "LoadStatus", + "is_bitfield": false, "values": [ { "name": "LOAD_STATUS_OK", @@ -123766,7 +127569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3900395898, "return_value": { "type": "enum::NativeExtensionManager.LoadStatus" }, @@ -123783,7 +127586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3900395898, "return_value": { "type": "enum::NativeExtensionManager.LoadStatus" }, @@ -123800,7 +127603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3900395898, "return_value": { "type": "enum::NativeExtensionManager.LoadStatus" }, @@ -123817,7 +127620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -123834,7 +127637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -123845,7 +127648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3065478200, "return_value": { "type": "NativeExtension" }, @@ -123871,7 +127674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -123882,7 +127685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -123896,18 +127699,45 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, + { + "name": "set_path_desired_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "desired_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_desired_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "set_target_desired_distance", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "desired_distance", @@ -123922,7 +127752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -123934,7 +127764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -123949,7 +127779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -123961,7 +127791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "neighbor_dist", @@ -123976,7 +127806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -123988,7 +127818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_neighbors", @@ -124003,7 +127833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -124015,7 +127845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time_horizon", @@ -124030,7 +127860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124042,7 +127872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_speed", @@ -124057,7 +127887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124069,7 +127899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_speed", @@ -124084,46 +127914,108 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" } }, { - "name": "set_navigable_layers", + "name": "set_navigation_layers", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { - "name": "navigable_layers", + "name": "navigation_layers", "type": "int", "meta": "uint32" } ] }, { - "name": "get_navigable_layers", + "name": "get_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" } }, + { + "name": "set_navigation_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_navigation_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_navigation_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2722037293, + "arguments": [ + { + "name": "navigation_map", + "type": "RID" + } + ] + }, + { + "name": "get_navigation_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2944877500, + "return_value": { + "type": "RID" + } + }, { "name": "set_target_location", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "location", @@ -124137,7 +128029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -124148,7 +128040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1497962370, "return_value": { "type": "Vector2" } @@ -124159,7 +128051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124171,7 +128063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "velocity", @@ -124185,7 +128077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -124196,7 +128088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -124208,7 +128100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -124219,7 +128111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -124230,7 +128122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -124241,7 +128133,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1497962370, "return_value": { "type": "Vector2" } @@ -124268,6 +128160,13 @@ } ], "properties": [ + { + "type": "float", + "name": "path_desired_distance", + "setter": "set_path_desired_distance", + "getter": "get_path_desired_distance", + "index": -1 + }, { "type": "float", "name": "target_desired_distance", @@ -124275,6 +128174,27 @@ "getter": "get_target_desired_distance", "index": -1 }, + { + "type": "float", + "name": "path_max_distance", + "setter": "set_path_max_distance", + "getter": "get_path_max_distance", + "index": -1 + }, + { + "type": "int", + "name": "navigation_layers", + "setter": "set_navigation_layers", + "getter": "get_navigation_layers", + "index": -1 + }, + { + "type": "bool", + "name": "avoidance_enabled", + "setter": "set_avoidance_enabled", + "getter": "get_avoidance_enabled", + "index": -1 + }, { "type": "float", "name": "radius", @@ -124309,27 +128229,6 @@ "setter": "set_max_speed", "getter": "get_max_speed", "index": -1 - }, - { - "type": "float", - "name": "path_max_distance", - "setter": "set_path_max_distance", - "getter": "get_path_max_distance", - "index": -1 - }, - { - "type": "bool", - "name": "avoidance_enabled", - "setter": "set_avoidance_enabled", - "getter": "get_avoidance_enabled", - "index": -1 - }, - { - "type": "int", - "name": "navigable_layers", - "setter": "set_navigable_layers", - "getter": "get_navigable_layers", - "index": -1 } ] }, @@ -124346,7 +128245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -124357,7 +128256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -124371,18 +128270,45 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, + { + "name": "set_path_desired_distance", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "desired_distance", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_path_desired_distance", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "set_target_desired_distance", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "desired_distance", @@ -124397,7 +128323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124409,7 +128335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -124424,7 +128350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124436,7 +128362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "agent_height_offset", @@ -124451,7 +128377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124463,7 +128389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ignore", @@ -124477,7 +128403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -124488,7 +128414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "neighbor_dist", @@ -124503,7 +128429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124515,7 +128441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_neighbors", @@ -124530,7 +128456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -124542,7 +128468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time_horizon", @@ -124557,7 +128483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124569,7 +128495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_speed", @@ -124584,7 +128510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124596,7 +128522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_speed", @@ -124611,46 +128537,108 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" } }, { - "name": "set_navigable_layers", + "name": "set_navigation_layers", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { - "name": "navigable_layers", + "name": "navigation_layers", "type": "int", "meta": "uint32" } ] }, { - "name": "get_navigable_layers", + "name": "get_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" } }, + { + "name": "set_navigation_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_navigation_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_navigation_map", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2722037293, + "arguments": [ + { + "name": "navigation_map", + "type": "RID" + } + ] + }, + { + "name": "get_navigation_map", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2944877500, + "return_value": { + "type": "RID" + } + }, { "name": "set_target_location", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "location", @@ -124664,7 +128652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -124675,7 +128663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3783033775, "return_value": { "type": "Vector3" } @@ -124686,7 +128674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -124698,7 +128686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "velocity", @@ -124712,7 +128700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -124723,7 +128711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -124735,7 +128723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -124746,7 +128734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -124757,7 +128745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -124768,7 +128756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3783033775, "return_value": { "type": "Vector3" } @@ -124795,6 +128783,13 @@ } ], "properties": [ + { + "type": "float", + "name": "path_desired_distance", + "setter": "set_path_desired_distance", + "getter": "get_path_desired_distance", + "index": -1 + }, { "type": "float", "name": "target_desired_distance", @@ -124804,16 +128799,37 @@ }, { "type": "float", - "name": "radius", - "setter": "set_radius", - "getter": "get_radius", + "name": "agent_height_offset", + "setter": "set_agent_height_offset", + "getter": "get_agent_height_offset", "index": -1 }, { "type": "float", - "name": "agent_height_offset", - "setter": "set_agent_height_offset", - "getter": "get_agent_height_offset", + "name": "path_max_distance", + "setter": "set_path_max_distance", + "getter": "get_path_max_distance", + "index": -1 + }, + { + "type": "int", + "name": "navigation_layers", + "setter": "set_navigation_layers", + "getter": "get_navigation_layers", + "index": -1 + }, + { + "type": "bool", + "name": "avoidance_enabled", + "setter": "set_avoidance_enabled", + "getter": "get_avoidance_enabled", + "index": -1 + }, + { + "type": "float", + "name": "radius", + "setter": "set_radius", + "getter": "get_radius", "index": -1 }, { @@ -124844,33 +128860,12 @@ "getter": "get_max_speed", "index": -1 }, - { - "type": "float", - "name": "path_max_distance", - "setter": "set_path_max_distance", - "getter": "get_path_max_distance", - "index": -1 - }, { "type": "bool", "name": "ignore_y", "setter": "set_ignore_y", "getter": "get_ignore_y", "index": -1 - }, - { - "type": "bool", - "name": "avoidance_enabled", - "setter": "set_avoidance_enabled", - "getter": "get_avoidance_enabled", - "index": -1 - }, - { - "type": "int", - "name": "navigable_layers", - "setter": "set_navigable_layers", - "getter": "get_navigable_layers", - "index": -1 } ] }, @@ -124883,6 +128878,7 @@ "enums": [ { "name": "SamplePartitionType", + "is_bitfield": false, "values": [ { "name": "SAMPLE_PARTITION_WATERSHED", @@ -124904,6 +128900,7 @@ }, { "name": "ParsedGeometryType", + "is_bitfield": false, "values": [ { "name": "PARSED_GEOMETRY_MESH_INSTANCES", @@ -124925,6 +128922,7 @@ }, { "name": "SourceGeometryMode", + "is_bitfield": false, "values": [ { "name": "SOURCE_GEOMETRY_NAVMESH_CHILDREN", @@ -124952,7 +128950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2472437533, "arguments": [ { "name": "sample_partition_type", @@ -124966,7 +128964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 833513918, "return_value": { "type": "enum::NavigationMesh.SamplePartitionType" } @@ -124977,7 +128975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3064713163, "arguments": [ { "name": "geometry_type", @@ -124991,7 +128989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3928011953, "return_value": { "type": "enum::NavigationMesh.ParsedGeometryType" } @@ -125002,7 +129000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -125017,7 +129015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -125029,7 +129027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -125048,7 +129046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -125066,7 +129064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2700825194, "arguments": [ { "name": "mask", @@ -125080,7 +129078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2770484141, "return_value": { "type": "enum::NavigationMesh.SourceGeometryMode" } @@ -125091,7 +129089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "mask", @@ -125105,7 +129103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -125116,7 +129114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "cell_size", @@ -125131,7 +129129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125143,7 +129141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "cell_height", @@ -125158,7 +129156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125170,7 +129168,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "agent_height", @@ -125185,7 +129183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125197,7 +129195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "agent_radius", @@ -125212,7 +129210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -125224,7 +129222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "agent_max_climb", @@ -125239,7 +129237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125251,7 +129249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "agent_max_slope", @@ -125266,7 +129264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125278,7 +129276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "region_min_size", @@ -125293,7 +129291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125305,7 +129303,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "region_merge_size", @@ -125320,7 +129318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125332,7 +129330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "edge_max_length", @@ -125347,7 +129345,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125359,7 +129357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "edge_max_error", @@ -125374,7 +129372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125386,7 +129384,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "verts_per_poly", @@ -125401,7 +129399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125413,7 +129411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "detail_sample_dist", @@ -125428,7 +129426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125440,7 +129438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "detail_sample_max_error", @@ -125455,7 +129453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125467,7 +129465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "filter_low_hanging_obstacles", @@ -125481,7 +129479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -125492,7 +129490,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "filter_ledge_spans", @@ -125506,7 +129504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -125517,7 +129515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "filter_walkable_low_height_spans", @@ -125531,18 +129529,68 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, + { + "name": "set_filter_baking_aabb", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 259215842, + "arguments": [ + { + "name": "baking_aabb", + "type": "AABB" + } + ] + }, + { + "name": "get_filter_baking_aabb", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1068685055, + "return_value": { + "type": "AABB" + } + }, + { + "name": "set_filter_baking_aabb_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3460891852, + "arguments": [ + { + "name": "baking_aabb_offset", + "type": "Vector3" + } + ] + }, + { + "name": "get_filter_baking_aabb_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3360562783, + "return_value": { + "type": "Vector3" + } + }, { "name": "set_vertices", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 334873810, "arguments": [ { "name": "vertices", @@ -125556,7 +129604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -125567,7 +129615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "polygon", @@ -125581,7 +129629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -125593,7 +129641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3668444399, "return_value": { "type": "PackedInt32Array" }, @@ -125611,7 +129659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create_from_mesh", @@ -125619,7 +129667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -125789,6 +129837,20 @@ "setter": "set_filter_walkable_low_height_spans", "getter": "get_filter_walkable_low_height_spans", "index": -1 + }, + { + "type": "AABB", + "name": "filter_baking_aabb", + "setter": "set_filter_baking_aabb", + "getter": "get_filter_baking_aabb", + "index": -1 + }, + { + "type": "Vector3", + "name": "filter_baking_aabb_offset", + "setter": "set_filter_baking_aabb_offset", + "getter": "get_filter_baking_aabb_offset", + "index": -1 } ] }, @@ -125805,7 +129867,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1401173477, "arguments": [ { "name": "nav_mesh", @@ -125823,7 +129885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2923361153, "arguments": [ { "name": "nav_mesh", @@ -125846,7 +129908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -125857,7 +129919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "estimate_radius", @@ -125871,7 +129933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -125882,7 +129944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -125897,7 +129959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -125934,7 +129996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -125945,7 +130007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "estimate_radius", @@ -125959,7 +130021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -125970,7 +130032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -125985,7 +130047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -126022,7 +130084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "vertices", @@ -126036,7 +130098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -126047,7 +130109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "polygon", @@ -126061,7 +130123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -126073,7 +130135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3668444399, "return_value": { "type": "PackedInt32Array" }, @@ -126091,7 +130153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_mesh", @@ -126099,7 +130161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 330232164, "return_value": { "type": "NavigationMesh" } @@ -126110,7 +130172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "outline", @@ -126124,7 +130186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1569738947, "arguments": [ { "name": "outline", @@ -126143,7 +130205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -126155,7 +130217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1201971903, "arguments": [ { "name": "idx", @@ -126174,7 +130236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3946907486, "return_value": { "type": "PackedVector2Array" }, @@ -126192,7 +130254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -126207,7 +130269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "make_polygons_from_outlines", @@ -126215,7 +130277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -126255,7 +130317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1515040758, "arguments": [ { "name": "navpoly", @@ -126269,7 +130331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1046532237, "return_value": { "type": "NavigationPolygon" } @@ -126280,7 +130342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -126294,45 +130356,82 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, { - "name": "set_layers", + "name": "set_navigation_layers", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { - "name": "layers", + "name": "navigation_layers", "type": "int", "meta": "uint32" } ] }, { - "name": "get_layers", + "name": "get_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" } }, + { + "name": "set_navigation_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_navigation_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "get_region_rid", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -126343,7 +130442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "enter_cost", @@ -126358,7 +130457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -126370,7 +130469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "travel_cost", @@ -126385,7 +130484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -126409,9 +130508,9 @@ }, { "type": "int", - "name": "layers", - "setter": "set_layers", - "getter": "get_layers", + "name": "navigation_layers", + "setter": "set_navigation_layers", + "getter": "get_navigation_layers", "index": -1 }, { @@ -126443,7 +130542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2923361153, "arguments": [ { "name": "navmesh", @@ -126457,7 +130556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1468720886, "return_value": { "type": "NavigationMesh" } @@ -126468,7 +130567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -126482,45 +130581,82 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, { - "name": "set_layers", + "name": "set_navigation_layers", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { - "name": "layers", + "name": "navigation_layers", "type": "int", "meta": "uint32" } ] }, { - "name": "get_layers", + "name": "get_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" } }, + { + "name": "set_navigation_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_navigation_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "get_region_rid", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -126531,7 +130667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "enter_cost", @@ -126546,7 +130682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -126558,7 +130694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "travel_cost", @@ -126573,7 +130709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -126585,7 +130721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133279208, + "hash": 3216645846, "arguments": [ { "name": "on_thread", @@ -126620,9 +130756,9 @@ }, { "type": "int", - "name": "layers", - "setter": "set_layers", - "getter": "get_layers", + "name": "navigation_layers", + "setter": "set_navigation_layers", + "getter": "get_navigation_layers", "index": -1 }, { @@ -126648,13 +130784,24 @@ "inherits": "Object", "api_type": "core", "methods": [ + { + "name": "get_maps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3995934104, + "return_value": { + "type": "Array" + } + }, { "name": "map_create", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -126665,7 +130812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 453506575, "arguments": [ { "name": "map", @@ -126683,7 +130830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -126700,7 +130847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "map", @@ -126719,7 +130866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -126737,7 +130884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "map", @@ -126756,7 +130903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -126774,7 +130921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 177157229, + "hash": 56240621, "return_value": { "type": "PackedVector2Array" }, @@ -126796,7 +130943,7 @@ "type": "bool" }, { - "name": "layers", + "name": "navigation_layers", "type": "int", "meta": "uint32", "default_value": "1" @@ -126809,7 +130956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1358334418, "return_value": { "type": "Vector2" }, @@ -126830,7 +130977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1353467510, "return_value": { "type": "RID" }, @@ -126851,7 +130998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -126868,7 +131015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -126879,13 +131026,27 @@ } ] }, + { + "name": "map_force_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2722037293, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, { "name": "region_create", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -126896,7 +131057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "region", @@ -126915,7 +131076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -126933,7 +131094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "region", @@ -126952,7 +131113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -126964,13 +131125,34 @@ } ] }, + { + "name": "region_owns_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 219849798, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "point", + "type": "Vector2" + } + ] + }, { "name": "region_set_map", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 781978857, "arguments": [ { "name": "region", @@ -126988,7 +131170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -127000,31 +131182,31 @@ ] }, { - "name": "region_set_layers", + "name": "region_set_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 286288326, "arguments": [ { "name": "region", "type": "RID" }, { - "name": "layers", + "name": "navigation_layers", "type": "int", "meta": "uint32" } ] }, { - "name": "region_get_layers", + "name": "region_get_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint32" @@ -127042,7 +131224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 17342764, "arguments": [ { "name": "region", @@ -127060,7 +131242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3393715760, "arguments": [ { "name": "region", @@ -127078,7 +131260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -127096,7 +131278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2546185844, "return_value": { "type": "Vector2" }, @@ -127118,7 +131300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2546185844, "return_value": { "type": "Vector2" }, @@ -127140,7 +131322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -127151,7 +131333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 781978857, "arguments": [ { "name": "agent", @@ -127169,7 +131351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -127186,7 +131368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -127205,7 +131387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 286288326, "arguments": [ { "name": "agent", @@ -127224,7 +131406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -127243,7 +131425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -127262,7 +131444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -127281,7 +131463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3255841543, "arguments": [ { "name": "agent", @@ -127299,7 +131481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3255841543, "arguments": [ { "name": "agent", @@ -127317,7 +131499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3255841543, "arguments": [ { "name": "agent", @@ -127335,7 +131517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -127352,7 +131534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835915, + "hash": 1039455419, "arguments": [ { "name": "agent", @@ -127379,7 +131561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188199, + "hash": 145472570, "arguments": [ { "name": "rid", @@ -127407,13 +131589,24 @@ "inherits": "Object", "api_type": "core", "methods": [ + { + "name": "get_maps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3995934104, + "return_value": { + "type": "Array" + } + }, { "name": "map_create", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -127424,7 +131617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 453506575, "arguments": [ { "name": "map", @@ -127442,7 +131635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -127459,7 +131652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3923919901, "arguments": [ { "name": "map", @@ -127477,7 +131670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 531438156, "return_value": { "type": "Vector3" }, @@ -127494,7 +131687,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "map", @@ -127513,7 +131706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -127531,7 +131724,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "map", @@ -127550,7 +131743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -127568,7 +131761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 177157229, + "hash": 2121045993, "return_value": { "type": "PackedVector3Array" }, @@ -127590,7 +131783,7 @@ "type": "bool" }, { - "name": "layers", + "name": "navigation_layers", "type": "int", "meta": "uint32", "default_value": "1" @@ -127603,7 +131796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971308, + "hash": 3830095642, "return_value": { "type": "Vector3" }, @@ -127633,7 +131826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2056183332, "return_value": { "type": "Vector3" }, @@ -127654,7 +131847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2056183332, "return_value": { "type": "Vector3" }, @@ -127675,7 +131868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 553364610, "return_value": { "type": "RID" }, @@ -127696,7 +131889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -127713,7 +131906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -127724,13 +131917,27 @@ } ] }, + { + "name": "map_force_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2722037293, + "arguments": [ + { + "name": "map", + "type": "RID" + } + ] + }, { "name": "region_create", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -127741,7 +131948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "region", @@ -127760,7 +131967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -127778,7 +131985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "region", @@ -127797,7 +132004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -127809,13 +132016,34 @@ } ] }, + { + "name": "region_owns_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2360011153, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "region", + "type": "RID" + }, + { + "name": "point", + "type": "Vector3" + } + ] + }, { "name": "region_set_map", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 781978857, "arguments": [ { "name": "region", @@ -127833,7 +132061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -127845,31 +132073,31 @@ ] }, { - "name": "region_set_layers", + "name": "region_set_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 286288326, "arguments": [ { "name": "region", "type": "RID" }, { - "name": "layers", + "name": "navigation_layers", "type": "int", "meta": "uint32" } ] }, { - "name": "region_get_layers", + "name": "region_get_navigation_layers", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint32" @@ -127887,7 +132115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 2679806994, "arguments": [ { "name": "region", @@ -127905,7 +132133,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 4027193260, "arguments": [ { "name": "region", @@ -127923,7 +132151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 1465939311, "arguments": [ { "name": "mesh", @@ -127941,7 +132169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -127959,7 +132187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3440143363, "return_value": { "type": "Vector3" }, @@ -127981,7 +132209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3440143363, "return_value": { "type": "Vector3" }, @@ -128003,7 +132231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -128014,7 +132242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 781978857, "arguments": [ { "name": "agent", @@ -128032,7 +132260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -128049,7 +132277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -128068,7 +132296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 286288326, "arguments": [ { "name": "agent", @@ -128087,7 +132315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -128106,7 +132334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -128125,7 +132353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 225571937, "arguments": [ { "name": "agent", @@ -128144,7 +132372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3923919901, "arguments": [ { "name": "agent", @@ -128162,7 +132390,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3923919901, "arguments": [ { "name": "agent", @@ -128180,7 +132408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 3923919901, "arguments": [ { "name": "agent", @@ -128198,7 +132426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -128215,7 +132443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835915, + "hash": 1039455419, "arguments": [ { "name": "agent", @@ -128242,7 +132470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188199, + "hash": 145472570, "arguments": [ { "name": "rid", @@ -128256,7 +132484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188199, + "hash": 1695273946, "arguments": [ { "name": "active", @@ -128270,7 +132498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "delta_time", @@ -128289,6 +132517,9 @@ "type": "RID" } ] + }, + { + "name": "navigation_debug_changed" } ] }, @@ -128301,6 +132532,7 @@ "enums": [ { "name": "AxisStretchMode", + "is_bitfield": false, "values": [ { "name": "AXIS_STRETCH_MODE_STRETCH", @@ -128324,7 +132556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -128338,7 +132570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -128349,7 +132581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 437707142, "arguments": [ { "name": "margin", @@ -128368,7 +132600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1983885014, "return_value": { "type": "int", "meta": "int32" @@ -128386,7 +132618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "rect", @@ -128400,7 +132632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -128411,7 +132643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "draw_center", @@ -128425,7 +132657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -128436,7 +132668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3219608417, "arguments": [ { "name": "mode", @@ -128450,7 +132682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3317113799, "return_value": { "type": "enum::NinePatchRect.AxisStretchMode" } @@ -128461,7 +132693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3219608417, "arguments": [ { "name": "mode", @@ -128475,7 +132707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3317113799, "return_value": { "type": "enum::NinePatchRect.AxisStretchMode" } @@ -128727,6 +132959,7 @@ "enums": [ { "name": "ProcessMode", + "is_bitfield": false, "values": [ { "name": "PROCESS_MODE_INHERIT", @@ -128752,6 +132985,7 @@ }, { "name": "DuplicateFlags", + "is_bitfield": false, "values": [ { "name": "DUPLICATE_SIGNALS", @@ -128773,6 +133007,7 @@ }, { "name": "InternalMode", + "is_bitfield": false, "values": [ { "name": "INTERNAL_MODE_DISABLED", @@ -128905,7 +133140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2570952461, "arguments": [ { "name": "sibling", @@ -128924,7 +133159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -128938,7 +133173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -128949,7 +133184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 182667338, + "hash": 3070154285, "arguments": [ { "name": "node", @@ -128973,7 +133208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "node", @@ -128987,7 +133222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 894402480, "return_value": { "type": "int", "meta": "int32" @@ -129006,7 +133241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 873284517, "return_value": { "type": "Array" }, @@ -129024,7 +133259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 541253412, "return_value": { "type": "Node" }, @@ -129047,7 +133282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 861721659, "return_value": { "type": "bool" }, @@ -129064,7 +133299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2734337346, "return_value": { "type": "Node" }, @@ -129081,7 +133316,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2734337346, "return_value": { "type": "Node" }, @@ -129098,7 +133333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -129109,7 +133344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474136429, + "hash": 4253159453, "return_value": { "type": "Node" }, @@ -129136,7 +133371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2925806356, + "hash": 1585018254, "return_value": { "type": "Array" }, @@ -129168,7 +133403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1140089439, "return_value": { "type": "Node" }, @@ -129185,7 +133420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 861721659, "return_value": { "type": "bool" }, @@ -129202,7 +133437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 502563882, "return_value": { "type": "Array" }, @@ -129219,7 +133454,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129230,7 +133465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -129247,7 +133482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -129264,7 +133499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -129275,7 +133510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2147067491, "return_value": { "type": "NodePath" }, @@ -129292,7 +133527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3683006648, "arguments": [ { "name": "group", @@ -129311,7 +133546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "group", @@ -129325,7 +133560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -129342,7 +133577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3315886247, "arguments": [ { "name": "child_node", @@ -129361,7 +133596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -129372,7 +133607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_owner", @@ -129380,7 +133615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "owner", @@ -129394,7 +133629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -129405,7 +133640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_index", @@ -129413,7 +133648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 894402480, "return_value": { "type": "int", "meta": "int32" @@ -129432,7 +133667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "print_tree_pretty", @@ -129440,7 +133675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_scene_file_path", @@ -129448,7 +133683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "scene_file_path", @@ -129462,7 +133697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -129473,7 +133708,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "what", @@ -129488,7 +133723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 376071560, + "hash": 1667910434, "arguments": [ { "name": "method", @@ -129512,7 +133747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129526,7 +133761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -129538,7 +133773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129549,7 +133784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -129561,7 +133796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129575,7 +133810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -129590,7 +133825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -129602,7 +133837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129613,7 +133848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129627,7 +133862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129638,7 +133873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129652,7 +133887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129663,7 +133898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129677,7 +133912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129688,7 +133923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129702,7 +133937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129713,7 +133948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1841290486, "arguments": [ { "name": "mode", @@ -129727,7 +133962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 739966102, "return_value": { "type": "enum::Node.ProcessMode" } @@ -129738,7 +133973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129749,7 +133984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_display_folded", @@ -129757,7 +133992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "fold", @@ -129771,7 +134006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129782,7 +134017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129796,7 +134031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129807,7 +134042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -129821,7 +134056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129832,7 +134067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2958820483, "return_value": { "type": "SceneTree" } @@ -129843,7 +134078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3426978995, "return_value": { "type": "Tween" } @@ -129854,7 +134089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1282261465, + "hash": 3511555459, "return_value": { "type": "Node" }, @@ -129873,7 +134108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2570952461, "arguments": [ { "name": "node", @@ -129892,7 +134127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "load_placeholder", @@ -129906,7 +134141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -129917,7 +134152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2731852923, "arguments": [ { "name": "node", @@ -129935,7 +134170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3093956946, "return_value": { "type": "bool" }, @@ -129952,7 +134187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3596683776, "return_value": { "type": "Viewport" } @@ -129963,7 +134198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "request_ready", @@ -129971,7 +134206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_multiplayer_authority", @@ -129979,7 +134214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "id", @@ -129999,7 +134234,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -130011,7 +134246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -130022,7 +134257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 406750475, "return_value": { "type": "MultiplayerAPI" } @@ -130033,35 +134268,15 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4023896206, - "return_value": { - "type": "int", - "meta": "uint16" - }, + "hash": 3776071444, "arguments": [ { "name": "method", "type": "StringName" }, { - "name": "rpc_mode", - "type": "enum::RPCMode" - }, - { - "name": "call_local", - "type": "bool", - "default_value": "false" - }, - { - "name": "transfer_mode", - "type": "enum::TransferMode", - "default_value": "2" - }, - { - "name": "channel", - "type": "int", - "meta": "int32", - "default_value": "0" + "name": "config", + "type": "Variant" } ] }, @@ -130071,7 +134286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "editor_description", @@ -130085,7 +134300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -130096,7 +134311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -130110,7 +134325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -130121,7 +134336,10 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134188167, + "hash": 4047867050, + "return_value": { + "type": "enum::Error" + }, "arguments": [ { "name": "method", @@ -130135,7 +134353,10 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134224104, + "hash": 361499283, + "return_value": { + "type": "enum::Error" + }, "arguments": [ { "name": "peer_id", @@ -130153,7 +134374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "signals": [ @@ -130182,7 +134403,7 @@ ] }, { - "name": "child_exited_tree", + "name": "child_exiting_tree", "arguments": [ { "name": "node", @@ -130263,7 +134484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -130277,7 +134498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -130292,7 +134513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -130307,7 +134528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "scale", @@ -130321,7 +134542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -130332,7 +134553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -130344,7 +134565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -130356,7 +134577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -130367,7 +134588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -130382,7 +134603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2087892650, "arguments": [ { "name": "delta", @@ -130402,7 +134623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2087892650, "arguments": [ { "name": "delta", @@ -130422,7 +134643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -130436,7 +134657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -130450,7 +134671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "ratio", @@ -130464,7 +134685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -130478,7 +134699,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -130489,7 +134710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -130504,7 +134725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -130516,7 +134737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radians", @@ -130531,7 +134752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -130543,7 +134764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "scale", @@ -130557,7 +134778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -130568,7 +134789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "xform", @@ -130582,7 +134803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "xform", @@ -130596,7 +134817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "point", @@ -130610,7 +134831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2276447920, "return_value": { "type": "float", "meta": "float" @@ -130628,7 +134849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -130645,7 +134866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -130662,7 +134883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "z_index", @@ -130677,7 +134898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -130689,7 +134910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -130703,7 +134924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -130714,7 +134935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -130728,7 +134949,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -130739,7 +134960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 904556875, "return_value": { "type": "Transform2D" }, @@ -130872,6 +135093,7 @@ "enums": [ { "name": "RotationEditMode", + "is_bitfield": false, "values": [ { "name": "ROTATION_EDIT_MODE_EULER", @@ -130889,6 +135111,7 @@ }, { "name": "RotationOrder", + "is_bitfield": false, "values": [ { "name": "ROTATION_ORDER_XYZ", @@ -130924,7 +135147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "local", @@ -130938,7 +135161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -130949,7 +135172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "position", @@ -130963,7 +135186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -130974,7 +135197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "euler", @@ -130988,7 +135211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -130999,7 +135222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1415243067, "arguments": [ { "name": "order", @@ -131013,7 +135236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2488981056, "return_value": { "type": "enum::Node3D.RotationOrder" } @@ -131024,7 +135247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 141483330, "arguments": [ { "name": "edit_mode", @@ -131038,7 +135261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1572188370, "return_value": { "type": "enum::Node3D.RotationEditMode" } @@ -131049,7 +135272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "scale", @@ -131063,7 +135286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -131074,7 +135297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1727505552, "arguments": [ { "name": "quaternion", @@ -131088,7 +135311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1222331677, "return_value": { "type": "Quaternion" } @@ -131099,7 +135322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1055510324, "arguments": [ { "name": "basis", @@ -131113,7 +135336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2716978435, "return_value": { "type": "Basis" } @@ -131124,7 +135347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "global", @@ -131138,18 +135361,68 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } }, + { + "name": "set_global_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3460891852, + "arguments": [ + { + "name": "position", + "type": "Vector3" + } + ] + }, + { + "name": "get_global_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3360562783, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_global_rotation", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3460891852, + "arguments": [ + { + "name": "radians", + "type": "Vector3" + } + ] + }, + { + "name": "get_global_rotation", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3360562783, + "return_value": { + "type": "Vector3" + } + }, { "name": "get_parent_node_3d", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 151077316, "return_value": { "type": "Node3D" } @@ -131160,7 +135433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -131174,7 +135447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -131188,7 +135461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -131199,7 +135472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disable", @@ -131213,7 +135486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -131224,7 +135497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 317588385, "return_value": { "type": "World3D" } @@ -131235,7 +135508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_visibility_parent", @@ -131243,7 +135516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -131257,7 +135530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -131268,7 +135541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_gizmo", @@ -131276,7 +135549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1544533845, "arguments": [ { "name": "gizmo", @@ -131290,7 +135563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -131301,7 +135574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_subgizmo_selection", @@ -131309,7 +135582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3317607635, "arguments": [ { "name": "gizmo", @@ -131332,7 +135605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_visible", @@ -131340,7 +135613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -131354,7 +135627,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -131365,7 +135638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -131376,7 +135649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "hide", @@ -131384,7 +135657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_notify_local_transform", @@ -131392,7 +135665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -131406,7 +135679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -131417,7 +135690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -131431,7 +135704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -131442,7 +135715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3436291937, "arguments": [ { "name": "axis", @@ -131461,7 +135734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3436291937, "arguments": [ { "name": "axis", @@ -131480,7 +135753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "scale", @@ -131494,7 +135767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -131508,7 +135781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3436291937, "arguments": [ { "name": "axis", @@ -131527,7 +135800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "scale", @@ -131541,7 +135814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -131555,7 +135828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angle", @@ -131570,7 +135843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angle", @@ -131585,7 +135858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angle", @@ -131600,7 +135873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -131614,7 +135887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_identity", @@ -131622,7 +135895,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "look_at", @@ -131630,7 +135903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "target", @@ -131649,7 +135922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 735115603, "arguments": [ { "name": "position", @@ -131672,7 +135945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 192990374, "return_value": { "type": "Vector3" }, @@ -131689,7 +135962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 192990374, "return_value": { "type": "Vector3" }, @@ -131706,7 +135979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -131723,7 +135996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 309047738, "return_value": { "type": "Variant" }, @@ -131811,6 +136084,20 @@ "getter": "is_set_as_top_level", "index": -1 }, + { + "type": "Vector3", + "name": "global_position", + "setter": "set_global_position", + "getter": "get_global_position", + "index": -1 + }, + { + "type": "Vector3", + "name": "global_rotation", + "setter": "set_global_rotation", + "getter": "get_global_rotation", + "index": -1 + }, { "type": "bool", "name": "visible", @@ -131847,7 +136134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3919130443, "return_value": { "type": "float", "meta": "float" @@ -131866,7 +136153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2753205203, "return_value": { "type": "float", "meta": "float" @@ -131890,7 +136177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2276447920, "return_value": { "type": "float", "meta": "float" @@ -131908,7 +136195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 973811851, "return_value": { "type": "float", "meta": "float" @@ -131937,7 +136224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1109078154, "return_value": { "type": "float", "meta": "float" @@ -131955,7 +136242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270733, + "hash": 3397462027, "return_value": { "type": "Image" }, @@ -131988,7 +136275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4023896239, + "hash": 943521238, "return_value": { "type": "Image" }, @@ -132036,7 +136323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -132051,7 +136338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "height", @@ -132066,7 +136353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "invert", @@ -132080,7 +136367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -132091,7 +136378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -132105,7 +136392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -132116,7 +136403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "invert", @@ -132130,7 +136417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -132141,7 +136428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "seamless", @@ -132155,7 +136442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -132166,7 +136453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seamless_blend_skirt", @@ -132181,7 +136468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -132193,7 +136480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "as_normal_map", @@ -132207,7 +136494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -132218,7 +136505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bump_strength", @@ -132233,7 +136520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -132245,7 +136532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2756054477, "arguments": [ { "name": "gradient", @@ -132259,7 +136546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 132272999, "return_value": { "type": "Gradient" } @@ -132270,7 +136557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4135492439, "arguments": [ { "name": "noise", @@ -132284,7 +136571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 185851837, "return_value": { "type": "Noise" } @@ -132370,134 +136657,6 @@ } ] }, - { - "name": "OGGPacketSequence", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_packet_data", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "packet_data", - "type": "Array" - } - ] - }, - { - "name": "get_packet_data", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_packet_granule_positions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "granule_positions", - "type": "Array" - } - ] - }, - { - "name": "get_packet_granule_positions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Array" - } - }, - { - "name": "set_sampling_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "sampling_rate", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_sampling_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "get_length", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "float", - "meta": "float" - } - } - ], - "properties": [ - { - "type": "Array", - "name": "packet_data", - "setter": "set_packet_data", - "getter": "get_packet_data", - "index": -1 - }, - { - "type": "Array", - "name": "granule_positions", - "setter": "set_packet_granule_positions", - "getter": "get_packet_granule_positions", - "index": -1 - }, - { - "type": "float", - "name": "sampling_rate", - "setter": "set_sampling_rate", - "getter": "get_sampling_rate", - "index": -1 - } - ] - }, - { - "name": "OGGPacketSequencePlayback", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "RefCounted", - "api_type": "core" - }, { "name": "ORMMaterial3D", "is_refcounted": true, @@ -132514,6 +136673,7 @@ "enums": [ { "name": "VideoDriver", + "is_bitfield": false, "values": [ { "name": "VIDEO_DRIVER_VULKAN", @@ -132527,6 +136687,7 @@ }, { "name": "Weekday", + "is_bitfield": false, "values": [ { "name": "DAY_SUNDAY", @@ -132560,6 +136721,7 @@ }, { "name": "Month", + "is_bitfield": false, "values": [ { "name": "MONTH_JANUARY", @@ -132613,6 +136775,7 @@ }, { "name": "SystemDir", + "is_bitfield": false, "values": [ { "name": "SYSTEM_DIR_DESKTOP", @@ -132656,7 +136819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2981934095, "return_value": { "type": "PackedStringArray" } @@ -132667,7 +136830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "close_midi_inputs", @@ -132675,7 +136838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "alert", @@ -132683,7 +136846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 233059325, "arguments": [ { "name": "text", @@ -132702,7 +136865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "message", @@ -132716,7 +136879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -132730,7 +136893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -132741,7 +136904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "usec", @@ -132756,7 +136919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -132768,7 +136931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -132780,18 +136943,56 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } }, + { + "name": "get_system_fonts", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1139954409, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "get_system_font_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3158716772, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "font_name", + "type": "String" + }, + { + "name": "bold", + "type": "bool", + "default_value": "false" + }, + { + "name": "italic", + "type": "bool", + "default_value": "false" + } + ] + }, { "name": "get_executable_path", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -132802,7 +137003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4217300428, + "hash": 2881709059, "return_value": { "type": "int", "meta": "int32" @@ -132839,7 +137040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2903767230, "return_value": { "type": "int", "meta": "int32" @@ -132866,7 +137067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1080601263, "return_value": { "type": "int", "meta": "int32" @@ -132884,7 +137085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 844576869, "return_value": { "type": "enum::Error" }, @@ -132902,7 +137103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -132919,7 +137120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -132937,7 +137138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -132949,7 +137150,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -132966,7 +137167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 820780508, "return_value": { "type": "bool" }, @@ -132987,7 +137188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -133004,7 +137205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133015,7 +137216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2981934095, "return_value": { "type": "PackedStringArray" } @@ -133026,7 +137227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188199, + "hash": 998575451, "arguments": [ { "name": "usec", @@ -133041,7 +137242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188199, + "hash": 998575451, "arguments": [ { "name": "msec", @@ -133056,7 +137257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133067,7 +137268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133078,7 +137279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133089,7 +137290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -133100,7 +137301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -133111,7 +137312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -133122,7 +137323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -133133,7 +137334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "file", @@ -133147,7 +137348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "file", @@ -133161,7 +137362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133278119, + "hash": 107499316, "arguments": [ { "name": "short", @@ -133176,7 +137377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 139138028, + "hash": 3005725572, "arguments": [ { "name": "tofile", @@ -133191,7 +137392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -133203,7 +137404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -133215,7 +137416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2113323047, "return_value": { "type": "enum::Error" }, @@ -133232,7 +137433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133243,7 +137444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1965199849, "return_value": { "type": "String" }, @@ -133265,7 +137466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133276,7 +137477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133287,7 +137488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133298,7 +137499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133309,7 +137510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "print_resources_by_type", @@ -133317,7 +137518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "types", @@ -133331,7 +137532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2261993717, "return_value": { "type": "String" }, @@ -133348,7 +137549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -133365,7 +137566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1084858572, "return_value": { "type": "enum::Key" }, @@ -133382,7 +137583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -133396,7 +137597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -133413,7 +137614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -133425,7 +137626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -133437,7 +137638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -133454,7 +137655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -133471,7 +137672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -133482,7 +137683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -133523,6 +137724,7 @@ "enums": [ { "name": "ConnectFlags", + "is_bitfield": false, "values": [ { "name": "CONNECT_DEFERRED", @@ -133550,7 +137752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -133561,7 +137763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -133578,11 +137780,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "property", - "type": "String" + "type": "StringName" }, { "name": "value", @@ -133596,14 +137798,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, "arguments": [ { "name": "property", - "type": "String" + "type": "StringName" } ] }, @@ -133613,7 +137815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3500910842, "arguments": [ { "name": "property", @@ -133631,7 +137833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4006125091, "return_value": { "type": "Variant" }, @@ -133648,7 +137850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -133659,7 +137861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -133670,7 +137872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "what", @@ -133690,7 +137892,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -133701,7 +137903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -133713,7 +137915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1114965689, "arguments": [ { "name": "script", @@ -133727,7 +137929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -133738,7 +137940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "name", @@ -133756,7 +137958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -133770,7 +137972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3990617847, "return_value": { "type": "Variant" }, @@ -133792,7 +137994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -133809,7 +138011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -133820,7 +138022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3780025912, "arguments": [ { "name": "signal", @@ -133839,7 +138041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -133856,7 +138058,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 135374088, + "hash": 4047867050, "return_value": { "type": "enum::Error" }, @@ -133873,7 +138075,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 135374088, + "hash": 3400424181, "return_value": { "type": "Variant" }, @@ -133890,7 +138092,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 135374088, + "hash": 3400424181, "return_value": { "type": "Variant" }, @@ -133907,7 +138109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "property", @@ -133925,7 +138127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1260104456, "return_value": { "type": "Variant" }, @@ -133946,7 +138148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -133963,7 +138165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -133980,7 +138182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -133991,14 +138193,14 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3147814860, "return_value": { "type": "Array" }, "arguments": [ { "name": "signal", - "type": "String" + "type": "StringName" } ] }, @@ -134008,7 +138210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -134019,7 +138221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 1469446357, "return_value": { "type": "enum::Error" }, @@ -134032,11 +138234,6 @@ "name": "callable", "type": "Callable" }, - { - "name": "binds", - "type": "Array", - "default_value": "[]" - }, { "name": "flags", "type": "int", @@ -134051,7 +138248,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1874754934, "arguments": [ { "name": "signal", @@ -134069,7 +138266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 768136979, "return_value": { "type": "bool" }, @@ -134090,7 +138287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -134104,7 +138301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -134115,7 +138312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_message_translation", @@ -134123,7 +138320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -134137,7 +138334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -134148,7 +138345,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2475554935, "return_value": { "type": "String" }, @@ -134170,7 +138367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971308, + "hash": 4021311862, "return_value": { "type": "String" }, @@ -134201,7 +138398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -134229,7 +138426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -134240,7 +138437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -134260,7 +138457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -134275,7 +138472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -134287,7 +138484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -134306,7 +138503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -134324,7 +138521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "simplification_distance", @@ -134339,7 +138536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -134351,7 +138548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1664878165, "arguments": [ { "name": "occluder", @@ -134365,7 +138562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1696836198, "return_value": { "type": "Occluder3D" } @@ -134404,6 +138601,7 @@ "enums": [ { "name": "CullMode", + "is_bitfield": false, "values": [ { "name": "CULL_DISABLED", @@ -134427,7 +138625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "closed", @@ -134441,7 +138639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -134452,7 +138650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3500863002, "arguments": [ { "name": "cull_mode", @@ -134466,7 +138664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 33931036, "return_value": { "type": "enum::OccluderPolygon2D.CullMode" } @@ -134477,7 +138675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "polygon", @@ -134491,7 +138689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -134521,6 +138719,134 @@ } ] }, + { + "name": "OggPacketSequence", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_packet_data", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 381264803, + "arguments": [ + { + "name": "packet_data", + "type": "Array" + } + ] + }, + { + "name": "get_packet_data", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3995934104, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_packet_granule_positions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 381264803, + "arguments": [ + { + "name": "granule_positions", + "type": "Array" + } + ] + }, + { + "name": "get_packet_granule_positions", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3995934104, + "return_value": { + "type": "Array" + } + }, + { + "name": "set_sampling_rate", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "sampling_rate", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_sampling_rate", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_length", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + } + ], + "properties": [ + { + "type": "Array", + "name": "packet_data", + "setter": "set_packet_data", + "getter": "get_packet_data", + "index": -1 + }, + { + "type": "Array", + "name": "granule_positions", + "setter": "set_packet_granule_positions", + "getter": "get_packet_granule_positions", + "index": -1 + }, + { + "type": "float", + "name": "sampling_rate", + "setter": "set_sampling_rate", + "getter": "get_sampling_rate", + "index": -1 + } + ] + }, + { + "name": "OggPacketSequencePlayback", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "RefCounted", + "api_type": "core" + }, { "name": "OmniLight3D", "is_refcounted": false, @@ -134530,6 +138856,7 @@ "enums": [ { "name": "ShadowMode", + "is_bitfield": false, "values": [ { "name": "SHADOW_DUAL_PARABOLOID", @@ -134549,7 +138876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 121862228, "arguments": [ { "name": "mode", @@ -134563,7 +138890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4181586331, "return_value": { "type": "enum::OmniLight3D.ShadowMode" } @@ -134602,6 +138929,7 @@ "enums": [ { "name": "ActionType", + "is_bitfield": false, "values": [ { "name": "OPENXR_ACTION_BOOL", @@ -134629,7 +138957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "localized_name", @@ -134643,7 +138971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -134654,7 +138982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1675238366, "arguments": [ { "name": "action_type", @@ -134668,7 +138996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3536542431, "return_value": { "type": "enum::OpenXRAction.ActionType" } @@ -134679,7 +139007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "toplevel_paths", @@ -134693,7 +139021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -134736,7 +139064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "action_sets", @@ -134750,7 +139078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -134761,7 +139089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -134773,7 +139101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1888809267, "return_value": { "type": "OpenXRActionSet" }, @@ -134790,7 +139118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1789580336, "return_value": { "type": "OpenXRActionSet" }, @@ -134808,7 +139136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2093310581, "arguments": [ { "name": "action_set", @@ -134822,7 +139150,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2093310581, "arguments": [ { "name": "action_set", @@ -134836,7 +139164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "interaction_profiles", @@ -134850,7 +139178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -134861,7 +139189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -134873,7 +139201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3095875538, "return_value": { "type": "OpenXRInteractionProfile" }, @@ -134890,7 +139218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2546151210, "return_value": { "type": "OpenXRInteractionProfile" }, @@ -134908,7 +139236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2697953512, "arguments": [ { "name": "interaction_profile", @@ -134922,7 +139250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2697953512, "arguments": [ { "name": "interaction_profile", @@ -134936,7 +139264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -134969,7 +139297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "localized_name", @@ -134983,7 +139311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -134994,7 +139322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -135009,7 +139337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135021,7 +139349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135033,7 +139361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "actions", @@ -135047,7 +139375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -135058,7 +139386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 349361333, "arguments": [ { "name": "action", @@ -135072,7 +139400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 349361333, "arguments": [ { "name": "action", @@ -135118,7 +139446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 349361333, "arguments": [ { "name": "action", @@ -135132,7 +139460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4072409085, "return_value": { "type": "OpenXRAction" } @@ -135143,7 +139471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135155,7 +139483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4015028928, "arguments": [ { "name": "paths", @@ -135169,7 +139497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -135180,13 +139508,13 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, "arguments": [ { - "name": "arg0", + "name": "path", "type": "String" } ] @@ -135197,7 +139525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -135211,7 +139539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -135250,7 +139578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "interaction_profile_path", @@ -135264,7 +139592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -135275,7 +139603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135287,7 +139615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3934429652, "return_value": { "type": "OpenXRIPBinding" }, @@ -135305,7 +139633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "bindings", @@ -135319,7 +139647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -135379,7 +139707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1466479800, "arguments": [ { "name": "from", @@ -135402,7 +139730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3043792800, "arguments": [ { "name": "label", @@ -135422,7 +139750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3944051090, "arguments": [ { "name": "texture", @@ -135446,7 +139774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "idx", @@ -135465,7 +139793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "idx", @@ -135484,7 +139812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "idx", @@ -135503,7 +139831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "idx", @@ -135523,7 +139851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "idx", @@ -135542,7 +139870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "idx", @@ -135561,7 +139889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -135579,7 +139907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -135597,7 +139925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -135616,7 +139944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -135635,7 +139963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -135653,7 +139981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -135671,7 +139999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -135689,7 +140017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -135707,7 +140035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 139138028, + "hash": 3005725572, "arguments": [ { "name": "text", @@ -135722,7 +140050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "select", @@ -135730,7 +140058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -135745,7 +140073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135757,7 +140085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135769,7 +140097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -135780,7 +140108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -135795,7 +140123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 229722558, "return_value": { "type": "PopupMenu" } @@ -135806,7 +140134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -135821,7 +140149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -135833,7 +140161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -135844,7 +140172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 894402480, "return_value": { "type": "int", "meta": "int32" @@ -135908,7 +140236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3466557870, + "hash": 3232891339, "return_value": { "type": "enum::Error" }, @@ -135941,7 +140269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2215643711, "return_value": { "type": "enum::Error" }, @@ -135967,7 +140295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 1633102583, "return_value": { "type": "enum::Error" }, @@ -135994,7 +140322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 966674026, "return_value": { "type": "enum::Error" }, @@ -136011,7 +140339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136032,7 +140360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136049,6 +140377,7 @@ "enums": [ { "name": "GenEditState", + "is_bitfield": false, "values": [ { "name": "GEN_EDIT_STATE_DISABLED", @@ -136076,7 +140405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2584678054, "return_value": { "type": "enum::Error" }, @@ -136093,7 +140422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2628778455, "return_value": { "type": "Node" }, @@ -136111,7 +140440,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -136122,7 +140451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3479783971, "return_value": { "type": "SceneState" } @@ -136142,7 +140471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 3442865206, "return_value": { "type": "Variant" }, @@ -136160,7 +140489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 2436251611, "return_value": { "type": "enum::Error" }, @@ -136182,7 +140511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2115431945, "return_value": { "type": "PackedByteArray" } @@ -136193,7 +140522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -136210,7 +140539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3185525595, "return_value": { "type": "enum::Error" } @@ -136221,7 +140550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136233,7 +140562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136245,7 +140574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_size", @@ -136274,6 +140603,7 @@ "enums": [ { "name": "Status", + "is_bitfield": false, "values": [ { "name": "STATUS_DISCONNECTED", @@ -136305,7 +140635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "connect_to_peer", @@ -136313,7 +140643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2738324083, + "hash": 293566484, "return_value": { "type": "enum::Error" }, @@ -136345,7 +140675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3248654679, "return_value": { "type": "enum::PacketPeerDTLS.Status" } @@ -136356,7 +140686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -136442,7 +140772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3281897016, "arguments": [ { "name": "peer", @@ -136456,7 +140786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2741655269, "return_value": { "type": "StreamPeer" } @@ -136467,7 +140797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_size_bytes", @@ -136482,7 +140812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_size_bytes", @@ -136497,7 +140827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136509,7 +140839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136553,7 +140883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1667558042, + "hash": 4290438434, "return_value": { "type": "enum::Error" }, @@ -136582,7 +140912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "wait", @@ -136590,7 +140920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -136601,7 +140931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -136612,7 +140942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 993915709, "return_value": { "type": "enum::Error" }, @@ -136634,7 +140964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -136645,7 +140975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -136656,7 +140986,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136668,7 +140998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -136680,7 +141010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 993915709, "return_value": { "type": "enum::Error" }, @@ -136702,7 +141032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -136716,7 +141046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -136737,7 +141067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -136781,7 +141111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -136795,7 +141125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -136806,7 +141136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -136820,7 +141150,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -136856,7 +141186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -136870,7 +141200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -136881,7 +141211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -136895,7 +141225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -136906,7 +141236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "scale", @@ -136920,7 +141250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -136931,7 +141261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -136945,7 +141275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -136956,7 +141286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -136970,7 +141300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -136981,7 +141311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ignore", @@ -136995,7 +141325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -137059,7 +141389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "scale", @@ -137073,7 +141403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -137084,7 +141414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -137098,7 +141428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -137109,7 +141439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "mirror", @@ -137123,7 +141453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -137162,6 +141492,7 @@ "enums": [ { "name": "Parameter", + "is_bitfield": false, "values": [ { "name": "PARAM_INITIAL_LINEAR_VELOCITY", @@ -137219,6 +141550,7 @@ }, { "name": "ParticleFlags", + "is_bitfield": false, "values": [ { "name": "PARTICLE_FLAG_ALIGN_Y_TO_VELOCITY", @@ -137240,6 +141572,7 @@ }, { "name": "EmissionShape", + "is_bitfield": false, "values": [ { "name": "EMISSION_SHAPE_POINT", @@ -137277,6 +141610,7 @@ }, { "name": "SubEmitterMode", + "is_bitfield": false, "values": [ { "name": "SUB_EMITTER_DISABLED", @@ -137308,7 +141642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "degrees", @@ -137322,7 +141656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -137333,7 +141667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -137348,7 +141682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -137360,7 +141694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "amount", @@ -137375,7 +141709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -137387,7 +141721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4274524439, "arguments": [ { "name": "param", @@ -137406,7 +141740,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1283126188, "return_value": { "type": "float", "meta": "float" @@ -137424,7 +141758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4274524439, "arguments": [ { "name": "param", @@ -137443,7 +141777,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1283126188, "return_value": { "type": "float", "meta": "float" @@ -137461,7 +141795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2656851978, "arguments": [ { "name": "param", @@ -137479,7 +141813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2649254505, "return_value": { "type": "Texture2D" }, @@ -137496,7 +141830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -137510,7 +141844,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -137521,7 +141855,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "ramp", @@ -137535,7 +141869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -137546,7 +141880,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "ramp", @@ -137560,7 +141894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -137571,7 +141905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1631494402, "arguments": [ { "name": "particle_flag", @@ -137589,7 +141923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 818711554, "return_value": { "type": "bool" }, @@ -137606,7 +141940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 248988319, "arguments": [ { "name": "shape", @@ -137620,7 +141954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3582086991, "return_value": { "type": "enum::ParticlesMaterial.EmissionShape" } @@ -137631,7 +141965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -137646,7 +141980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -137658,7 +141992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -137672,7 +142006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -137683,7 +142017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -137697,7 +142031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -137708,7 +142042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -137722,7 +142056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -137733,7 +142067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -137747,7 +142081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -137758,7 +142092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "point_count", @@ -137773,7 +142107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -137785,7 +142119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "axis", @@ -137799,7 +142133,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -137810,7 +142144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -137825,7 +142159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -137837,7 +142171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -137852,7 +142186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -137864,7 +142198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "inner_radius", @@ -137879,7 +142213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -137891,7 +142225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -137902,7 +142236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "accel_vec", @@ -137916,7 +142250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "randomness", @@ -137931,7 +142265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -137943,7 +142277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1938652866, "return_value": { "type": "enum::ParticlesMaterial.SubEmitterMode" } @@ -137954,7 +142288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 372278199, "arguments": [ { "name": "mode", @@ -137968,7 +142302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -137980,7 +142314,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "hz", @@ -137995,7 +142329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -138007,7 +142341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -138022,7 +142356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138033,7 +142367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -138047,7 +142381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -138061,7 +142395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138072,7 +142406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -138086,7 +142420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138097,7 +142431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "radius", @@ -138111,7 +142445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138122,7 +142456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "friction", @@ -138137,7 +142471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -138149,7 +142483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bounce", @@ -138164,7 +142498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -138649,7 +142983,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 659985499, "arguments": [ { "name": "curve", @@ -138663,7 +142997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 660369445, "return_value": { "type": "Curve2D" } @@ -138692,7 +143026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 408955118, "arguments": [ { "name": "curve", @@ -138706,7 +143040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4244715212, "return_value": { "type": "Curve3D" } @@ -138740,7 +143074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -138755,7 +143089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -138767,7 +143101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "h_offset", @@ -138782,7 +143116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -138794,7 +143128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "v_offset", @@ -138809,7 +143143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -138821,7 +143155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "unit_offset", @@ -138836,7 +143170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -138848,7 +143182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -138862,7 +143196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138873,7 +143207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -138887,7 +143221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138898,7 +143232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "loop", @@ -138912,7 +143246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -138923,7 +143257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "lookahead", @@ -138938,7 +143272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139013,6 +143347,7 @@ "enums": [ { "name": "RotationMode", + "is_bitfield": false, "values": [ { "name": "ROTATION_NONE", @@ -139044,7 +143379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -139059,7 +143394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139071,7 +143406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "h_offset", @@ -139086,7 +143421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139098,7 +143433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "v_offset", @@ -139113,7 +143448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139125,7 +143460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "unit_offset", @@ -139140,7 +143475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139152,7 +143487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1640311967, "arguments": [ { "name": "rotation_mode", @@ -139166,7 +143501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814010545, "return_value": { "type": "enum::PathFollow3D.RotationMode" } @@ -139177,7 +143512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -139191,7 +143526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -139202,7 +143537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "loop", @@ -139216,7 +143551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -139283,6 +143618,7 @@ "enums": [ { "name": "Monitor", + "is_bitfield": false, "values": [ { "name": "TIME_FPS", @@ -139390,7 +143726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1943275655, "return_value": { "type": "float", "meta": "double" @@ -139408,7 +143744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 2865980031, "arguments": [ { "name": "id", @@ -139431,7 +143767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "id", @@ -139445,7 +143781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2041966384, "return_value": { "type": "bool" }, @@ -139462,7 +143798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2138907829, "return_value": { "type": "Variant" }, @@ -139479,7 +143815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint64" @@ -139491,7 +143827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -139511,7 +143847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3582132112, "return_value": { "type": "Joint2D" } @@ -139522,7 +143858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -139533,7 +143869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "auto_configure_joint", @@ -139547,7 +143883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "simulate_physics", @@ -139561,7 +143897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -139572,7 +143908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -139583,7 +143919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "nodepath", @@ -139597,7 +143933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -139608,7 +143944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_index", @@ -139623,7 +143959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -139635,7 +143971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "follow_bone", @@ -139649,7 +143985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -139702,6 +144038,7 @@ "enums": [ { "name": "DampMode", + "is_bitfield": false, "values": [ { "name": "DAMP_MODE_COMBINE", @@ -139715,6 +144052,7 @@ }, { "name": "JointType", + "is_bitfield": false, "values": [ { "name": "JOINT_TYPE_NONE", @@ -139763,7 +144101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "impulse", @@ -139777,7 +144115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "impulse", @@ -139796,7 +144134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2289552604, "arguments": [ { "name": "joint_type", @@ -139810,7 +144148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 931347320, "return_value": { "type": "enum::PhysicalBone3D.JointType" } @@ -139821,7 +144159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "offset", @@ -139835,7 +144173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -139846,7 +144184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "euler", @@ -139860,7 +144198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -139871,7 +144209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "offset", @@ -139885,7 +144223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -139896,7 +144234,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -139907,7 +144245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -139918,7 +144256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -139930,7 +144268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mass", @@ -139945,7 +144283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139957,7 +144295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "friction", @@ -139972,7 +144310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -139984,7 +144322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bounce", @@ -139999,7 +144337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140011,7 +144349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gravity_scale", @@ -140026,7 +144364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140038,7 +144376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1244972221, "arguments": [ { "name": "linear_damp_mode", @@ -140052,7 +144390,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 205884699, "return_value": { "type": "enum::PhysicalBone3D.DampMode" } @@ -140063,7 +144401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1244972221, "arguments": [ { "name": "angular_damp_mode", @@ -140077,7 +144415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 205884699, "return_value": { "type": "enum::PhysicalBone3D.DampMode" } @@ -140088,7 +144426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "linear_damp", @@ -140103,7 +144441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140115,7 +144453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angular_damp", @@ -140130,7 +144468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140142,7 +144480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "linear_velocity", @@ -140156,7 +144494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -140167,7 +144505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "angular_velocity", @@ -140181,7 +144519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -140192,7 +144530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -140206,7 +144544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -140217,7 +144555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "able_to_sleep", @@ -140231,7 +144569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -140365,7 +144703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "rayleigh", @@ -140380,7 +144718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140392,7 +144730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -140406,7 +144744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -140417,7 +144755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mie", @@ -140432,7 +144770,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140444,7 +144782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "eccentricity", @@ -140459,7 +144797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140471,7 +144809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -140485,7 +144823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -140496,7 +144834,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "turbidity", @@ -140511,7 +144849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140523,7 +144861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -140538,7 +144876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140550,7 +144888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -140564,7 +144902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -140575,7 +144913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "exposure", @@ -140590,7 +144928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -140602,7 +144940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_debanding", @@ -140616,7 +144954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -140627,7 +144965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "night_sky", @@ -140641,7 +144979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -140740,7 +145078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474135307, + "hash": 1707139212, "return_value": { "type": "KinematicCollision2D" }, @@ -140768,7 +145106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 498344496, "return_value": { "type": "bool" }, @@ -140800,7 +145138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -140811,7 +145149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "body", @@ -140825,7 +145163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "body", @@ -140848,7 +145186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 648153669, + "hash": 3373113249, "return_value": { "type": "KinematicCollision3D" }, @@ -140882,7 +145220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4023896206, + "hash": 3957778045, "return_value": { "type": "bool" }, @@ -140920,7 +145258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1787895195, "arguments": [ { "name": "axis", @@ -140938,7 +145276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2264617709, "return_value": { "type": "bool" }, @@ -140955,7 +145293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -140966,7 +145304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "body", @@ -140980,7 +145318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "body", @@ -141047,7 +145385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -141058,7 +145396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141070,7 +145408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141082,7 +145420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -141093,7 +145431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -141104,7 +145442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141116,7 +145454,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141128,7 +145466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "velocity", @@ -141142,7 +145480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -141153,7 +145491,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "velocity", @@ -141168,7 +145506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141180,7 +145518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "transform", @@ -141194,7 +145532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -141205,7 +145543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -141222,7 +145560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "impulse", @@ -141236,7 +145574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "impulse", @@ -141251,7 +145589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 496058220, "arguments": [ { "name": "impulse", @@ -141270,7 +145608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2823412066, + "hash": 3862383994, "arguments": [ { "name": "force", @@ -141285,7 +145623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 496058220, "arguments": [ { "name": "force", @@ -141304,7 +145642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -141319,7 +145657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2823412066, + "hash": 3862383994, "arguments": [ { "name": "force", @@ -141334,7 +145672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 496058220, "arguments": [ { "name": "force", @@ -141353,7 +145691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -141368,7 +145706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "force", @@ -141382,7 +145720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -141393,7 +145731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -141408,7 +145746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141420,7 +145758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -141434,7 +145772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -141445,7 +145783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -141457,7 +145795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -141475,7 +145813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -141493,7 +145831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -141512,7 +145850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 495598643, "return_value": { "type": "RID" }, @@ -141530,7 +145868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -141548,7 +145886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint64" @@ -141567,7 +145905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3332903315, "return_value": { "type": "Object" }, @@ -141585,7 +145923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -141604,7 +145942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -141622,7 +145960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141634,7 +145972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_space_state", @@ -141642,7 +145980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2506717822, "return_value": { "type": "PhysicsDirectSpaceState2D" } @@ -141748,7 +146086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -141759,7 +146097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141771,7 +146109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141783,7 +146121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -141794,7 +146132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -141805,7 +146143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2716978435, "return_value": { "type": "Basis" } @@ -141816,7 +146154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -141828,7 +146166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -141839,7 +146177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "velocity", @@ -141853,7 +146191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -141864,7 +146202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "velocity", @@ -141878,7 +146216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -141889,7 +146227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "transform", @@ -141903,7 +146241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -141914,7 +146252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 192990374, "return_value": { "type": "Vector3" }, @@ -141931,7 +146269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1131268653, + "hash": 2007698547, "arguments": [ { "name": "impulse", @@ -141946,7 +146284,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "impulse", @@ -141965,7 +146303,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "impulse", @@ -141979,7 +146317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1131268653, + "hash": 2007698547, "arguments": [ { "name": "force", @@ -141994,7 +146332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "force", @@ -142013,7 +146351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "torque", @@ -142027,7 +146365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1131268653, + "hash": 2007698547, "arguments": [ { "name": "force", @@ -142042,7 +146380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "force", @@ -142061,7 +146399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "torque", @@ -142075,7 +146413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "force", @@ -142089,7 +146427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -142100,7 +146438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "torque", @@ -142114,7 +146452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -142125,7 +146463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -142139,7 +146477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -142150,7 +146488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -142162,7 +146500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -142180,7 +146518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -142198,7 +146536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -142217,7 +146555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -142236,7 +146574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 495598643, "return_value": { "type": "RID" }, @@ -142254,7 +146592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -142272,7 +146610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint64" @@ -142291,7 +146629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3332903315, "return_value": { "type": "Object" }, @@ -142309,7 +146647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -142328,7 +146666,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -142346,7 +146684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -142358,7 +146696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_space_state", @@ -142366,7 +146704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2069328350, "return_value": { "type": "PhysicsDirectSpaceState3D" } @@ -143048,7 +147386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3278207904, "return_value": { "type": "Array" }, @@ -143071,7 +147409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1590275562, "return_value": { "type": "Dictionary" }, @@ -143088,7 +147426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3803848594, "return_value": { "type": "Array" }, @@ -143111,7 +147449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1194958700, "return_value": { "type": "Array" }, @@ -143128,7 +147466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3803848594, "return_value": { "type": "Array" }, @@ -143151,7 +147489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2803666496, "return_value": { "type": "Dictionary" }, @@ -143177,7 +147515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 45993382, "return_value": { "type": "Array" }, @@ -143200,7 +147538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3957970750, "return_value": { "type": "Dictionary" }, @@ -143217,7 +147555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 550215980, "return_value": { "type": "Array" }, @@ -143240,7 +147578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2463445962, "return_value": { "type": "Array" }, @@ -143257,7 +147595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 550215980, "return_value": { "type": "Array" }, @@ -143280,7 +147618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1376751592, "return_value": { "type": "Dictionary" }, @@ -143611,7 +147949,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "friction", @@ -143626,7 +147964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -143638,7 +147976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "rough", @@ -143652,7 +147990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -143663,7 +148001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bounce", @@ -143678,7 +148016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -143690,7 +148028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "absorbent", @@ -143704,7 +148042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -143754,7 +148092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -143768,7 +148106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -143779,7 +148117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "canvas_instance_id", @@ -143794,7 +148132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -143806,7 +148144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -143821,7 +148159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -143833,7 +148171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude", @@ -143847,7 +148185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -143858,7 +148196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -143872,7 +148210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -143883,7 +148221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -143897,7 +148235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -143961,7 +148299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "position", @@ -143975,7 +148313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -143986,7 +148324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -144001,7 +148339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -144013,7 +148351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude", @@ -144027,7 +148365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -144038,7 +148376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144052,7 +148390,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144063,7 +148401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144077,7 +148415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144134,7 +148472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "from", @@ -144148,7 +148486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -144159,7 +148497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "to", @@ -144173,7 +148511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -144184,7 +148522,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -144199,7 +148537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -144211,7 +148549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude", @@ -144225,7 +148563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -144236,7 +148574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144250,7 +148588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144261,7 +148599,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144275,7 +148613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144286,7 +148624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144300,7 +148638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144371,7 +148709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "from", @@ -144385,7 +148723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -144396,7 +148734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "to", @@ -144410,7 +148748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -144421,7 +148759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -144436,7 +148774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -144448,7 +148786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude", @@ -144462,7 +148800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -144473,7 +148811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144487,7 +148825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144498,7 +148836,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144512,7 +148850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144523,7 +148861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144537,7 +148875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144548,7 +148886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -144562,7 +148900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -144636,6 +148974,7 @@ "enums": [ { "name": "SpaceParameter", + "is_bitfield": false, "values": [ { "name": "SPACE_PARAM_CONTACT_RECYCLE_RADIUS", @@ -144677,6 +149016,7 @@ }, { "name": "ShapeType", + "is_bitfield": false, "values": [ { "name": "SHAPE_WORLD_BOUNDARY", @@ -144718,6 +149058,7 @@ }, { "name": "AreaParameter", + "is_bitfield": false, "values": [ { "name": "AREA_PARAM_GRAVITY_OVERRIDE_MODE", @@ -144767,6 +149108,7 @@ }, { "name": "AreaSpaceOverrideMode", + "is_bitfield": false, "values": [ { "name": "AREA_SPACE_OVERRIDE_DISABLED", @@ -144792,6 +149134,7 @@ }, { "name": "BodyMode", + "is_bitfield": false, "values": [ { "name": "BODY_MODE_STATIC", @@ -144813,6 +149156,7 @@ }, { "name": "BodyParameter", + "is_bitfield": false, "values": [ { "name": "BODY_PARAM_BOUNCE", @@ -144862,6 +149206,7 @@ }, { "name": "BodyDampMode", + "is_bitfield": false, "values": [ { "name": "BODY_DAMP_MODE_COMBINE", @@ -144875,6 +149220,7 @@ }, { "name": "BodyState", + "is_bitfield": false, "values": [ { "name": "BODY_STATE_TRANSFORM", @@ -144900,6 +149246,7 @@ }, { "name": "JointType", + "is_bitfield": false, "values": [ { "name": "JOINT_TYPE_PIN", @@ -144921,6 +149268,7 @@ }, { "name": "JointParam", + "is_bitfield": false, "values": [ { "name": "JOINT_PARAM_BIAS", @@ -144938,6 +149286,7 @@ }, { "name": "DampedSpringParam", + "is_bitfield": false, "values": [ { "name": "DAMPED_SPRING_REST_LENGTH", @@ -144955,6 +149304,7 @@ }, { "name": "CCDMode", + "is_bitfield": false, "values": [ { "name": "CCD_MODE_DISABLED", @@ -144972,6 +149322,7 @@ }, { "name": "AreaBodyStatus", + "is_bitfield": false, "values": [ { "name": "AREA_BODY_ADDED", @@ -144985,6 +149336,7 @@ }, { "name": "ProcessInfo", + "is_bitfield": false, "values": [ { "name": "INFO_ACTIVE_OBJECTS", @@ -145008,7 +149360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145019,7 +149371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145030,7 +149382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145041,7 +149393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145052,7 +149404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145063,7 +149415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145074,7 +149426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145085,7 +149437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145096,7 +149448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3175752987, "arguments": [ { "name": "shape", @@ -145114,7 +149466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1240598777, "return_value": { "type": "enum::PhysicsServer2D.ShapeType" }, @@ -145131,7 +149483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4171304767, "return_value": { "type": "Variant" }, @@ -145148,7 +149500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145159,7 +149511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "space", @@ -145177,7 +149529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -145194,7 +149546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 949194586, "arguments": [ { "name": "space", @@ -145217,7 +149569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 874111783, "return_value": { "type": "float", "meta": "float" @@ -145239,7 +149591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3160173886, "return_value": { "type": "PhysicsDirectSpaceState2D" }, @@ -145256,7 +149608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145267,7 +149619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "area", @@ -145285,7 +149637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -145302,7 +149654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 754862190, "arguments": [ { "name": "area", @@ -145330,7 +149682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "area", @@ -145353,7 +149705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 736082694, "arguments": [ { "name": "area", @@ -145376,7 +149728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2658558584, "arguments": [ { "name": "area", @@ -145399,7 +149751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -145417,7 +149769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1066463050, "return_value": { "type": "RID" }, @@ -145439,7 +149791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1324854622, "return_value": { "type": "Transform2D" }, @@ -145461,7 +149813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -145480,7 +149832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "area", @@ -145494,7 +149846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -145513,7 +149865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -145532,7 +149884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1257146028, "arguments": [ { "name": "area", @@ -145554,7 +149906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "area", @@ -145572,7 +149924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3047435120, "return_value": { "type": "Variant" }, @@ -145593,7 +149945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 213527486, "return_value": { "type": "Transform2D" }, @@ -145610,7 +149962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -145629,7 +149981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint64" @@ -145647,7 +149999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -145666,7 +150018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint64" @@ -145684,7 +150036,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3379118538, "arguments": [ { "name": "area", @@ -145702,7 +150054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3379118538, "arguments": [ { "name": "area", @@ -145720,7 +150072,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "area", @@ -145738,7 +150090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -145749,7 +150101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "body", @@ -145767,7 +150119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -145784,7 +150136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1658067650, "arguments": [ { "name": "body", @@ -145802,7 +150154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3261702585, "return_value": { "type": "enum::PhysicsServer2D.BodyMode" }, @@ -145819,7 +150171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 754862190, "arguments": [ { "name": "body", @@ -145847,7 +150199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "body", @@ -145870,7 +150222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 736082694, "arguments": [ { "name": "body", @@ -145893,7 +150245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -145911,7 +150263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1066463050, "return_value": { "type": "RID" }, @@ -145933,7 +150285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1324854622, "return_value": { "type": "Transform2D" }, @@ -145955,7 +150307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -145974,7 +150326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "body", @@ -145988,7 +150340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2658558584, "arguments": [ { "name": "body", @@ -146011,7 +150363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2556489974, "arguments": [ { "name": "body", @@ -146039,7 +150391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -146058,7 +150410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint64" @@ -146076,7 +150428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -146095,7 +150447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint64" @@ -146113,7 +150465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1882257015, "arguments": [ { "name": "body", @@ -146131,7 +150483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2661282217, "return_value": { "type": "enum::PhysicsServer2D.CCDMode" }, @@ -146148,7 +150500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -146167,7 +150519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint32" @@ -146185,7 +150537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -146204,7 +150556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint32" @@ -146222,7 +150574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2715630609, "arguments": [ { "name": "body", @@ -146244,7 +150596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3208033526, "return_value": { "type": "Variant" }, @@ -146265,7 +150617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "body", @@ -146279,7 +150631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1706355209, "arguments": [ { "name": "body", @@ -146301,7 +150653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4036367961, "return_value": { "type": "Variant" }, @@ -146322,7 +150674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3201125042, "arguments": [ { "name": "body", @@ -146340,7 +150692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "body", @@ -146359,7 +150711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 34330743, "arguments": [ { "name": "body", @@ -146382,7 +150734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3201125042, "arguments": [ { "name": "body", @@ -146400,7 +150752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 34330743, "arguments": [ { "name": "body", @@ -146423,7 +150775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "body", @@ -146442,7 +150794,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3201125042, "arguments": [ { "name": "body", @@ -146460,7 +150812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 34330743, "arguments": [ { "name": "body", @@ -146483,7 +150835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "body", @@ -146502,7 +150854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3201125042, "arguments": [ { "name": "body", @@ -146520,7 +150872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2440833711, "return_value": { "type": "Vector2" }, @@ -146537,7 +150889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "body", @@ -146556,7 +150908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "float" @@ -146574,7 +150926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3201125042, "arguments": [ { "name": "body", @@ -146592,7 +150944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "body", @@ -146610,7 +150962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "body", @@ -146628,7 +150980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -146647,7 +150999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -146665,7 +151017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "body", @@ -146683,7 +151035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -146700,7 +151052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3059434249, "arguments": [ { "name": "body", @@ -146723,7 +151075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1699844009, "return_value": { "type": "bool" }, @@ -146749,7 +151101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1191931871, "return_value": { "type": "PhysicsDirectBodyState2D" }, @@ -146766,7 +151118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -146777,7 +151129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "joint", @@ -146791,7 +151143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3972556514, "arguments": [ { "name": "joint", @@ -146814,7 +151166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4016448949, "return_value": { "type": "float", "meta": "float" @@ -146836,7 +151188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 2288600450, "arguments": [ { "name": "joint", @@ -146863,7 +151215,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 300073517, + "hash": 3573265764, "arguments": [ { "name": "joint", @@ -146899,7 +151251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 138021803, + "hash": 206603952, "arguments": [ { "name": "joint", @@ -146930,7 +151282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 220564071, "arguments": [ { "name": "joint", @@ -146953,7 +151305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2075871277, "return_value": { "type": "float", "meta": "float" @@ -146975,7 +151327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4262502231, "return_value": { "type": "enum::PhysicsServer2D.JointType" }, @@ -146992,7 +151344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -147006,7 +151358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -147020,7 +151372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 576496006, "return_value": { "type": "int", "meta": "int32" @@ -147043,6 +151395,7 @@ "enums": [ { "name": "JointType", + "is_bitfield": false, "values": [ { "name": "JOINT_TYPE_PIN", @@ -147072,6 +151425,7 @@ }, { "name": "PinJointParam", + "is_bitfield": false, "values": [ { "name": "PIN_JOINT_BIAS", @@ -147089,6 +151443,7 @@ }, { "name": "HingeJointParam", + "is_bitfield": false, "values": [ { "name": "HINGE_JOINT_BIAS", @@ -147126,6 +151481,7 @@ }, { "name": "HingeJointFlag", + "is_bitfield": false, "values": [ { "name": "HINGE_JOINT_FLAG_USE_LIMIT", @@ -147139,6 +151495,7 @@ }, { "name": "SliderJointParam", + "is_bitfield": false, "values": [ { "name": "SLIDER_JOINT_LINEAR_LIMIT_UPPER", @@ -147236,6 +151593,7 @@ }, { "name": "ConeTwistJointParam", + "is_bitfield": false, "values": [ { "name": "CONE_TWIST_JOINT_SWING_SPAN", @@ -147261,6 +151619,7 @@ }, { "name": "G6DOFJointAxisParam", + "is_bitfield": false, "values": [ { "name": "G6DOF_JOINT_LINEAR_LOWER_LIMIT", @@ -147330,6 +151689,7 @@ }, { "name": "G6DOFJointAxisFlag", + "is_bitfield": false, "values": [ { "name": "G6DOF_JOINT_FLAG_ENABLE_LINEAR_LIMIT", @@ -147351,6 +151711,7 @@ }, { "name": "ShapeType", + "is_bitfield": false, "values": [ { "name": "SHAPE_WORLD_BOUNDARY", @@ -147400,6 +151761,7 @@ }, { "name": "AreaParameter", + "is_bitfield": false, "values": [ { "name": "AREA_PARAM_GRAVITY_OVERRIDE_MODE", @@ -147465,6 +151827,7 @@ }, { "name": "AreaSpaceOverrideMode", + "is_bitfield": false, "values": [ { "name": "AREA_SPACE_OVERRIDE_DISABLED", @@ -147490,6 +151853,7 @@ }, { "name": "BodyMode", + "is_bitfield": false, "values": [ { "name": "BODY_MODE_STATIC", @@ -147511,6 +151875,7 @@ }, { "name": "BodyParameter", + "is_bitfield": false, "values": [ { "name": "BODY_PARAM_BOUNCE", @@ -147560,6 +151925,7 @@ }, { "name": "BodyDampMode", + "is_bitfield": false, "values": [ { "name": "BODY_DAMP_MODE_COMBINE", @@ -147573,6 +151939,7 @@ }, { "name": "BodyState", + "is_bitfield": false, "values": [ { "name": "BODY_STATE_TRANSFORM", @@ -147598,6 +151965,7 @@ }, { "name": "AreaBodyStatus", + "is_bitfield": false, "values": [ { "name": "AREA_BODY_ADDED", @@ -147611,6 +151979,7 @@ }, { "name": "ProcessInfo", + "is_bitfield": false, "values": [ { "name": "INFO_ACTIVE_OBJECTS", @@ -147628,6 +151997,7 @@ }, { "name": "SpaceParameter", + "is_bitfield": false, "values": [ { "name": "SPACE_PARAM_CONTACT_RECYCLE_RADIUS", @@ -147665,6 +152035,7 @@ }, { "name": "BodyAxis", + "is_bitfield": false, "values": [ { "name": "BODY_AXIS_LINEAR_X", @@ -147700,7 +152071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147711,7 +152082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147722,7 +152093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147733,7 +152104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147744,7 +152115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147755,7 +152126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147766,7 +152137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147777,7 +152148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147788,7 +152159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147799,7 +152170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147810,7 +152181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3175752987, "arguments": [ { "name": "shape", @@ -147828,7 +152199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3418923367, "return_value": { "type": "enum::PhysicsServer3D.ShapeType" }, @@ -147845,7 +152216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4171304767, "return_value": { "type": "Variant" }, @@ -147862,7 +152233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147873,7 +152244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "space", @@ -147891,7 +152262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -147908,7 +152279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2406017470, "arguments": [ { "name": "space", @@ -147931,7 +152302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1523206731, "return_value": { "type": "float", "meta": "float" @@ -147953,7 +152324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2048616813, "return_value": { "type": "PhysicsDirectSpaceState3D" }, @@ -147970,7 +152341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -147981,7 +152352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "area", @@ -147999,7 +152370,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -148016,7 +152387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 4040559639, "arguments": [ { "name": "area", @@ -148044,7 +152415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "area", @@ -148067,7 +152438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 675327471, "arguments": [ { "name": "area", @@ -148090,7 +152461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2658558584, "arguments": [ { "name": "area", @@ -148113,7 +152484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -148131,7 +152502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1066463050, "return_value": { "type": "RID" }, @@ -148153,7 +152524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1050775521, "return_value": { "type": "Transform3D" }, @@ -148175,7 +152546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -148194,7 +152565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "area", @@ -148208,7 +152579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -148227,7 +152598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -148246,7 +152617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2980114638, "arguments": [ { "name": "area", @@ -148268,7 +152639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3935195649, "arguments": [ { "name": "area", @@ -148286,7 +152657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 890056067, "return_value": { "type": "Variant" }, @@ -148307,7 +152678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1128465797, "return_value": { "type": "Transform3D" }, @@ -148324,7 +152695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "area", @@ -148343,7 +152714,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint64" @@ -148361,7 +152732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3379118538, "arguments": [ { "name": "area", @@ -148379,7 +152750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3379118538, "arguments": [ { "name": "area", @@ -148397,7 +152768,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "area", @@ -148415,7 +152786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "area", @@ -148433,7 +152804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -148444,7 +152815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "body", @@ -148462,7 +152833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -148479,7 +152850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 606803466, "arguments": [ { "name": "body", @@ -148497,7 +152868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2488819728, "return_value": { "type": "enum::PhysicsServer3D.BodyMode" }, @@ -148514,7 +152885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -148533,7 +152904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint32" @@ -148551,7 +152922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -148570,7 +152941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint32" @@ -148588,7 +152959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 4040559639, "arguments": [ { "name": "body", @@ -148616,7 +152987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "body", @@ -148639,7 +153010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 675327471, "arguments": [ { "name": "body", @@ -148662,7 +153033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2658558584, "arguments": [ { "name": "body", @@ -148685,7 +153056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -148703,7 +153074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1066463050, "return_value": { "type": "RID" }, @@ -148725,7 +153096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1050775521, "return_value": { "type": "Transform3D" }, @@ -148747,7 +153118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -148766,7 +153137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "body", @@ -148780,7 +153151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -148799,7 +153170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "uint64" @@ -148817,7 +153188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "body", @@ -148835,7 +153206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -148852,7 +153223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 910941953, "arguments": [ { "name": "body", @@ -148874,7 +153245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3385027841, "return_value": { "type": "Variant" }, @@ -148895,7 +153266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "body", @@ -148909,7 +153280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 599977762, "arguments": [ { "name": "body", @@ -148931,7 +153302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1850449534, "return_value": { "type": "Variant" }, @@ -148952,7 +153323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -148970,7 +153341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 110375048, "arguments": [ { "name": "body", @@ -148993,7 +153364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149011,7 +153382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149029,7 +153400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 110375048, "arguments": [ { "name": "body", @@ -149052,7 +153423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149070,7 +153441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149088,7 +153459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 110375048, "arguments": [ { "name": "body", @@ -149111,7 +153482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149129,7 +153500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149147,7 +153518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 531438156, "return_value": { "type": "Vector3" }, @@ -149164,7 +153535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149182,7 +153553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 531438156, "return_value": { "type": "Vector3" }, @@ -149199,7 +153570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "body", @@ -149217,7 +153588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2020836892, "arguments": [ { "name": "body", @@ -149239,7 +153610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 587853580, "return_value": { "type": "bool" }, @@ -149260,7 +153631,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "body", @@ -149278,7 +153649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "body", @@ -149296,7 +153667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "body", @@ -149315,7 +153686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -149333,7 +153704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "body", @@ -149351,7 +153722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -149368,7 +153739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3059434249, "arguments": [ { "name": "body", @@ -149391,7 +153762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "body", @@ -149409,7 +153780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1944921792, "return_value": { "type": "bool" }, @@ -149435,7 +153806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3029727957, "return_value": { "type": "PhysicsDirectBodyState3D" }, @@ -149452,7 +153823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 974181306, "return_value": { "type": "AABB" }, @@ -149469,7 +153840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -149480,7 +153851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "joint", @@ -149494,7 +153865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 4280171926, "arguments": [ { "name": "joint", @@ -149524,7 +153895,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 810685294, "arguments": [ { "name": "joint", @@ -149547,7 +153918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2817972347, "return_value": { "type": "float", "meta": "float" @@ -149569,7 +153940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "joint", @@ -149587,7 +153958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 531438156, "return_value": { "type": "Vector3" }, @@ -149604,7 +153975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "joint", @@ -149622,7 +153993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 531438156, "return_value": { "type": "Vector3" }, @@ -149639,7 +154010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1684107643, "arguments": [ { "name": "joint", @@ -149669,7 +154040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3165502333, "arguments": [ { "name": "joint", @@ -149692,7 +154063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2129207581, "return_value": { "type": "float", "meta": "float" @@ -149714,7 +154085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1601626188, "arguments": [ { "name": "joint", @@ -149736,7 +154107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4165147865, "return_value": { "type": "bool" }, @@ -149757,7 +154128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1684107643, "arguments": [ { "name": "joint", @@ -149787,7 +154158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2264833593, "arguments": [ { "name": "joint", @@ -149810,7 +154181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3498644957, "return_value": { "type": "float", "meta": "float" @@ -149832,7 +154203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1684107643, "arguments": [ { "name": "joint", @@ -149862,7 +154233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 808587618, "arguments": [ { "name": "joint", @@ -149885,7 +154256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1134789658, "return_value": { "type": "float", "meta": "float" @@ -149907,7 +154278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4290791900, "return_value": { "type": "enum::PhysicsServer3D.JointType" }, @@ -149924,7 +154295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "joint", @@ -149943,7 +154314,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -149961,7 +154332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1684107643, "arguments": [ { "name": "joint", @@ -149991,7 +154362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2600081391, "arguments": [ { "name": "joint", @@ -150018,7 +154389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 467122058, "return_value": { "type": "float", "meta": "float" @@ -150044,7 +154415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3570926903, "arguments": [ { "name": "joint", @@ -150070,7 +154441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 4158090196, "return_value": { "type": "bool" }, @@ -150095,7 +154466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -150109,7 +154480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -150123,7 +154494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1332958745, "return_value": { "type": "int", "meta": "int32" @@ -152494,7 +156865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "shape", @@ -152508,7 +156879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 121922552, "return_value": { "type": "Resource" } @@ -152519,7 +156890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "shape", @@ -152533,7 +156904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -152544,7 +156915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "transform", @@ -152558,7 +156929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -152569,7 +156940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "motion", @@ -152583,7 +156954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -152594,7 +156965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -152609,7 +156980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -152621,7 +156992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -152636,7 +157007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -152648,7 +157019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude", @@ -152662,7 +157033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -152673,7 +157044,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -152687,7 +157058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -152698,7 +157069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -152712,7 +157083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -152797,7 +157168,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "shape", @@ -152811,7 +157182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 121922552, "return_value": { "type": "Resource" } @@ -152822,7 +157193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "shape", @@ -152836,7 +157207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -152847,7 +157218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "transform", @@ -152861,7 +157232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -152872,7 +157243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "motion", @@ -152886,7 +157257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -152897,7 +157268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -152912,7 +157283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -152924,7 +157295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -152939,7 +157310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -152951,7 +157322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude", @@ -152965,7 +157336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -152976,7 +157347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -152990,7 +157361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -153001,7 +157372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -153015,7 +157386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -153100,7 +157471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -153111,7 +157482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "from", @@ -153125,7 +157496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -153136,7 +157507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "motion", @@ -153150,7 +157521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153162,7 +157533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -153177,7 +157548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -153188,7 +157559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -153202,7 +157573,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -153213,7 +157584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude_list", @@ -153227,7 +157598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -153238,7 +157609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude_list", @@ -153252,7 +157623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -153263,7 +157634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -153337,7 +157708,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -153348,7 +157719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "from", @@ -153362,7 +157733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -153373,7 +157744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "motion", @@ -153387,7 +157758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153399,7 +157770,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -153414,7 +157785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -153426,7 +157797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_collisions", @@ -153441,7 +157812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -153452,7 +157823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -153466,7 +157837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -153477,7 +157848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude_list", @@ -153491,7 +157862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -153502,7 +157873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "exclude_list", @@ -153516,7 +157887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -153527,7 +157898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -153608,7 +157979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -153619,7 +157990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -153630,7 +158001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -153641,7 +158012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -153652,7 +158023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -153663,7 +158034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -153675,7 +158046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -153686,7 +158057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1981248198, "return_value": { "type": "Object" } @@ -153697,7 +158068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -153709,7 +158080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -153721,7 +158092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153733,7 +158104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153745,7 +158116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153766,7 +158137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -153777,7 +158148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -153788,7 +158159,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153800,7 +158171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -153812,7 +158183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -153824,7 +158195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1914908202, "return_value": { "type": "Vector3" }, @@ -153843,7 +158214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1914908202, "return_value": { "type": "Vector3" }, @@ -153862,7 +158233,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1914908202, "return_value": { "type": "Vector3" }, @@ -153881,7 +158252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "uint64" @@ -153901,7 +158272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1231817359, "return_value": { "type": "RID" }, @@ -153920,7 +158291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 2639523548, "return_value": { "type": "Object" }, @@ -153939,7 +158310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "int32" @@ -153959,7 +158330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "int32" @@ -153979,7 +158350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 218038398, "return_value": { "type": "float", "meta": "float" @@ -154008,7 +158379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "softness", @@ -154023,7 +158394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -154049,6 +158420,7 @@ "enums": [ { "name": "Param", + "is_bitfield": false, "values": [ { "name": "PARAM_BIAS", @@ -154072,7 +158444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2059913726, "arguments": [ { "name": "param", @@ -154091,7 +158463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1758438771, "return_value": { "type": "float", "meta": "float" @@ -154162,7 +158534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 259215842, "arguments": [ { "name": "aabb", @@ -154194,7 +158566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -154233,7 +158605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 560364750, "arguments": [ { "name": "size", @@ -154247,7 +158619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2785653706, "return_value": { "type": "Vector3i" } @@ -154276,7 +158648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -154290,7 +158662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -154301,7 +158673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layers", @@ -154341,7 +158713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -154355,7 +158727,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -154366,7 +158738,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "subdivide", @@ -154381,7 +158753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -154393,7 +158765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "subdivide", @@ -154408,7 +158780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -154420,7 +158792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "offset", @@ -154434,7 +158806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -154484,7 +158856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -154498,7 +158870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -154509,7 +158881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "texture_offset", @@ -154523,7 +158895,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -154534,7 +158906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "texture_scale", @@ -154549,7 +158921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -154607,7 +158979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "polygon", @@ -154621,7 +158993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -154632,7 +159004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "uv", @@ -154646,7 +159018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -154657,7 +159029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -154671,7 +159043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -154682,7 +159054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "polygons", @@ -154696,7 +159068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -154707,7 +159079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3546319833, "arguments": [ { "name": "vertex_colors", @@ -154721,7 +159093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1392750486, "return_value": { "type": "PackedColorArray" } @@ -154732,7 +159104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -154746,7 +159118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -154757,7 +159129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "texture_offset", @@ -154771,7 +159143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -154782,7 +159154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "texture_rotation", @@ -154797,7 +159169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -154809,7 +159181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "texture_scale", @@ -154823,7 +159195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -154834,7 +159206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "invert", @@ -154848,7 +159220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -154859,7 +159231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "antialiased", @@ -154873,7 +159245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -154884,7 +159256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "invert_border", @@ -154899,7 +159271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -154911,7 +159283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -154925,7 +159297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -154936,7 +159308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 703042815, "arguments": [ { "name": "path", @@ -154954,7 +159326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -154966,7 +159338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -154984,7 +159356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1542882410, "return_value": { "type": "PackedFloat32Array" }, @@ -155002,7 +159374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -155017,7 +159389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_bone_path", @@ -155025,7 +159397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "index", @@ -155044,7 +159416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1345852415, "arguments": [ { "name": "index", @@ -155063,7 +159435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "skeleton", @@ -155077,7 +159449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -155088,7 +159460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "internal_vertex_count", @@ -155103,7 +159475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -155238,7 +159610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1509147220, "arguments": [ { "name": "polygon", @@ -155252,7 +159624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2961356807, "return_value": { "type": "PackedVector2Array" } @@ -155281,7 +159653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3251786936, "arguments": [ { "name": "points", @@ -155299,7 +159671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1562168077, "return_value": { "type": "PackedVector2Array" }, @@ -155320,7 +159692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3932192302, "return_value": { "type": "PackedVector2Array" }, @@ -155341,7 +159713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2656412154, "return_value": { "type": "Vector2" }, @@ -155358,7 +159730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 556197845, "return_value": { "type": "bool" }, @@ -155375,7 +159747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "idx", @@ -155395,7 +159767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -155414,7 +159786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -155455,7 +159827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 3224536192, "arguments": [ { "name": "label", @@ -155480,7 +159852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 1200674553, "arguments": [ { "name": "texture", @@ -155509,7 +159881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 3224536192, "arguments": [ { "name": "label", @@ -155534,7 +159906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 1200674553, "arguments": [ { "name": "texture", @@ -155563,7 +159935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 3224536192, "arguments": [ { "name": "label", @@ -155588,7 +159960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 1200674553, "arguments": [ { "name": "texture", @@ -155617,7 +159989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2478042392, + "hash": 1585218420, "arguments": [ { "name": "label", @@ -155653,7 +160025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 2168272394, "arguments": [ { "name": "shortcut", @@ -155678,7 +160050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 68101841, "arguments": [ { "name": "texture", @@ -155707,7 +160079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 2168272394, "arguments": [ { "name": "shortcut", @@ -155732,7 +160104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 68101841, "arguments": [ { "name": "texture", @@ -155761,7 +160133,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 2168272394, "arguments": [ { "name": "shortcut", @@ -155786,7 +160158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 68101841, "arguments": [ { "name": "texture", @@ -155815,7 +160187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3728518296, "arguments": [ { "name": "label", @@ -155839,7 +160211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "index", @@ -155858,7 +160230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1707680378, "arguments": [ { "name": "index", @@ -155871,37 +160243,13 @@ } ] }, - { - "name": "set_item_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134260040, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "set_item_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "index", @@ -155920,7 +160268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "index", @@ -155939,7 +160287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "index", @@ -155958,7 +160306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "index", @@ -155978,7 +160326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2992817551, "arguments": [ { "name": "index", @@ -155997,7 +160345,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "index", @@ -156016,7 +160364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "index", @@ -156035,7 +160383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "index", @@ -156054,7 +160402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "index", @@ -156073,7 +160421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "index", @@ -156092,7 +160440,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "index", @@ -156111,7 +160459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "index", @@ -156130,7 +160478,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 825127832, "arguments": [ { "name": "index", @@ -156148,13 +160496,33 @@ } ] }, + { + "name": "set_item_horizontal_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3937882851, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + }, + { + "name": "offset", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "set_item_multistate", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "index", @@ -156174,7 +160542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "index", @@ -156193,7 +160561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -156208,7 +160576,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -156223,7 +160591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -156241,7 +160609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4235602388, "return_value": { "type": "enum::Control.TextDirection" }, @@ -156253,51 +160621,13 @@ } ] }, - { - "name": "get_item_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135410057, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_item_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "get_item_language", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -156315,7 +160645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -156333,7 +160663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -156351,7 +160681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -156370,7 +160700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -156389,7 +160719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 253789942, "return_value": { "type": "enum::Key" }, @@ -156407,7 +160737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -156425,7 +160755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -156443,7 +160773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -156461,7 +160791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -156479,7 +160809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -156497,7 +160827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -156515,7 +160845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -156533,7 +160863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -156551,7 +160881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1449483325, "return_value": { "type": "Shortcut" }, @@ -156563,13 +160893,32 @@ } ] }, + { + "name": "get_item_horizontal_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 923996154, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "set_current_index", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -156584,7 +160933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -156596,7 +160945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -156611,7 +160960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -156623,7 +160972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -156638,7 +160987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -156653,7 +161002,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 313699832, + "hash": 2266703459, "arguments": [ { "name": "label", @@ -156674,7 +161023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_hide_on_item_selection", @@ -156682,7 +161031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -156696,7 +161045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -156707,7 +161056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -156721,7 +161070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -156732,7 +161081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -156746,7 +161095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -156757,7 +161106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "seconds", @@ -156772,7 +161121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -156784,7 +161133,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -156798,7 +161147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -156894,6 +161243,7 @@ "enums": [ { "name": "CompressionMode", + "is_bitfield": false, "values": [ { "name": "COMPRESSION_MODE_LOSSLESS", @@ -156929,7 +161279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 97251393, "arguments": [ { "name": "image", @@ -156958,7 +161308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3847873762, "return_value": { "type": "enum::Image.Format" } @@ -156969,7 +161319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3265612739, "return_value": { "type": "enum::PortableCompressedTexture2D.CompressionMode" } @@ -156980,7 +161330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -156994,7 +161344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -157005,7 +161355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "keep", @@ -157019,7 +161369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -157030,7 +161380,7 @@ "is_vararg": false, "is_static": true, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "keep", @@ -157044,7 +161394,7 @@ "is_vararg": false, "is_static": true, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -157080,7 +161430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "extents", @@ -157095,7 +161445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157142,7 +161492,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -157156,7 +161506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -157167,7 +161517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -157178,7 +161528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 259215842, "arguments": [ { "name": "aabb", @@ -157192,7 +161542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -157203,7 +161553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_faces", @@ -157217,7 +161567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -157260,7 +161610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "left_to_right", @@ -157275,7 +161625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157287,7 +161637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "size", @@ -157301,7 +161651,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -157312,7 +161662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "segments", @@ -157327,7 +161677,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -157339,7 +161689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "segments", @@ -157354,7 +161704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -157366,7 +161716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "segments", @@ -157381,7 +161731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -157439,7 +161789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -157453,7 +161803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -157464,7 +161814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -157478,7 +161828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -157489,7 +161839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "curve", @@ -157504,7 +161854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157516,7 +161866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -157531,7 +161881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157543,7 +161893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "sky_cover", @@ -157557,7 +161907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -157568,7 +161918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -157582,7 +161932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -157593,7 +161943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -157607,7 +161957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -157618,7 +161968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -157632,7 +161982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -157643,7 +161993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "curve", @@ -157658,7 +162008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157670,7 +162020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -157685,7 +162035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157697,7 +162047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "degrees", @@ -157712,7 +162062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157724,7 +162074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "curve", @@ -157739,7 +162089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -157751,7 +162101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_debanding", @@ -157765,7 +162115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -157874,6 +162224,7 @@ "enums": [ { "name": "FillMode", + "is_bitfield": false, "values": [ { "name": "FILL_BEGIN_TO_END", @@ -157901,7 +162252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mode", @@ -157916,7 +162267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -157928,7 +162279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -157942,7 +162293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -157978,7 +162329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -157995,7 +162346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 402577236, "arguments": [ { "name": "name", @@ -158013,7 +162364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1868160156, "return_value": { "type": "Variant" }, @@ -158030,7 +162381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2956805083, "arguments": [ { "name": "name", @@ -158049,7 +162400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int32" @@ -158067,7 +162418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 402577236, "arguments": [ { "name": "name", @@ -158085,7 +162436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "hint", @@ -158099,7 +162450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -158113,7 +162464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -158130,7 +162481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -158147,7 +162498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -158158,7 +162509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474136396, + "hash": 3001721055, "return_value": { "type": "bool" }, @@ -158186,7 +162537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -158203,7 +162554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 309047738, "return_value": { "type": "Variant" }, @@ -158220,7 +162571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -158246,7 +162597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4190193059, "return_value": { "type": "PropertyTweener" }, @@ -158263,7 +162614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4279177709, "return_value": { "type": "PropertyTweener" } @@ -158274,7 +162625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4279177709, "return_value": { "type": "PropertyTweener" } @@ -158285,7 +162636,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1899107404, "return_value": { "type": "PropertyTweener" }, @@ -158302,7 +162653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1080455622, "return_value": { "type": "PropertyTweener" }, @@ -158319,7 +162670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2171559331, "return_value": { "type": "PropertyTweener" }, @@ -158346,7 +162697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "base", @@ -158360,7 +162711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -158389,7 +162740,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -158403,7 +162754,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -158414,7 +162765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "center_offset", @@ -158428,7 +162779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -158464,7 +162815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -158478,7 +162829,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -158507,7 +162858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 565531219, "arguments": [ { "name": "p_member", @@ -158521,7 +162872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2235804183, "return_value": { "type": "enum::RenderingDevice.DataFormat" } @@ -158532,7 +162883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3774171498, "arguments": [ { "name": "p_member", @@ -158546,7 +162897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 407791724, "return_value": { "type": "enum::RenderingDevice.TextureSamples" } @@ -158557,7 +162908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -158572,7 +162923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -158622,7 +162973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "p_member", @@ -158636,7 +162987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -158647,7 +162998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "p_member", @@ -158661,7 +163012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -158672,7 +163023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "p_member", @@ -158686,7 +163037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -158697,7 +163048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "p_member", @@ -158711,7 +163062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -158722,7 +163073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -158737,7 +163088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -158795,7 +163146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -158809,7 +163160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -158820,7 +163171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3610841058, "arguments": [ { "name": "p_member", @@ -158834,7 +163185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 988254690, "return_value": { "type": "enum::RenderingDevice.LogicOperation" } @@ -158845,7 +163196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "p_member", @@ -158859,7 +163210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -158870,7 +163221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "attachments", @@ -158884,7 +163235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -158934,7 +163285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_enable_blend", @@ -158942,7 +163293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -158956,7 +163307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -158967,7 +163318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2251019273, "arguments": [ { "name": "p_member", @@ -158981,7 +163332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3691288359, "return_value": { "type": "enum::RenderingDevice.BlendFactor" } @@ -158992,7 +163343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2251019273, "arguments": [ { "name": "p_member", @@ -159006,7 +163357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3691288359, "return_value": { "type": "enum::RenderingDevice.BlendFactor" } @@ -159017,7 +163368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3073022720, "arguments": [ { "name": "p_member", @@ -159031,7 +163382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1385093561, "return_value": { "type": "enum::RenderingDevice.BlendOperation" } @@ -159042,7 +163393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2251019273, "arguments": [ { "name": "p_member", @@ -159056,7 +163407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3691288359, "return_value": { "type": "enum::RenderingDevice.BlendFactor" } @@ -159067,7 +163418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2251019273, "arguments": [ { "name": "p_member", @@ -159081,7 +163432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3691288359, "return_value": { "type": "enum::RenderingDevice.BlendFactor" } @@ -159092,7 +163443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3073022720, "arguments": [ { "name": "p_member", @@ -159106,7 +163457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1385093561, "return_value": { "type": "enum::RenderingDevice.BlendOperation" } @@ -159117,7 +163468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159131,7 +163482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159142,7 +163493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159156,7 +163507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159167,7 +163518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159181,7 +163532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159192,7 +163543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159206,7 +163557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159305,7 +163656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159319,7 +163670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159330,7 +163681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159344,7 +163695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159355,7 +163706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2573711505, "arguments": [ { "name": "p_member", @@ -159369,7 +163720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 269730778, "return_value": { "type": "enum::RenderingDevice.CompareOperator" } @@ -159380,7 +163731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159394,7 +163745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159405,7 +163756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -159420,7 +163771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -159432,7 +163783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -159447,7 +163798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -159459,7 +163810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -159473,7 +163824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -159484,7 +163835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2092799566, "arguments": [ { "name": "p_member", @@ -159498,7 +163849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1714732389, "return_value": { "type": "enum::RenderingDevice.StencilOperation" } @@ -159509,7 +163860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2092799566, "arguments": [ { "name": "p_member", @@ -159523,7 +163874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1714732389, "return_value": { "type": "enum::RenderingDevice.StencilOperation" } @@ -159534,7 +163885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2092799566, "arguments": [ { "name": "p_member", @@ -159548,7 +163899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1714732389, "return_value": { "type": "enum::RenderingDevice.StencilOperation" } @@ -159559,7 +163910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2573711505, "arguments": [ { "name": "p_member", @@ -159573,7 +163924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 269730778, "return_value": { "type": "enum::RenderingDevice.CompareOperator" } @@ -159584,7 +163935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -159599,7 +163950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -159611,7 +163962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -159626,7 +163977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -159638,7 +163989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -159653,7 +164004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -159665,7 +164016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2092799566, "arguments": [ { "name": "p_member", @@ -159679,7 +164030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1714732389, "return_value": { "type": "enum::RenderingDevice.StencilOperation" } @@ -159690,7 +164041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2092799566, "arguments": [ { "name": "p_member", @@ -159704,7 +164055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1714732389, "return_value": { "type": "enum::RenderingDevice.StencilOperation" } @@ -159715,7 +164066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2092799566, "arguments": [ { "name": "p_member", @@ -159729,7 +164080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1714732389, "return_value": { "type": "enum::RenderingDevice.StencilOperation" } @@ -159740,7 +164091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2573711505, "arguments": [ { "name": "p_member", @@ -159754,7 +164105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 269730778, "return_value": { "type": "enum::RenderingDevice.CompareOperator" } @@ -159765,7 +164116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -159780,7 +164131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -159792,7 +164143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -159807,7 +164158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -159819,7 +164170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -159834,7 +164185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -160004,7 +164355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3774171498, "arguments": [ { "name": "p_member", @@ -160018,7 +164369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 407791724, "return_value": { "type": "enum::RenderingDevice.TextureSamples" } @@ -160029,7 +164380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160043,7 +164394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160054,7 +164405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160069,7 +164420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160081,7 +164432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160095,7 +164446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160106,7 +164457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160120,7 +164471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160131,7 +164482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "masks", @@ -160145,7 +164496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -160209,7 +164560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160223,7 +164574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160234,7 +164585,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160248,7 +164599,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160259,7 +164610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160273,7 +164624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160284,7 +164635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2662586502, "arguments": [ { "name": "p_member", @@ -160298,7 +164649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2192484313, "return_value": { "type": "enum::RenderingDevice.PolygonCullMode" } @@ -160309,7 +164660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2637251213, "arguments": [ { "name": "p_member", @@ -160323,7 +164674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 708793786, "return_value": { "type": "enum::RenderingDevice.PolygonFrontFace" } @@ -160334,7 +164685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160348,7 +164699,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160359,7 +164710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160374,7 +164725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160386,7 +164737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160401,7 +164752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160413,7 +164764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160428,7 +164779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160440,7 +164791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160455,7 +164806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160467,7 +164818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -160482,7 +164833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -160582,7 +164933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1114965689, "arguments": [ { "name": "value", @@ -160596,7 +164947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -160607,7 +164958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "constant_id", @@ -160622,7 +164973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -160659,7 +165010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1493420382, "arguments": [ { "name": "p_member", @@ -160673,7 +165024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2209202801, "return_value": { "type": "enum::RenderingDevice.SamplerFilter" } @@ -160684,7 +165035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1493420382, "arguments": [ { "name": "p_member", @@ -160698,7 +165049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2209202801, "return_value": { "type": "enum::RenderingDevice.SamplerFilter" } @@ -160709,7 +165060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1493420382, "arguments": [ { "name": "p_member", @@ -160723,7 +165074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2209202801, "return_value": { "type": "enum::RenderingDevice.SamplerFilter" } @@ -160734,7 +165085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 246127626, "arguments": [ { "name": "p_member", @@ -160748,7 +165099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3227895872, "return_value": { "type": "enum::RenderingDevice.SamplerRepeatMode" } @@ -160759,7 +165110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 246127626, "arguments": [ { "name": "p_member", @@ -160773,7 +165124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3227895872, "return_value": { "type": "enum::RenderingDevice.SamplerRepeatMode" } @@ -160784,7 +165135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 246127626, "arguments": [ { "name": "p_member", @@ -160798,7 +165149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3227895872, "return_value": { "type": "enum::RenderingDevice.SamplerRepeatMode" } @@ -160809,7 +165160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160824,7 +165175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160836,7 +165187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160850,7 +165201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160861,7 +165212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160876,7 +165227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160888,7 +165239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -160902,7 +165253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -160913,7 +165264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2573711505, "arguments": [ { "name": "p_member", @@ -160927,7 +165278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 269730778, "return_value": { "type": "enum::RenderingDevice.CompareOperator" } @@ -160938,7 +165289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160953,7 +165304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160965,7 +165316,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "p_member", @@ -160980,7 +165331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -160992,7 +165343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1115869595, "arguments": [ { "name": "p_member", @@ -161006,7 +165357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3514246478, "return_value": { "type": "enum::RenderingDevice.SamplerBorderColor" } @@ -161017,7 +165368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "p_member", @@ -161031,7 +165382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -161158,7 +165509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1558064255, "arguments": [ { "name": "bytecode", @@ -161177,7 +165528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 3340165340, "return_value": { "type": "RDShaderSPIRV" }, @@ -161195,7 +165546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -161206,7 +165557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "error", @@ -161220,7 +165571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -161249,7 +165600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3514097977, "arguments": [ { "name": "stage", @@ -161267,7 +165618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3816765404, "return_value": { "type": "PackedByteArray" }, @@ -161284,7 +165635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 620821314, "arguments": [ { "name": "stage", @@ -161302,7 +165653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3354920045, "return_value": { "type": "String" }, @@ -161400,7 +165751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 620821314, "arguments": [ { "name": "stage", @@ -161418,7 +165769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3354920045, "return_value": { "type": "String" }, @@ -161435,7 +165786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3422186742, "arguments": [ { "name": "language", @@ -161449,7 +165800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1063538261, "return_value": { "type": "enum::RenderingDevice.ShaderLanguage" } @@ -161513,7 +165864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 565531219, "arguments": [ { "name": "p_member", @@ -161527,7 +165878,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2235804183, "return_value": { "type": "enum::RenderingDevice.DataFormat" } @@ -161538,7 +165889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -161553,7 +165904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -161565,7 +165916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -161580,7 +165931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -161592,7 +165943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -161607,7 +165958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -161619,7 +165970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -161634,7 +165985,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -161646,7 +165997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -161661,7 +166012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -161673,7 +166024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 652343381, "arguments": [ { "name": "p_member", @@ -161687,7 +166038,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4036357416, "return_value": { "type": "enum::RenderingDevice.TextureType" } @@ -161698,7 +166049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3774171498, "arguments": [ { "name": "p_member", @@ -161712,7 +166063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 407791724, "return_value": { "type": "enum::RenderingDevice.TextureSamples" } @@ -161723,7 +166074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -161738,7 +166089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -161750,7 +166101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 565531219, "arguments": [ { "name": "format", @@ -161764,7 +166115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 565531219, "arguments": [ { "name": "format", @@ -161852,7 +166203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 565531219, "arguments": [ { "name": "p_member", @@ -161866,7 +166217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2235804183, "return_value": { "type": "enum::RenderingDevice.DataFormat" } @@ -161877,7 +166228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3833362581, "arguments": [ { "name": "p_member", @@ -161891,7 +166242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4150792614, "return_value": { "type": "enum::RenderingDevice.TextureSwizzle" } @@ -161902,7 +166253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3833362581, "arguments": [ { "name": "p_member", @@ -161916,7 +166267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4150792614, "return_value": { "type": "enum::RenderingDevice.TextureSwizzle" } @@ -161927,7 +166278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3833362581, "arguments": [ { "name": "p_member", @@ -161941,7 +166292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4150792614, "return_value": { "type": "enum::RenderingDevice.TextureSwizzle" } @@ -161952,7 +166303,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3833362581, "arguments": [ { "name": "p_member", @@ -161966,7 +166317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4150792614, "return_value": { "type": "enum::RenderingDevice.TextureSwizzle" } @@ -162023,7 +166374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1664894931, "arguments": [ { "name": "p_member", @@ -162037,7 +166388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 475470040, "return_value": { "type": "enum::RenderingDevice.UniformType" } @@ -162048,7 +166399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -162063,7 +166414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -162075,7 +166426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "id", @@ -162089,7 +166440,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_ids", @@ -162097,7 +166448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -162133,7 +166484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -162148,7 +166499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -162160,7 +166511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -162175,7 +166526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -162187,7 +166538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 565531219, "arguments": [ { "name": "p_member", @@ -162201,7 +166552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2235804183, "return_value": { "type": "enum::RenderingDevice.DataFormat" } @@ -162212,7 +166563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "p_member", @@ -162227,7 +166578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -162239,7 +166590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 522141836, "arguments": [ { "name": "p_member", @@ -162253,7 +166604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4154106413, "return_value": { "type": "enum::RenderingDevice.VertexFrequency" } @@ -162310,7 +166661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "seed", @@ -162325,7 +166676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint64" @@ -162337,7 +166688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "state", @@ -162352,7 +166703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -162364,7 +166715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint32" @@ -162376,7 +166727,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -162388,7 +166739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 437865044, + "hash": 2207676613, "return_value": { "type": "float", "meta": "float" @@ -162414,7 +166765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 4269894367, "return_value": { "type": "float", "meta": "float" @@ -162438,7 +166789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 50157827, "return_value": { "type": "int", "meta": "int32" @@ -162462,7 +166813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -162508,7 +166859,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -162520,7 +166871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -162532,7 +166883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -162544,7 +166895,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -162556,7 +166907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -162568,7 +166919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -162580,7 +166931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -162595,7 +166946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "minimum", @@ -162610,7 +166961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "maximum", @@ -162625,7 +166976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "step", @@ -162640,7 +166991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pagesize", @@ -162655,7 +167006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -162670,7 +167021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -162684,7 +167035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -162695,7 +167046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -162709,7 +167060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -162720,7 +167071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -162734,7 +167085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -162745,7 +167096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -162759,7 +167110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -162770,7 +167121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "with", @@ -162784,7 +167135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "signals": [ @@ -162887,7 +167238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -162901,7 +167252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -162912,7 +167263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "local_point", @@ -162926,7 +167277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -162937,7 +167288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -162948,7 +167299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_collider", @@ -162956,7 +167307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1981248198, "return_value": { "type": "Object" } @@ -162967,7 +167318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -162979,7 +167330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -162990,7 +167341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -163001,7 +167352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -163015,7 +167366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3090941106, "arguments": [ { "name": "node", @@ -163029,7 +167380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -163043,7 +167394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3090941106, "arguments": [ { "name": "node", @@ -163057,7 +167408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_collision_mask", @@ -163065,7 +167416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -163080,7 +167431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -163092,7 +167443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -163111,7 +167462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -163129,7 +167480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "mask", @@ -163143,7 +167494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163154,7 +167505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -163168,7 +167519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163179,7 +167530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -163193,7 +167544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163204,7 +167555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -163218,7 +167569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163289,7 +167640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -163303,7 +167654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163314,7 +167665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "local_point", @@ -163328,7 +167679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -163339,7 +167690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163350,7 +167701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_collider", @@ -163358,7 +167709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1981248198, "return_value": { "type": "Object" } @@ -163369,7 +167720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -163381,7 +167732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -163392,7 +167743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -163403,7 +167754,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -163417,7 +167768,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1976431078, "arguments": [ { "name": "node", @@ -163431,7 +167782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -163445,7 +167796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1976431078, "arguments": [ { "name": "node", @@ -163459,7 +167810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_collision_mask", @@ -163467,7 +167818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -163482,7 +167833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -163494,7 +167845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -163513,7 +167864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -163531,7 +167882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "mask", @@ -163545,7 +167896,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163556,7 +167907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -163570,7 +167921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163581,7 +167932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -163595,7 +167946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163606,7 +167957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -163620,7 +167971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163631,7 +167982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "debug_shape_custom_color", @@ -163645,7 +167996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -163656,7 +168007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "debug_shape_thickness", @@ -163671,7 +168022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -163757,7 +168108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -163771,7 +168122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -163800,7 +168151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -163811,7 +168162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -163822,7 +168173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -163842,7 +168193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -163853,7 +168204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -163867,7 +168218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -163879,7 +168230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "width", @@ -163894,7 +168245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -163905,7 +168256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -163947,6 +168298,7 @@ "enums": [ { "name": "UpdateMode", + "is_bitfield": false, "values": [ { "name": "UPDATE_ONCE", @@ -163960,6 +168312,7 @@ }, { "name": "AmbientMode", + "is_bitfield": false, "values": [ { "name": "AMBIENT_DISABLED", @@ -163983,7 +168336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "intensity", @@ -163998,7 +168351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -164010,7 +168363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1748981278, "arguments": [ { "name": "ambient", @@ -164024,7 +168377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1014607621, "return_value": { "type": "enum::ReflectionProbe.AmbientMode" } @@ -164035,7 +168388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "ambient", @@ -164049,7 +168402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -164060,7 +168413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ambient_energy", @@ -164075,7 +168428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -164087,7 +168440,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "max_distance", @@ -164102,7 +168455,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -164114,7 +168467,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "ratio", @@ -164129,7 +168482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -164141,7 +168494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -164155,7 +168508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -164166,7 +168519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "origin_offset", @@ -164180,7 +168533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -164191,7 +168544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -164205,7 +168558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164216,7 +168569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -164230,7 +168583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164241,7 +168594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -164255,7 +168608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164266,7 +168619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layers", @@ -164281,7 +168634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -164293,7 +168646,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4090221187, "arguments": [ { "name": "mode", @@ -164307,7 +168660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2367550552, "return_value": { "type": "enum::ReflectionProbe.UpdateMode" } @@ -164420,7 +168773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "compile", @@ -164428,7 +168781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -164445,7 +168798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3892018839, + "hash": 4087180739, "return_value": { "type": "RegExMatch" }, @@ -164474,7 +168827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3892018839, + "hash": 3354100289, "return_value": { "type": "Array" }, @@ -164503,7 +168856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4023896239, + "hash": 758293621, "return_value": { "type": "String" }, @@ -164541,7 +168894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164552,7 +168905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -164563,7 +168916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -164575,7 +168928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -164595,7 +168948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -164606,7 +168959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -164618,7 +168971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -164629,7 +168982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -164640,7 +168993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 687115856, "return_value": { "type": "String" }, @@ -164658,7 +169011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 490464691, "return_value": { "type": "int", "meta": "int32" @@ -164677,7 +169030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 490464691, "return_value": { "type": "int", "meta": "int32" @@ -164728,7 +169081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -164742,7 +169095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -164753,7 +169106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_use_global_coordinates", @@ -164761,7 +169114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_global_coordinates", @@ -164775,7 +169128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164786,7 +169139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "update_remote_position", @@ -164800,7 +169153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164811,7 +169164,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "update_remote_rotation", @@ -164825,7 +169178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164836,7 +169189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "update_remote_scale", @@ -164850,7 +169203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164907,7 +169260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -164921,7 +169274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -164932,7 +169285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_use_global_coordinates", @@ -164940,7 +169293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_global_coordinates", @@ -164954,7 +169307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164965,7 +169318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "update_remote_position", @@ -164979,7 +169332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -164990,7 +169343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "update_remote_rotation", @@ -165004,7 +169357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -165015,7 +169368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "update_remote_scale", @@ -165029,7 +169382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -165112,6 +169465,7 @@ "enums": [ { "name": "DeviceType", + "is_bitfield": false, "values": [ { "name": "DEVICE_TYPE_OTHER", @@ -165141,6 +169495,7 @@ }, { "name": "DriverResource", + "is_bitfield": false, "values": [ { "name": "DRIVER_RESOURCE_VULKAN_DEVICE", @@ -165198,6 +169553,7 @@ }, { "name": "DataFormat", + "is_bitfield": false, "values": [ { "name": "DATA_FORMAT_R4G4_UNORM_PACK8", @@ -166079,6 +170435,7 @@ }, { "name": "TextureType", + "is_bitfield": false, "values": [ { "name": "TEXTURE_TYPE_1D", @@ -166116,6 +170473,7 @@ }, { "name": "TextureSamples", + "is_bitfield": false, "values": [ { "name": "TEXTURE_SAMPLES_1", @@ -166153,6 +170511,7 @@ }, { "name": "TextureUsageBits", + "is_bitfield": false, "values": [ { "name": "TEXTURE_USAGE_SAMPLING_BIT", @@ -166198,6 +170557,7 @@ }, { "name": "TextureSwizzle", + "is_bitfield": false, "values": [ { "name": "TEXTURE_SWIZZLE_IDENTITY", @@ -166235,6 +170595,7 @@ }, { "name": "TextureSliceType", + "is_bitfield": false, "values": [ { "name": "TEXTURE_SLICE_2D", @@ -166252,6 +170613,7 @@ }, { "name": "SamplerFilter", + "is_bitfield": false, "values": [ { "name": "SAMPLER_FILTER_NEAREST", @@ -166265,6 +170627,7 @@ }, { "name": "SamplerRepeatMode", + "is_bitfield": false, "values": [ { "name": "SAMPLER_REPEAT_MODE_REPEAT", @@ -166294,6 +170657,7 @@ }, { "name": "SamplerBorderColor", + "is_bitfield": false, "values": [ { "name": "SAMPLER_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK", @@ -166327,6 +170691,7 @@ }, { "name": "VertexFrequency", + "is_bitfield": false, "values": [ { "name": "VERTEX_FREQUENCY_VERTEX", @@ -166340,6 +170705,7 @@ }, { "name": "IndexBufferFormat", + "is_bitfield": false, "values": [ { "name": "INDEX_BUFFER_FORMAT_UINT16", @@ -166353,6 +170719,7 @@ }, { "name": "StorageBufferUsage", + "is_bitfield": false, "values": [ { "name": "STORAGE_BUFFER_USAGE_DISPATCH_INDIRECT", @@ -166362,6 +170729,7 @@ }, { "name": "UniformType", + "is_bitfield": false, "values": [ { "name": "UNIFORM_TYPE_SAMPLER", @@ -166411,6 +170779,7 @@ }, { "name": "RenderPrimitive", + "is_bitfield": false, "values": [ { "name": "RENDER_PRIMITIVE_POINTS", @@ -166464,6 +170833,7 @@ }, { "name": "PolygonCullMode", + "is_bitfield": false, "values": [ { "name": "POLYGON_CULL_DISABLED", @@ -166481,6 +170851,7 @@ }, { "name": "PolygonFrontFace", + "is_bitfield": false, "values": [ { "name": "POLYGON_FRONT_FACE_CLOCKWISE", @@ -166494,6 +170865,7 @@ }, { "name": "StencilOperation", + "is_bitfield": false, "values": [ { "name": "STENCIL_OP_KEEP", @@ -166535,6 +170907,7 @@ }, { "name": "CompareOperator", + "is_bitfield": false, "values": [ { "name": "COMPARE_OP_NEVER", @@ -166576,6 +170949,7 @@ }, { "name": "LogicOperation", + "is_bitfield": false, "values": [ { "name": "LOGIC_OP_CLEAR", @@ -166649,6 +171023,7 @@ }, { "name": "BlendFactor", + "is_bitfield": false, "values": [ { "name": "BLEND_FACTOR_ZERO", @@ -166734,6 +171109,7 @@ }, { "name": "BlendOperation", + "is_bitfield": false, "values": [ { "name": "BLEND_OP_ADD", @@ -166763,6 +171139,7 @@ }, { "name": "PipelineDynamicStateFlags", + "is_bitfield": false, "values": [ { "name": "DYNAMIC_STATE_LINE_WIDTH", @@ -166796,6 +171173,7 @@ }, { "name": "InitialAction", + "is_bitfield": false, "values": [ { "name": "INITIAL_ACTION_CLEAR", @@ -166829,6 +171207,7 @@ }, { "name": "FinalAction", + "is_bitfield": false, "values": [ { "name": "FINAL_ACTION_READ", @@ -166850,6 +171229,7 @@ }, { "name": "ShaderStage", + "is_bitfield": false, "values": [ { "name": "SHADER_STAGE_VERTEX", @@ -166899,6 +171279,7 @@ }, { "name": "ShaderLanguage", + "is_bitfield": false, "values": [ { "name": "SHADER_LANGUAGE_GLSL", @@ -166912,6 +171293,7 @@ }, { "name": "PipelineSpecializationConstantType", + "is_bitfield": false, "values": [ { "name": "PIPELINE_SPECIALIZATION_CONSTANT_TYPE_BOOL", @@ -166929,6 +171311,7 @@ }, { "name": "Limit", + "is_bitfield": false, "values": [ { "name": "LIMIT_MAX_BOUND_UNIFORM_SETS", @@ -167074,6 +171457,7 @@ }, { "name": "MemoryType", + "is_bitfield": false, "values": [ { "name": "MEMORY_TEXTURES", @@ -167097,7 +171481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 3011278298, "return_value": { "type": "RID" }, @@ -167123,7 +171507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3178156134, "return_value": { "type": "RID" }, @@ -167144,7 +171528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1591541486, + "hash": 864132525, "return_value": { "type": "RID" }, @@ -167186,7 +171570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 259041867, "return_value": { "type": "enum::Error" }, @@ -167218,7 +171602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1859412099, "return_value": { "type": "PackedByteArray" }, @@ -167240,7 +171624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1616490902, "return_value": { "type": "bool" }, @@ -167262,7 +171646,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -167279,7 +171663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -167296,7 +171680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 183086801, + "hash": 4234145050, "return_value": { "type": "enum::Error" }, @@ -167355,7 +171739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 179529038, + "hash": 1993157964, "return_value": { "type": "enum::Error" }, @@ -167402,7 +171786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1429823113, "return_value": { "type": "enum::Error" }, @@ -167429,7 +171813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 2635475316, "return_value": { "type": "int", "meta": "int64" @@ -167453,7 +171837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1992489524, "return_value": { "type": "int", "meta": "int64" @@ -167481,7 +171865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297011, + "hash": 555930169, "return_value": { "type": "int", "meta": "int64" @@ -167500,7 +171884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 1036806638, "return_value": { "type": "enum::RenderingDevice.TextureSamples" }, @@ -167524,7 +171908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1450926197, + "hash": 1884747791, "return_value": { "type": "RID" }, @@ -167553,7 +171937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 452534725, "return_value": { "type": "RID" }, @@ -167586,7 +171970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3892018806, + "hash": 382373098, "return_value": { "type": "RID" }, @@ -167614,7 +171998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3917799429, "return_value": { "type": "int", "meta": "int64" @@ -167632,7 +172016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2327892535, "return_value": { "type": "RID" }, @@ -167649,7 +172033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1667512304, + "hash": 3491282828, "return_value": { "type": "RID" }, @@ -167677,7 +172061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1242678479, "return_value": { "type": "int", "meta": "int64" @@ -167695,7 +172079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 975915977, "return_value": { "type": "RID" }, @@ -167727,7 +172111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2256026069, "return_value": { "type": "RID" }, @@ -167754,7 +172138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3459523685, "return_value": { "type": "RDShaderSPIRV" }, @@ -167776,7 +172160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 1395027180, "return_value": { "type": "PackedByteArray" }, @@ -167798,7 +172182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3297482566, "return_value": { "type": "RID" }, @@ -167820,7 +172204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3049171473, "return_value": { "type": "RID" }, @@ -167837,7 +172221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3917799429, "return_value": { "type": "int", "meta": "uint32" @@ -167855,7 +172239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 1453158401, "return_value": { "type": "RID" }, @@ -167878,7 +172262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1667512304, + "hash": 595994205, "return_value": { "type": "RID" }, @@ -167907,7 +172291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2344087557, "return_value": { "type": "RID" }, @@ -167934,7 +172318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2280795797, "return_value": { "type": "RID" }, @@ -167960,7 +172344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -167977,7 +172361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 177157196, + "hash": 857091402, "return_value": { "type": "enum::Error" }, @@ -168014,7 +172398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 3627474756, "return_value": { "type": "enum::Error" }, @@ -168047,7 +172431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1102329001, "return_value": { "type": "PackedByteArray" }, @@ -168064,7 +172448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3182769428, + "hash": 3544722194, "return_value": { "type": "RID" }, @@ -168128,7 +172512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -168145,7 +172529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 403593840, "return_value": { "type": "RID" }, @@ -168167,7 +172551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -168184,7 +172568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "int32" @@ -168204,7 +172588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297044, + "hash": 1591665591, "return_value": { "type": "int", "meta": "int32" @@ -168224,7 +172608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -168236,7 +172620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1026930992, + "hash": 3988079995, "return_value": { "type": "int", "meta": "int64" @@ -168261,7 +172645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1675494101, + "hash": 4252992020, "return_value": { "type": "int", "meta": "int64" @@ -168322,7 +172706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3629806550, + "hash": 832527510, "return_value": { "type": "PackedInt64Array" }, @@ -168387,7 +172771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4040184819, "arguments": [ { "name": "draw_list", @@ -168406,7 +172790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 749655778, "arguments": [ { "name": "draw_list", @@ -168430,7 +172814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4040184819, "arguments": [ { "name": "draw_list", @@ -168449,7 +172833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4040184819, "arguments": [ { "name": "draw_list", @@ -168468,7 +172852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2772371345, "arguments": [ { "name": "draw_list", @@ -168492,7 +172876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 3710874499, "arguments": [ { "name": "draw_list", @@ -168522,7 +172906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 338791288, "arguments": [ { "name": "draw_list", @@ -168542,7 +172926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "draw_list", @@ -168557,7 +172941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int64" @@ -168569,7 +172953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2865087369, "return_value": { "type": "PackedInt64Array" }, @@ -168587,7 +172971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3497074714, + "hash": 2829508664, "arguments": [ { "name": "post_barrier", @@ -168603,7 +172987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 968564752, "return_value": { "type": "int", "meta": "int64" @@ -168622,7 +173006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4040184819, "arguments": [ { "name": "compute_list", @@ -168641,7 +173025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2772371345, "arguments": [ { "name": "compute_list", @@ -168665,7 +173049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 749655778, "arguments": [ { "name": "compute_list", @@ -168689,7 +173073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4275841770, "arguments": [ { "name": "compute_list", @@ -168719,7 +173103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "compute_list", @@ -168734,7 +173118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3497074714, + "hash": 2829508664, "arguments": [ { "name": "post_barrier", @@ -168750,7 +173134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -168764,7 +173148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -168778,7 +173162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -168790,7 +173174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -168802,7 +173186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint64" @@ -168821,7 +173205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint64" @@ -168840,7 +173224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -168854,11 +173238,11 @@ }, { "name": "limit_get", - "is_const": false, + "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1559202131, "return_value": { "type": "int", "meta": "uint64" @@ -168876,7 +173260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -168888,7 +173272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "sync", @@ -168896,7 +173280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "barrier", @@ -168904,7 +173288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2843466479, + "hash": 3979627413, "arguments": [ { "name": "from", @@ -168926,7 +173310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create_local_device", @@ -168934,7 +173318,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2846302423, "return_value": { "type": "RenderingDevice" } @@ -168945,7 +173329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "id", @@ -168963,7 +173347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1636512886, "arguments": [ { "name": "name", @@ -168981,7 +173365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1636512886, "arguments": [ { "name": "name", @@ -168999,7 +173383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_device_vendor_name", @@ -169007,7 +173391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -169018,7 +173402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -169029,7 +173413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -169040,7 +173424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 251690689, "return_value": { "type": "int", "meta": "uint64" @@ -169058,7 +173442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 501815484, "return_value": { "type": "int", "meta": "uint64" @@ -169152,6 +173536,7 @@ "enums": [ { "name": "TextureLayeredType", + "is_bitfield": false, "values": [ { "name": "TEXTURE_LAYERED_2D_ARRAY", @@ -169169,6 +173554,7 @@ }, { "name": "CubeMapLayer", + "is_bitfield": false, "values": [ { "name": "CUBEMAP_LAYER_LEFT", @@ -169198,6 +173584,7 @@ }, { "name": "ShaderMode", + "is_bitfield": false, "values": [ { "name": "SHADER_SPATIAL", @@ -169227,6 +173614,7 @@ }, { "name": "ArrayType", + "is_bitfield": false, "values": [ { "name": "ARRAY_VERTEX", @@ -169288,6 +173676,7 @@ }, { "name": "ArrayCustomFormat", + "is_bitfield": false, "values": [ { "name": "ARRAY_CUSTOM_RGBA8_UNORM", @@ -169329,6 +173718,7 @@ }, { "name": "ArrayFormat", + "is_bitfield": false, "values": [ { "name": "ARRAY_FORMAT_VERTEX", @@ -169434,6 +173824,7 @@ }, { "name": "PrimitiveType", + "is_bitfield": false, "values": [ { "name": "PRIMITIVE_POINTS", @@ -169463,6 +173854,7 @@ }, { "name": "BlendShapeMode", + "is_bitfield": false, "values": [ { "name": "BLEND_SHAPE_MODE_NORMALIZED", @@ -169476,6 +173868,7 @@ }, { "name": "MultimeshTransformFormat", + "is_bitfield": false, "values": [ { "name": "MULTIMESH_TRANSFORM_2D", @@ -169489,6 +173882,7 @@ }, { "name": "LightProjectorFilter", + "is_bitfield": false, "values": [ { "name": "LIGHT_PROJECTOR_FILTER_NEAREST", @@ -169514,6 +173908,7 @@ }, { "name": "LightType", + "is_bitfield": false, "values": [ { "name": "LIGHT_DIRECTIONAL", @@ -169531,6 +173926,7 @@ }, { "name": "LightParam", + "is_bitfield": false, "values": [ { "name": "LIGHT_PARAM_ENERGY", @@ -169616,6 +174012,7 @@ }, { "name": "LightBakeMode", + "is_bitfield": false, "values": [ { "name": "LIGHT_BAKE_DISABLED", @@ -169633,6 +174030,7 @@ }, { "name": "LightOmniShadowMode", + "is_bitfield": false, "values": [ { "name": "LIGHT_OMNI_SHADOW_DUAL_PARABOLOID", @@ -169646,6 +174044,7 @@ }, { "name": "LightDirectionalShadowMode", + "is_bitfield": false, "values": [ { "name": "LIGHT_DIRECTIONAL_SHADOW_ORTHOGONAL", @@ -169663,6 +174062,7 @@ }, { "name": "LightDirectionalSkyMode", + "is_bitfield": false, "values": [ { "name": "LIGHT_DIRECTIONAL_SKY_MODE_LIGHT_AND_SKY", @@ -169680,6 +174080,7 @@ }, { "name": "ShadowQuality", + "is_bitfield": false, "values": [ { "name": "SHADOW_QUALITY_HARD", @@ -169713,6 +174114,7 @@ }, { "name": "ReflectionProbeUpdateMode", + "is_bitfield": false, "values": [ { "name": "REFLECTION_PROBE_UPDATE_ONCE", @@ -169726,6 +174128,7 @@ }, { "name": "ReflectionProbeAmbientMode", + "is_bitfield": false, "values": [ { "name": "REFLECTION_PROBE_AMBIENT_DISABLED", @@ -169743,6 +174146,7 @@ }, { "name": "DecalTexture", + "is_bitfield": false, "values": [ { "name": "DECAL_TEXTURE_ALBEDO", @@ -169768,6 +174172,7 @@ }, { "name": "DecalFilter", + "is_bitfield": false, "values": [ { "name": "DECAL_FILTER_NEAREST", @@ -169793,6 +174198,7 @@ }, { "name": "VoxelGIQuality", + "is_bitfield": false, "values": [ { "name": "VOXEL_GI_QUALITY_LOW", @@ -169806,6 +174212,7 @@ }, { "name": "ParticlesMode", + "is_bitfield": false, "values": [ { "name": "PARTICLES_MODE_2D", @@ -169819,6 +174226,7 @@ }, { "name": "ParticlesTransformAlign", + "is_bitfield": false, "values": [ { "name": "PARTICLES_TRANSFORM_ALIGN_DISABLED", @@ -169840,6 +174248,7 @@ }, { "name": "ParticlesDrawOrder", + "is_bitfield": false, "values": [ { "name": "PARTICLES_DRAW_ORDER_INDEX", @@ -169861,6 +174270,7 @@ }, { "name": "ParticlesCollisionType", + "is_bitfield": false, "values": [ { "name": "PARTICLES_COLLISION_TYPE_SPHERE_ATTRACT", @@ -169894,6 +174304,7 @@ }, { "name": "ParticlesCollisionHeightfieldResolution", + "is_bitfield": false, "values": [ { "name": "PARTICLES_COLLISION_HEIGHTFIELD_RESOLUTION_256", @@ -169927,6 +174338,7 @@ }, { "name": "FogVolumeShape", + "is_bitfield": false, "values": [ { "name": "FOG_VOLUME_SHAPE_ELLIPSOID", @@ -169956,6 +174368,7 @@ }, { "name": "ViewportScaling3DMode", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_SCALING_3D_MODE_BILINEAR", @@ -169973,6 +174386,7 @@ }, { "name": "ViewportUpdateMode", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_UPDATE_DISABLED", @@ -169998,6 +174412,7 @@ }, { "name": "ViewportClearMode", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_CLEAR_ALWAYS", @@ -170015,6 +174430,7 @@ }, { "name": "ViewportSDFOversize", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_SDF_OVERSIZE_100_PERCENT", @@ -170040,6 +174456,7 @@ }, { "name": "ViewportSDFScale", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_SDF_SCALE_100_PERCENT", @@ -170061,6 +174478,7 @@ }, { "name": "ViewportMSAA", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_MSAA_DISABLED", @@ -170086,6 +174504,7 @@ }, { "name": "ViewportScreenSpaceAA", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_SCREEN_SPACE_AA_DISABLED", @@ -170103,6 +174522,7 @@ }, { "name": "ViewportOcclusionCullingBuildQuality", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_OCCLUSION_BUILD_QUALITY_LOW", @@ -170120,6 +174540,7 @@ }, { "name": "ViewportRenderInfo", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME", @@ -170141,6 +174562,7 @@ }, { "name": "ViewportRenderInfoType", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_RENDER_INFO_TYPE_VISIBLE", @@ -170158,6 +174580,7 @@ }, { "name": "ViewportDebugDraw", + "is_bitfield": false, "values": [ { "name": "VIEWPORT_DEBUG_DRAW_DISABLED", @@ -170265,8 +174688,31 @@ } ] }, + { + "name": "ViewportVRSMode", + "is_bitfield": false, + "values": [ + { + "name": "VIEWPORT_VRS_DISABLED", + "value": 0 + }, + { + "name": "VIEWPORT_VRS_TEXTURE", + "value": 1 + }, + { + "name": "VIEWPORT_VRS_XR", + "value": 2 + }, + { + "name": "VIEWPORT_VRS_MAX", + "value": 3 + } + ] + }, { "name": "SkyMode", + "is_bitfield": false, "values": [ { "name": "SKY_MODE_AUTOMATIC", @@ -170288,6 +174734,7 @@ }, { "name": "EnvironmentBG", + "is_bitfield": false, "values": [ { "name": "ENV_BG_CLEAR_COLOR", @@ -170321,6 +174768,7 @@ }, { "name": "EnvironmentAmbientSource", + "is_bitfield": false, "values": [ { "name": "ENV_AMBIENT_SOURCE_BG", @@ -170342,6 +174790,7 @@ }, { "name": "EnvironmentReflectionSource", + "is_bitfield": false, "values": [ { "name": "ENV_REFLECTION_SOURCE_BG", @@ -170359,6 +174808,7 @@ }, { "name": "EnvironmentGlowBlendMode", + "is_bitfield": false, "values": [ { "name": "ENV_GLOW_BLEND_MODE_ADDITIVE", @@ -170384,6 +174834,7 @@ }, { "name": "EnvironmentToneMapper", + "is_bitfield": false, "values": [ { "name": "ENV_TONE_MAPPER_LINEAR", @@ -170405,6 +174856,7 @@ }, { "name": "EnvironmentSSRRoughnessQuality", + "is_bitfield": false, "values": [ { "name": "ENV_SSR_ROUGHNESS_QUALITY_DISABLED", @@ -170426,6 +174878,7 @@ }, { "name": "EnvironmentSSAOQuality", + "is_bitfield": false, "values": [ { "name": "ENV_SSAO_QUALITY_VERY_LOW", @@ -170451,6 +174904,7 @@ }, { "name": "EnvironmentSSILQuality", + "is_bitfield": false, "values": [ { "name": "ENV_SSIL_QUALITY_VERY_LOW", @@ -170476,6 +174930,7 @@ }, { "name": "EnvironmentSDFGIYScale", + "is_bitfield": false, "values": [ { "name": "ENV_SDFGI_Y_SCALE_50_PERCENT", @@ -170493,6 +174948,7 @@ }, { "name": "EnvironmentSDFGIRayCount", + "is_bitfield": false, "values": [ { "name": "ENV_SDFGI_RAY_COUNT_4", @@ -170530,6 +174986,7 @@ }, { "name": "EnvironmentSDFGIFramesToConverge", + "is_bitfield": false, "values": [ { "name": "ENV_SDFGI_CONVERGE_IN_5_FRAMES", @@ -170563,6 +175020,7 @@ }, { "name": "EnvironmentSDFGIFramesToUpdateLight", + "is_bitfield": false, "values": [ { "name": "ENV_SDFGI_UPDATE_LIGHT_IN_1_FRAME", @@ -170592,6 +175050,7 @@ }, { "name": "SubSurfaceScatteringQuality", + "is_bitfield": false, "values": [ { "name": "SUB_SURFACE_SCATTERING_QUALITY_DISABLED", @@ -170613,6 +175072,7 @@ }, { "name": "DOFBokehShape", + "is_bitfield": false, "values": [ { "name": "DOF_BOKEH_BOX", @@ -170630,6 +175090,7 @@ }, { "name": "DOFBlurQuality", + "is_bitfield": false, "values": [ { "name": "DOF_BLUR_QUALITY_VERY_LOW", @@ -170651,6 +175112,7 @@ }, { "name": "InstanceType", + "is_bitfield": false, "values": [ { "name": "INSTANCE_NONE", @@ -170716,6 +175178,7 @@ }, { "name": "InstanceFlags", + "is_bitfield": false, "values": [ { "name": "INSTANCE_FLAG_USE_BAKED_LIGHT", @@ -170741,6 +175204,7 @@ }, { "name": "ShadowCastingSetting", + "is_bitfield": false, "values": [ { "name": "SHADOW_CASTING_SETTING_OFF", @@ -170762,6 +175226,7 @@ }, { "name": "VisibilityRangeFadeMode", + "is_bitfield": false, "values": [ { "name": "VISIBILITY_RANGE_FADE_DISABLED", @@ -170779,6 +175244,7 @@ }, { "name": "BakeChannels", + "is_bitfield": false, "values": [ { "name": "BAKE_CHANNEL_ALBEDO_ALPHA", @@ -170800,6 +175266,7 @@ }, { "name": "CanvasTextureChannel", + "is_bitfield": false, "values": [ { "name": "CANVAS_TEXTURE_CHANNEL_DIFFUSE", @@ -170817,6 +175284,7 @@ }, { "name": "NinePatchAxisMode", + "is_bitfield": false, "values": [ { "name": "NINE_PATCH_STRETCH", @@ -170834,6 +175302,7 @@ }, { "name": "CanvasItemTextureFilter", + "is_bitfield": false, "values": [ { "name": "CANVAS_ITEM_TEXTURE_FILTER_DEFAULT", @@ -170871,6 +175340,7 @@ }, { "name": "CanvasItemTextureRepeat", + "is_bitfield": false, "values": [ { "name": "CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT", @@ -170896,6 +175366,7 @@ }, { "name": "CanvasGroupMode", + "is_bitfield": false, "values": [ { "name": "CANVAS_GROUP_MODE_DISABLED", @@ -170913,6 +175384,7 @@ }, { "name": "CanvasLightMode", + "is_bitfield": false, "values": [ { "name": "CANVAS_LIGHT_MODE_POINT", @@ -170926,6 +175398,7 @@ }, { "name": "CanvasLightBlendMode", + "is_bitfield": false, "values": [ { "name": "CANVAS_LIGHT_BLEND_MODE_ADD", @@ -170943,6 +175416,7 @@ }, { "name": "CanvasLightShadowFilter", + "is_bitfield": false, "values": [ { "name": "CANVAS_LIGHT_FILTER_NONE", @@ -170964,6 +175438,7 @@ }, { "name": "CanvasOccluderPolygonCullMode", + "is_bitfield": false, "values": [ { "name": "CANVAS_OCCLUDER_POLYGON_CULL_DISABLED", @@ -170980,7 +175455,8 @@ ] }, { - "name": "GlobalVariableType", + "name": "GlobalShaderUniformType", + "is_bitfield": false, "values": [ { "name": "GLOBAL_VAR_TYPE_BOOL", @@ -171102,6 +175578,7 @@ }, { "name": "RenderingInfo", + "is_bitfield": false, "values": [ { "name": "RENDERING_INFO_TOTAL_OBJECTS_IN_FRAME", @@ -171131,6 +175608,7 @@ }, { "name": "Features", + "is_bitfield": false, "values": [ { "name": "FEATURE_SHADERS", @@ -171150,7 +175628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2010018390, "return_value": { "type": "RID" }, @@ -171167,7 +175645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 913689023, "return_value": { "type": "RID" }, @@ -171188,7 +175666,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135553772, + "hash": 4036838706, "return_value": { "type": "RID" }, @@ -171228,7 +175706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 41030802, "return_value": { "type": "RID" }, @@ -171245,7 +175723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 999539803, "arguments": [ { "name": "texture", @@ -171268,7 +175746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 684822712, "arguments": [ { "name": "texture", @@ -171286,7 +175764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "texture", @@ -171304,7 +175782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -171315,7 +175793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1394585590, "return_value": { "type": "RID" }, @@ -171332,7 +175810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -171343,7 +175821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4206205781, "return_value": { "type": "Image" }, @@ -171360,7 +175838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2705440895, "return_value": { "type": "Image" }, @@ -171382,7 +175860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -171399,7 +175877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "texture", @@ -171417,7 +175895,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4288446313, "arguments": [ { "name": "texture", @@ -171441,7 +175919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "texture", @@ -171459,7 +175937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 642473191, "return_value": { "type": "String" }, @@ -171476,7 +175954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "texture", @@ -171494,18 +175972,54 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } }, + { + "name": "shader_set_code", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2726140452, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "code", + "type": "String" + } + ] + }, + { + "name": "shader_set_path_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2726140452, + "arguments": [ + { + "name": "shader", + "type": "RID" + }, + { + "name": "path", + "type": "String" + } + ] + }, { "name": "shader_get_code", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 642473191, "return_value": { "type": "String" }, @@ -171522,7 +176036,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -171539,7 +176053,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2621281810, "return_value": { "type": "Variant" }, @@ -171560,7 +176074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 3864903085, "arguments": [ { "name": "shader", @@ -171588,7 +176102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 2523186822, "return_value": { "type": "RID" }, @@ -171615,7 +176129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -171626,7 +176140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "shader_material", @@ -171644,7 +176158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3477296213, "arguments": [ { "name": "material", @@ -171666,7 +176180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2621281810, "return_value": { "type": "Variant" }, @@ -171687,7 +176201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "material", @@ -171706,7 +176220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "material", @@ -171724,7 +176238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 4007581507, "return_value": { "type": "RID" }, @@ -171747,7 +176261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -171758,7 +176272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 864943070, "return_value": { "type": "int", "meta": "uint32" @@ -171787,7 +176301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "uint32" @@ -171811,7 +176325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "uint32" @@ -171835,7 +176349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "uint32" @@ -171859,7 +176373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1217542888, "arguments": [ { "name": "mesh", @@ -171877,7 +176391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626862, + "hash": 2954797512, "arguments": [ { "name": "mesh", @@ -171915,7 +176429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -171933,7 +176447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1294662092, "arguments": [ { "name": "mesh", @@ -171951,7 +176465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4282291819, "return_value": { "type": "enum::RenderingServer.BlendShapeMode" }, @@ -171968,7 +176482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "mesh", @@ -171991,7 +176505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1066463050, "return_value": { "type": "RID" }, @@ -172013,7 +176527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 186674697, "return_value": { "type": "Dictionary" }, @@ -172035,7 +176549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1778388067, "return_value": { "type": "Array" }, @@ -172057,7 +176571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1778388067, "return_value": { "type": "Array" }, @@ -172079,7 +176593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -172097,7 +176611,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3696536120, "arguments": [ { "name": "mesh", @@ -172115,7 +176629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 974181306, "return_value": { "type": "AABB" }, @@ -172132,7 +176646,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "mesh", @@ -172146,7 +176660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2900195149, "arguments": [ { "name": "mesh", @@ -172174,7 +176688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2900195149, "arguments": [ { "name": "mesh", @@ -172202,7 +176716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2900195149, "arguments": [ { "name": "mesh", @@ -172230,7 +176744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "mesh", @@ -172248,7 +176762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -172259,7 +176773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 283685892, "arguments": [ { "name": "multimesh", @@ -172292,7 +176806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -172310,7 +176824,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "multimesh", @@ -172328,7 +176842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 675327471, "arguments": [ { "name": "multimesh", @@ -172351,7 +176865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 736082694, "arguments": [ { "name": "multimesh", @@ -172374,7 +176888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 176975443, "arguments": [ { "name": "multimesh", @@ -172397,7 +176911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 176975443, "arguments": [ { "name": "multimesh", @@ -172420,7 +176934,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -172437,7 +176951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 974181306, "return_value": { "type": "AABB" }, @@ -172454,7 +176968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1050775521, "return_value": { "type": "Transform3D" }, @@ -172476,7 +176990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1324854622, "return_value": { "type": "Transform2D" }, @@ -172498,7 +177012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2946315076, "return_value": { "type": "Color" }, @@ -172520,7 +177034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2946315076, "return_value": { "type": "Color" }, @@ -172542,7 +177056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "multimesh", @@ -172561,7 +177075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -172579,7 +177093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2960552364, "arguments": [ { "name": "multimesh", @@ -172597,7 +177111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3964669176, "return_value": { "type": "PackedFloat32Array" }, @@ -172614,7 +177128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -172625,7 +177139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1904426712, "arguments": [ { "name": "skeleton", @@ -172649,7 +177163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int32" @@ -172667,7 +177181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 675327471, "arguments": [ { "name": "skeleton", @@ -172690,7 +177204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1050775521, "return_value": { "type": "Transform3D" }, @@ -172712,7 +177226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 736082694, "arguments": [ { "name": "skeleton", @@ -172735,7 +177249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1324854622, "return_value": { "type": "Transform2D" }, @@ -172757,7 +177271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "skeleton", @@ -172775,7 +177289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -172786,7 +177300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -172797,7 +177311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -172808,7 +177322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "light", @@ -172826,7 +177340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 501936875, "arguments": [ { "name": "light", @@ -172849,7 +177363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "light", @@ -172867,7 +177381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "light", @@ -172885,7 +177399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "light", @@ -172903,7 +177417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "light", @@ -172922,7 +177436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1622292572, "arguments": [ { "name": "decal", @@ -172955,7 +177469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "light", @@ -172973,7 +177487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1048525260, "arguments": [ { "name": "light", @@ -172991,7 +177505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "light", @@ -173010,7 +177524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2552677200, "arguments": [ { "name": "light", @@ -173028,7 +177542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 380462970, "arguments": [ { "name": "light", @@ -173046,7 +177560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "light", @@ -173064,7 +177578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2559740754, "arguments": [ { "name": "light", @@ -173082,7 +177596,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 43944325, "arguments": [ { "name": "filter", @@ -173091,12 +177605,12 @@ ] }, { - "name": "shadows_quality_set", + "name": "positional_soft_shadow_filter_set_quality", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3613045266, "arguments": [ { "name": "quality", @@ -173105,12 +177619,12 @@ ] }, { - "name": "directional_shadow_quality_set", + "name": "directional_soft_shadow_filter_set_quality", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3613045266, "arguments": [ { "name": "quality", @@ -173124,7 +177638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "size", @@ -173143,7 +177657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -173154,7 +177668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3853670147, "arguments": [ { "name": "probe", @@ -173172,7 +177686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "probe", @@ -173191,7 +177705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 184163074, "arguments": [ { "name": "probe", @@ -173209,7 +177723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "probe", @@ -173227,7 +177741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "probe", @@ -173246,7 +177760,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "probe", @@ -173265,7 +177779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "probe", @@ -173283,7 +177797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "probe", @@ -173301,7 +177815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "probe", @@ -173319,7 +177833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "probe", @@ -173337,7 +177851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "probe", @@ -173355,7 +177869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "probe", @@ -173374,7 +177888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "probe", @@ -173393,7 +177907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "probe", @@ -173412,7 +177926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -173423,7 +177937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "decal", @@ -173441,7 +177955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3953344054, "arguments": [ { "name": "decal", @@ -173463,7 +177977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "decal", @@ -173482,7 +177996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "decal", @@ -173501,7 +178015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "decal", @@ -173519,7 +178033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "decal", @@ -173538,7 +178052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2972769666, "arguments": [ { "name": "decal", @@ -173566,7 +178080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2513314492, "arguments": [ { "name": "decal", @@ -173590,7 +178104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "decal", @@ -173609,7 +178123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3519875702, "arguments": [ { "name": "filter", @@ -173623,7 +178137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "half_resolution", @@ -173637,7 +178151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -173648,7 +178162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134439725, + "hash": 4108223027, "arguments": [ { "name": "voxel_gi", @@ -173690,7 +178204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2607699645, "return_value": { "type": "Vector3i" }, @@ -173707,7 +178221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3348040486, "return_value": { "type": "PackedByteArray" }, @@ -173724,7 +178238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3348040486, "return_value": { "type": "PackedByteArray" }, @@ -173741,7 +178255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3348040486, "return_value": { "type": "PackedByteArray" }, @@ -173758,7 +178272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 788230395, "return_value": { "type": "PackedInt32Array" }, @@ -173775,7 +178289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1128465797, "return_value": { "type": "Transform3D" }, @@ -173792,7 +178306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "voxel_gi", @@ -173811,7 +178325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "voxel_gi", @@ -173830,7 +178344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "voxel_gi", @@ -173849,7 +178363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "voxel_gi", @@ -173868,7 +178382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "voxel_gi", @@ -173887,7 +178401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "voxel_gi", @@ -173905,7 +178419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "voxel_gi", @@ -173923,7 +178437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1538689978, "arguments": [ { "name": "quality", @@ -173937,7 +178451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -173948,7 +178462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2646464759, "arguments": [ { "name": "lightmap", @@ -173970,7 +178484,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3696536120, "arguments": [ { "name": "lightmap", @@ -173988,7 +178502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "lightmap", @@ -174006,7 +178520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 3217845880, "arguments": [ { "name": "lightmap", @@ -174036,7 +178550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 808965560, "return_value": { "type": "PackedVector3Array" }, @@ -174053,7 +178567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1569415609, "return_value": { "type": "PackedColorArray" }, @@ -174070,7 +178584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 788230395, "return_value": { "type": "PackedInt32Array" }, @@ -174087,7 +178601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 788230395, "return_value": { "type": "PackedInt32Array" }, @@ -174104,7 +178618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "speed", @@ -174119,7 +178633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -174130,7 +178644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3492270028, "arguments": [ { "name": "particles", @@ -174148,7 +178662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "particles", @@ -174166,7 +178680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -174183,7 +178697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "particles", @@ -174202,7 +178716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles", @@ -174221,7 +178735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "particles", @@ -174239,7 +178753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles", @@ -174258,7 +178772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles", @@ -174277,7 +178791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles", @@ -174296,7 +178810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3696536120, "arguments": [ { "name": "particles", @@ -174314,7 +178828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles", @@ -174333,7 +178847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "particles", @@ -174351,7 +178865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "particles", @@ -174369,7 +178883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "particles", @@ -174388,7 +178902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "particles", @@ -174406,7 +178920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "particles", @@ -174424,7 +178938,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles", @@ -174443,7 +178957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3264971368, "arguments": [ { "name": "particles", @@ -174461,7 +178975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2010054925, "arguments": [ { "name": "particles", @@ -174484,7 +178998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 684822712, "arguments": [ { "name": "particles", @@ -174502,7 +179016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -174519,7 +179033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "particles", @@ -174533,7 +179047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "particles", @@ -174547,7 +179061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "particles", @@ -174565,7 +179079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 4043136117, "arguments": [ { "name": "particles", @@ -174600,7 +179114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 935028487, "arguments": [ { "name": "particles", @@ -174618,7 +179132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "particles", @@ -174637,7 +179151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "particles", @@ -174660,7 +179174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3952830260, "return_value": { "type": "AABB" }, @@ -174677,7 +179191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3935195649, "arguments": [ { "name": "particles", @@ -174695,7 +179209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -174706,7 +179220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1497044930, "arguments": [ { "name": "particles_collision", @@ -174724,7 +179238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "particles_collision", @@ -174743,7 +179257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles_collision", @@ -174762,7 +179276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "particles_collision", @@ -174780,7 +179294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles_collision", @@ -174799,7 +179313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles_collision", @@ -174818,7 +179332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "particles_collision", @@ -174837,7 +179351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "particles_collision", @@ -174855,7 +179369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "particles_collision", @@ -174869,7 +179383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 962977297, "arguments": [ { "name": "particles_collision", @@ -174887,7 +179401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -174898,7 +179412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3818703106, "arguments": [ { "name": "fog_volume", @@ -174916,7 +179430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3227306858, "arguments": [ { "name": "fog_volume", @@ -174934,7 +179448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "fog_volume", @@ -174952,7 +179466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -174963,7 +179477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3696536120, "arguments": [ { "name": "notifier", @@ -174981,7 +179495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2689735388, "arguments": [ { "name": "notifier", @@ -175003,7 +179517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -175014,7 +179528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3854404263, "arguments": [ { "name": "occluder", @@ -175036,7 +179550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -175047,7 +179561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 157498339, "arguments": [ { "name": "camera", @@ -175076,7 +179590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 157498339, "arguments": [ { "name": "camera", @@ -175105,7 +179619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 1889878953, "arguments": [ { "name": "camera", @@ -175138,7 +179652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3935195649, "arguments": [ { "name": "camera", @@ -175156,7 +179670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "camera", @@ -175175,7 +179689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "camera", @@ -175193,7 +179707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "camera", @@ -175211,7 +179725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "camera", @@ -175229,7 +179743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -175240,7 +179754,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175258,7 +179772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4288446313, "arguments": [ { "name": "viewport", @@ -175282,7 +179796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175300,7 +179814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "viewport", @@ -175318,7 +179832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1174500091, + "hash": 1278520651, "arguments": [ { "name": "viewport", @@ -175343,7 +179857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175361,7 +179875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2386524376, "arguments": [ { "name": "viewport", @@ -175379,7 +179893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "viewport", @@ -175398,7 +179912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "viewport", @@ -175412,12 +179926,12 @@ ] }, { - "name": "viewport_set_fsr_mipmap_bias", + "name": "viewport_set_texture_mipmap_bias", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "viewport", @@ -175436,7 +179950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3161116010, "arguments": [ { "name": "viewport", @@ -175454,7 +179968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3628367896, "arguments": [ { "name": "viewport", @@ -175472,7 +179986,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -175489,7 +180003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175507,7 +180021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175525,7 +180039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175543,7 +180057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "viewport", @@ -175561,7 +180075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "viewport", @@ -175579,7 +180093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "viewport", @@ -175597,7 +180111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "viewport", @@ -175615,7 +180129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175633,7 +180147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175651,7 +180165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1155129294, "arguments": [ { "name": "viewport", @@ -175669,7 +180183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1652956681, "arguments": [ { "name": "viewport", @@ -175687,7 +180201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3608606053, "arguments": [ { "name": "viewport", @@ -175709,7 +180223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3713930247, "arguments": [ { "name": "viewport", @@ -175737,7 +180251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175755,7 +180269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "viewport", @@ -175773,7 +180287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1329198632, "arguments": [ { "name": "viewport", @@ -175790,12 +180304,12 @@ ] }, { - "name": "viewport_set_shadow_atlas_size", + "name": "viewport_set_positional_shadow_atlas_size", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1904426712, "arguments": [ { "name": "viewport", @@ -175814,12 +180328,12 @@ ] }, { - "name": "viewport_set_shadow_atlas_quadrant_subdivision", + "name": "viewport_set_positional_shadow_atlas_quadrant_subdivision", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4288446313, "arguments": [ { "name": "viewport", @@ -175843,7 +180357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3764433340, "arguments": [ { "name": "viewport", @@ -175861,7 +180375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1447279591, "arguments": [ { "name": "viewport", @@ -175879,7 +180393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175897,7 +180411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175915,7 +180429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -175933,7 +180447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "rays_per_thread", @@ -175948,7 +180462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2069725696, "arguments": [ { "name": "quality", @@ -175962,7 +180476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2041262392, "return_value": { "type": "int", "meta": "int32" @@ -175988,7 +180502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2089420930, "arguments": [ { "name": "viewport", @@ -176006,7 +180520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "viewport", @@ -176024,7 +180538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -176042,7 +180556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -176054,13 +180568,49 @@ } ] }, + { + "name": "viewport_set_vrs_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 398809874, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "mode", + "type": "enum::RenderingServer.ViewportVRSMode" + } + ] + }, + { + "name": "viewport_set_vrs_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 395945892, + "arguments": [ + { + "name": "viewport", + "type": "RID" + }, + { + "name": "texture", + "type": "RID" + } + ] + }, { "name": "sky_create", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -176071,7 +180621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "sky", @@ -176090,7 +180640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3279019937, "arguments": [ { "name": "sky", @@ -176108,7 +180658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "sky", @@ -176126,7 +180676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 3875285818, "return_value": { "type": "Image" }, @@ -176156,7 +180706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -176167,7 +180717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937328877, "arguments": [ { "name": "env", @@ -176185,7 +180735,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "env", @@ -176203,7 +180753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "env", @@ -176222,7 +180772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1735850857, "arguments": [ { "name": "env", @@ -176240,7 +180790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "env", @@ -176258,7 +180808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "env", @@ -176277,7 +180827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "env", @@ -176296,7 +180846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4156840276, + "hash": 362573166, "arguments": [ { "name": "env", @@ -176336,7 +180886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134619410, + "hash": 2421724940, "arguments": [ { "name": "env", @@ -176406,7 +180956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134475662, + "hash": 2732704897, "arguments": [ { "name": "env", @@ -176458,7 +181008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134403788, + "hash": 876799838, "arguments": [ { "name": "env", @@ -176499,7 +181049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 3607294374, "arguments": [ { "name": "env", @@ -176537,7 +181087,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134511599, + "hash": 3994732740, "arguments": [ { "name": "env", @@ -176595,7 +181145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134475662, + "hash": 3810560768, "arguments": [ { "name": "env", @@ -176647,7 +181197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134547536, + "hash": 3519144388, "arguments": [ { "name": "env", @@ -176707,7 +181257,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134619410, + "hash": 3689440217, "arguments": [ { "name": "env", @@ -176777,7 +181327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -176791,7 +181341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -176805,7 +181355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1190026788, "arguments": [ { "name": "quality", @@ -176819,7 +181369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 189753569, "arguments": [ { "name": "quality", @@ -176857,7 +181407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 1713836683, "arguments": [ { "name": "quality", @@ -176895,7 +181445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 340137951, "arguments": [ { "name": "ray_count", @@ -176909,7 +181459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2182444374, "arguments": [ { "name": "frames", @@ -176923,7 +181473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1251144068, "arguments": [ { "name": "frames", @@ -176937,7 +181487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "size", @@ -176957,7 +181507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -176971,7 +181521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2452908646, "return_value": { "type": "Image" }, @@ -176996,7 +181546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 916716790, "arguments": [ { "name": "enable", @@ -177020,7 +181570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 64571803, "arguments": [ { "name": "quality", @@ -177034,7 +181584,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1017552074, "arguments": [ { "name": "scale", @@ -177054,7 +181604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -177065,7 +181615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2220136795, "arguments": [ { "name": "quality", @@ -177083,7 +181633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1205058394, "arguments": [ { "name": "shape", @@ -177097,7 +181647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134439725, + "hash": 316272616, "arguments": [ { "name": "camera_effects", @@ -177144,7 +181694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2010054925, "arguments": [ { "name": "camera_effects", @@ -177167,7 +181717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -177178,7 +181728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "scenario", @@ -177196,7 +181746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "scenario", @@ -177214,7 +181764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "scenario", @@ -177232,7 +181782,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 746547085, "return_value": { "type": "RID" }, @@ -177253,7 +181803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -177264,7 +181814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "instance", @@ -177282,7 +181832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "instance", @@ -177300,7 +181850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "instance", @@ -177319,7 +181869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3935195649, "arguments": [ { "name": "instance", @@ -177337,7 +181887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "instance", @@ -177356,7 +181906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1892459533, "arguments": [ { "name": "instance", @@ -177380,7 +181930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2310537182, "arguments": [ { "name": "instance", @@ -177403,7 +181953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "instance", @@ -177421,7 +181971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "instance", @@ -177440,7 +181990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3696536120, "arguments": [ { "name": "instance", @@ -177458,7 +182008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "instance", @@ -177476,7 +182026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "instance", @@ -177495,7 +182045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "instance", @@ -177513,7 +182063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "instance", @@ -177531,7 +182081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1014989537, "arguments": [ { "name": "instance", @@ -177553,7 +182103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3768836020, "arguments": [ { "name": "instance", @@ -177571,7 +182121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "instance", @@ -177589,7 +182139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "instance", @@ -177607,7 +182157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 4263925858, "arguments": [ { "name": "instance", @@ -177645,7 +182195,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 536974962, "arguments": [ { "name": "instance", @@ -177672,7 +182222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "instance", @@ -177691,7 +182241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3477296213, "arguments": [ { "name": "instance", @@ -177713,7 +182263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2621281810, "return_value": { "type": "Variant" }, @@ -177734,7 +182284,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2621281810, "return_value": { "type": "Variant" }, @@ -177755,7 +182305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -177772,7 +182322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1149645703, "return_value": { "type": "Array" }, @@ -177794,7 +182344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785387, + "hash": 4168413368, "return_value": { "type": "Array" }, @@ -177820,7 +182370,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2871735507, "return_value": { "type": "Array" }, @@ -177842,7 +182392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1904608558, "return_value": { "type": "Array" }, @@ -177867,7 +182417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -177878,7 +182428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2343975398, "arguments": [ { "name": "canvas", @@ -177900,7 +182450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "canvas", @@ -177918,7 +182468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disable", @@ -177932,7 +182482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -177943,7 +182493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3822119138, "arguments": [ { "name": "canvas_texture", @@ -177965,7 +182515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2124967469, "arguments": [ { "name": "canvas_texture", @@ -177988,7 +182538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1155129294, "arguments": [ { "name": "canvas_texture", @@ -178006,7 +182556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1652956681, "arguments": [ { "name": "canvas_texture", @@ -178024,7 +182574,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -178035,7 +182585,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "item", @@ -178053,7 +182603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1155129294, "arguments": [ { "name": "item", @@ -178071,7 +182621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1652956681, "arguments": [ { "name": "item", @@ -178089,7 +182639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178107,7 +182657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "item", @@ -178126,7 +182676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "item", @@ -178144,7 +182694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178162,7 +182712,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178180,7 +182730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 2180266943, "arguments": [ { "name": "item", @@ -178203,7 +182753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "item", @@ -178221,7 +182771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "item", @@ -178239,7 +182789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178257,7 +182807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 300073517, + "hash": 2843922985, "arguments": [ { "name": "item", @@ -178294,7 +182844,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 3438017257, "arguments": [ { "name": "item", @@ -178327,7 +182877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 934531857, "arguments": [ { "name": "item", @@ -178349,7 +182899,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2439351960, "arguments": [ { "name": "item", @@ -178376,7 +182926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626862, + "hash": 3205360868, "arguments": [ { "name": "item", @@ -178413,7 +182963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2643094831, + "hash": 4239856677, "arguments": [ { "name": "item", @@ -178456,7 +183006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2643094831, + "hash": 2782979504, "arguments": [ { "name": "item", @@ -178497,7 +183047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1620561523, + "hash": 904428547, "arguments": [ { "name": "item", @@ -178551,7 +183101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 139207724, + "hash": 3826547603, "arguments": [ { "name": "item", @@ -178587,7 +183137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938124, + "hash": 2907936855, "arguments": [ { "name": "item", @@ -178619,7 +183169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3954697530, + "hash": 749685193, "arguments": [ { "name": "item", @@ -178671,7 +183221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 542376426, + "hash": 3548053052, "arguments": [ { "name": "item", @@ -178704,7 +183254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1541595251, "arguments": [ { "name": "item", @@ -178727,7 +183277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2575754278, "arguments": [ { "name": "item", @@ -178749,7 +183299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "item", @@ -178767,7 +183317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178785,7 +183335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 138021803, + "hash": 4107531031, "arguments": [ { "name": "item", @@ -178820,7 +183370,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178838,7 +183388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "item", @@ -178857,7 +183407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178875,7 +183425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2429202503, "arguments": [ { "name": "item", @@ -178897,7 +183447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "item", @@ -178911,7 +183461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "item", @@ -178930,7 +183480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "item", @@ -178948,7 +183498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "item", @@ -178966,7 +183516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 3568945579, "arguments": [ { "name": "item", @@ -178996,7 +183546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 793705129, + "hash": 1568036344, "arguments": [ { "name": "item", @@ -179036,7 +183586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -179047,7 +183597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "light", @@ -179065,7 +183615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "light", @@ -179083,7 +183633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "light", @@ -179102,7 +183652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "light", @@ -179120,7 +183670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "light", @@ -179138,7 +183688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3201125042, "arguments": [ { "name": "light", @@ -179156,7 +183706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "light", @@ -179174,7 +183724,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "light", @@ -179193,7 +183743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "light", @@ -179212,7 +183762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4288446313, "arguments": [ { "name": "light", @@ -179236,7 +183786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4288446313, "arguments": [ { "name": "light", @@ -179260,7 +183810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "light", @@ -179279,7 +183829,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "light", @@ -179298,7 +183848,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2957564891, "arguments": [ { "name": "light", @@ -179316,7 +183866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "light", @@ -179334,7 +183884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 393119659, "arguments": [ { "name": "light", @@ -179352,7 +183902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "light", @@ -179370,7 +183920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "light", @@ -179389,7 +183939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -179400,7 +183950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "occluder", @@ -179418,7 +183968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "occluder", @@ -179436,7 +183986,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 395945892, "arguments": [ { "name": "occluder", @@ -179454,7 +184004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "occluder", @@ -179472,7 +184022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "occluder", @@ -179490,7 +184040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "occluder", @@ -179509,7 +184059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -179520,7 +184070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2103882027, "arguments": [ { "name": "occluder_polygon", @@ -179542,7 +184092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1839404663, "arguments": [ { "name": "occluder_polygon", @@ -179560,7 +184110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -179570,12 +184120,12 @@ ] }, { - "name": "global_variable_add", + "name": "global_shader_uniform_add", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2580774935, "arguments": [ { "name": "name", @@ -179583,7 +184133,7 @@ }, { "name": "type", - "type": "enum::RenderingServer.GlobalVariableType" + "type": "enum::RenderingServer.GlobalShaderUniformType" }, { "name": "default_value", @@ -179592,12 +184142,12 @@ ] }, { - "name": "global_variable_remove", + "name": "global_shader_uniform_remove", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -179606,23 +184156,23 @@ ] }, { - "name": "global_variable_get_list", + "name": "global_shader_uniform_get_list", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } }, { - "name": "global_variable_set", + "name": "global_shader_uniform_set", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "name", @@ -179635,12 +184185,12 @@ ] }, { - "name": "global_variable_set_override", + "name": "global_shader_uniform_set_override", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "name", @@ -179653,12 +184203,12 @@ ] }, { - "name": "global_variable_get", + "name": "global_shader_uniform_get", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -179670,14 +184220,14 @@ ] }, { - "name": "global_variable_get_type", + "name": "global_shader_uniform_get_type", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1808916393, "return_value": { - "type": "enum::RenderingServer.GlobalVariableType" + "type": "enum::RenderingServer.GlobalShaderUniformType" }, "arguments": [ { @@ -179692,7 +184242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -179706,7 +184256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1611583062, "arguments": [ { "name": "callable", @@ -179720,7 +184270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -179731,7 +184281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3763192241, "return_value": { "type": "int", "meta": "uint64" @@ -179749,7 +184299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -179760,7 +184310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -179771,7 +184321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3099547011, "return_value": { "type": "enum::RenderingDevice.DeviceType" } @@ -179782,7 +184332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -179793,7 +184343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2251015897, "return_value": { "type": "RID" }, @@ -179821,7 +184371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -179832,7 +184382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -179843,7 +184393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -179854,7 +184404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 2244367877, "arguments": [ { "name": "image", @@ -179881,7 +184431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -179895,7 +184445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 598462696, "return_value": { "type": "bool" }, @@ -179912,7 +184462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -179929,7 +184479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "generate", @@ -179943,7 +184493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -179954,7 +184504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -179968,7 +184518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -179980,7 +184530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "force_draw", @@ -179988,7 +184538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2754828378, + "hash": 899045543, "arguments": [ { "name": "swap_buffers", @@ -180009,7 +184559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1405107940, "return_value": { "type": "RenderingDevice" } @@ -180020,7 +184570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1405107940, "return_value": { "type": "RenderingDevice" } @@ -180057,7 +184607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -180071,7 +184621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -180085,7 +184635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -180096,7 +184646,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -180110,7 +184660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -180121,7 +184671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -180132,7 +184682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -180146,7 +184696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -180157,7 +184707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -180168,7 +184718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "emit_changed", @@ -180176,7 +184726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "duplicate", @@ -180184,7 +184734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 482882304, "return_value": { "type": "Resource" }, @@ -180238,6 +184788,7 @@ "enums": [ { "name": "CacheMode", + "is_bitfield": false, "values": [ { "name": "CACHE_MODE_IGNORE", @@ -180369,6 +184920,22 @@ } ] }, + { + "name": "_get_classes_used", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "PackedStringArray" + }, + "arguments": [ + { + "name": "path", + "type": "String" + } + ] + }, { "name": "_load", "is_const": true, @@ -180418,11 +184985,11 @@ "arguments": [ { "name": "path", - "type": "String" + "type": "Resource" }, { "name": "resource", - "type": "Resource" + "type": "String" }, { "name": "flags", @@ -180473,6 +185040,7 @@ "enums": [ { "name": "ImportOrder", + "is_bitfield": false, "values": [ { "name": "IMPORT_ORDER_DEFAULT", @@ -180495,6 +185063,7 @@ "enums": [ { "name": "ThreadLoadStatus", + "is_bitfield": false, "values": [ { "name": "THREAD_LOAD_INVALID_RESOURCE", @@ -180516,6 +185085,7 @@ }, { "name": "CacheMode", + "is_bitfield": false, "values": [ { "name": "CACHE_MODE_IGNORE", @@ -180539,7 +185109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1479995216, + "hash": 3713126301, "return_value": { "type": "enum::Error" }, @@ -180566,7 +185136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3931021148, "return_value": { "type": "enum::ResourceLoader.ThreadLoadStatus" }, @@ -180588,7 +185158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1748875256, "return_value": { "type": "Resource" }, @@ -180605,7 +185175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1479995216, + "hash": 2622212233, "return_value": { "type": "Resource" }, @@ -180632,7 +185202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3538744774, "return_value": { "type": "PackedStringArray" }, @@ -180643,13 +185213,46 @@ } ] }, + { + "name": "add_resource_format_loader", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2896595483, + "arguments": [ + { + "name": "format_loader", + "type": "ResourceFormatLoader" + }, + { + "name": "at_front", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_resource_format_loader", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 405397102, + "arguments": [ + { + "name": "format_loader", + "type": "ResourceFormatLoader" + } + ] + }, { "name": "set_abort_on_missing_resources", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "abort", @@ -180663,7 +185266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3538744774, "return_value": { "type": "PackedStringArray" }, @@ -180680,7 +185283,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -180697,7 +185300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 2220807150, "return_value": { "type": "bool" }, @@ -180719,7 +185322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1597066294, "return_value": { "type": "int", "meta": "int64" @@ -180746,7 +185349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1168801743, "arguments": [ { "name": "name", @@ -180764,7 +185367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -180778,7 +185381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -180796,7 +185399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -180813,7 +185416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3742749261, "return_value": { "type": "Resource" }, @@ -180830,7 +185433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -180855,6 +185458,7 @@ "enums": [ { "name": "SaverFlags", + "is_bitfield": true, "values": [ { "name": "FLAG_NONE", @@ -180898,23 +185502,23 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2303056517, "return_value": { "type": "enum::Error" }, "arguments": [ - { - "name": "path", - "type": "String" - }, { "name": "resource", "type": "Resource" }, + { + "name": "path", + "type": "String", + "default_value": "\"\"" + }, { "name": "flags", - "type": "int", - "meta": "uint32", + "type": "bitfield::ResourceSaver.SaverFlags", "default_value": "0" } ] @@ -180925,7 +185529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4223597960, "return_value": { "type": "PackedStringArray" }, @@ -180935,6 +185539,39 @@ "type": "Resource" } ] + }, + { + "name": "add_resource_format_saver", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 362894272, + "arguments": [ + { + "name": "format_saver", + "type": "ResourceFormatSaver" + }, + { + "name": "at_front", + "type": "bool", + "default_value": "false" + } + ] + }, + { + "name": "remove_resource_format_saver", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3373026878, + "arguments": [ + { + "name": "format_saver", + "type": "ResourceFormatSaver" + } + ] } ] }, @@ -180957,7 +185594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -180975,7 +185612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int64" @@ -180993,7 +185630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int64" @@ -181005,7 +185642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -181023,7 +185660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "id", @@ -181042,7 +185679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "id", @@ -181061,7 +185698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -181079,7 +185716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -181099,6 +185736,7 @@ "enums": [ { "name": "Shape", + "is_bitfield": false, "values": [ { "name": "SHAPE_FLAT", @@ -181118,7 +185756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -181133,7 +185771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -181145,7 +185783,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sections", @@ -181160,7 +185798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -181172,7 +185810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "section_length", @@ -181187,7 +185825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -181199,7 +185837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "section_segments", @@ -181214,7 +185852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -181226,7 +185864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -181240,7 +185878,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -181251,7 +185889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1684440262, "arguments": [ { "name": "shape", @@ -181265,7 +185903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1317484155, "return_value": { "type": "enum::RibbonTrailMesh.Shape" } @@ -181348,29 +185986,9 @@ "inherits": "Control", "api_type": "core", "enums": [ - { - "name": "AutowrapMode", - "values": [ - { - "name": "AUTOWRAP_OFF", - "value": 0 - }, - { - "name": "AUTOWRAP_ARBITRARY", - "value": 1 - }, - { - "name": "AUTOWRAP_WORD", - "value": 2 - }, - { - "name": "AUTOWRAP_WORD_SMART", - "value": 3 - } - ] - }, { "name": "ListType", + "is_bitfield": false, "values": [ { "name": "LIST_NUMBERS", @@ -181392,6 +186010,7 @@ }, { "name": "ItemType", + "is_bitfield": false, "values": [ { "name": "ITEM_FRAME", @@ -181502,31 +186121,6 @@ "value": 26 } ] - }, - { - "name": "VisibleCharactersBehavior", - "values": [ - { - "name": "VC_CHARS_BEFORE_SHAPING", - "value": 0 - }, - { - "name": "VC_CHARS_AFTER_SHAPING", - "value": 1 - }, - { - "name": "VC_GLYPHS_AUTO", - "value": 2 - }, - { - "name": "VC_GLYPHS_LTR", - "value": 3 - }, - { - "name": "VC_GLYPHS_RTL", - "value": 4 - } - ] } ], "methods": [ @@ -181536,7 +186130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -181547,7 +186141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -181561,7 +186155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -181575,7 +186169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2960538717, + "hash": 369227336, "arguments": [ { "name": "image", @@ -181611,7 +186205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "remove_line", @@ -181619,7 +186213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -181637,11 +186231,16 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3014009009, "arguments": [ { "name": "font", "type": "Font" + }, + { + "name": "font_size", + "type": "int", + "meta": "int32" } ] }, @@ -181651,7 +186250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "font_size", @@ -181660,27 +186259,13 @@ } ] }, - { - "name": "push_font_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "opentype_features", - "type": "Dictionary" - } - ] - }, { "name": "push_normal", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_bold", @@ -181688,7 +186273,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_bold_italics", @@ -181696,7 +186281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_italics", @@ -181704,7 +186289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_mono", @@ -181712,7 +186297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_color", @@ -181720,7 +186305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -181734,7 +186319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "outline_size", @@ -181749,7 +186334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -181763,7 +186348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1255294972, + "hash": 1037160898, "arguments": [ { "name": "alignment", @@ -181792,7 +186377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "level", @@ -181807,7 +186392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2241060727, "arguments": [ { "name": "level", @@ -181830,7 +186415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1114965689, "arguments": [ { "name": "data", @@ -181844,7 +186429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "description", @@ -181858,7 +186443,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_strikethrough", @@ -181866,7 +186451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_table", @@ -181874,7 +186459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 740069725, "arguments": [ { "name": "columns", @@ -181894,7 +186479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3606084225, + "hash": 311501835, "arguments": [ { "name": "string", @@ -181938,7 +186523,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4258957458, "arguments": [ { "name": "column", @@ -181962,7 +186547,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3465483165, "arguments": [ { "name": "odd_row_bg", @@ -181980,7 +186565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -181994,7 +186579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3108078480, "arguments": [ { "name": "min_size", @@ -182012,7 +186597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "padding", @@ -182026,7 +186611,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "push_fgcolor", @@ -182034,7 +186619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "fgcolor", @@ -182048,7 +186633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "bgcolor", @@ -182062,7 +186647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear", @@ -182070,7 +186655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_structured_text_bidi_override", @@ -182078,7 +186663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -182092,7 +186677,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -182103,7 +186688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -182117,7 +186702,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -182128,7 +186713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -182142,7 +186727,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } @@ -182153,7 +186738,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -182167,7 +186752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -182178,11 +186763,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3289138044, "arguments": [ { "name": "autowrap_mode", - "type": "enum::RichTextLabel.AutowrapMode" + "type": "enum::TextServer.AutowrapMode" } ] }, @@ -182192,9 +186777,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1549071663, "return_value": { - "type": "enum::RichTextLabel.AutowrapMode" + "type": "enum::TextServer.AutowrapMode" } }, { @@ -182203,7 +186788,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -182217,7 +186802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182228,7 +186813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -182242,7 +186827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182253,7 +186838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "override", @@ -182267,7 +186852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182278,7 +186863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -182292,7 +186877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182303,7 +186888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "follow", @@ -182317,7 +186902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182328,7 +186913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2630340773, "return_value": { "type": "VScrollBar" } @@ -182339,7 +186924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "line", @@ -182354,7 +186939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "paragraph", @@ -182369,7 +186954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "spaces", @@ -182384,7 +186969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182396,7 +186981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -182410,7 +186995,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182421,7 +187006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -182435,7 +187020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182446,7 +187031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -182460,7 +187045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182471,7 +187056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -182485,7 +187070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182496,7 +187081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -182510,7 +187095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182521,7 +187106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182533,7 +187118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182545,7 +187130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_selected_text", @@ -182553,7 +187138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -182564,7 +187149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "parse_bbcode", @@ -182572,7 +187157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "bbcode", @@ -182586,7 +187171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "bbcode", @@ -182600,7 +187185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -182611,7 +187196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182622,7 +187207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "threaded", @@ -182636,7 +187221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182647,7 +187232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "delay_ms", @@ -182662,7 +187247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182674,7 +187259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -182689,7 +187274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182701,9 +187286,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 258789322, "return_value": { - "type": "enum::RichTextLabel.VisibleCharactersBehavior" + "type": "enum::TextServer.VisibleCharactersBehavior" } }, { @@ -182712,11 +187297,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3383839701, "arguments": [ { "name": "behavior", - "type": "enum::RichTextLabel.VisibleCharactersBehavior" + "type": "enum::TextServer.VisibleCharactersBehavior" } ] }, @@ -182726,7 +187311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "percent_visible", @@ -182741,7 +187326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -182753,7 +187338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -182772,7 +187357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -182791,7 +187376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182803,7 +187388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -182817,7 +187402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -182828,7 +187413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182840,7 +187425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182852,7 +187437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182864,7 +187449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182876,7 +187461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182888,7 +187473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -182900,7 +187485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4025615559, "return_value": { "type": "float", "meta": "float" @@ -182919,7 +187504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4025615559, "return_value": { "type": "float", "meta": "float" @@ -182938,7 +187523,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1522900837, "return_value": { "type": "Dictionary" }, @@ -182955,7 +187540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "effects", @@ -182969,7 +187554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -182980,7 +187565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1114965689, "arguments": [ { "name": "effect", @@ -182994,7 +187579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 229722558, "return_value": { "type": "PopupMenu" } @@ -183005,7 +187590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -183223,6 +187808,7 @@ "enums": [ { "name": "FreezeMode", + "is_bitfield": false, "values": [ { "name": "FREEZE_MODE_STATIC", @@ -183236,6 +187822,7 @@ }, { "name": "CenterOfMassMode", + "is_bitfield": false, "values": [ { "name": "CENTER_OF_MASS_MODE_AUTO", @@ -183249,6 +187836,7 @@ }, { "name": "DampMode", + "is_bitfield": false, "values": [ { "name": "DAMP_MODE_COMBINE", @@ -183262,6 +187850,7 @@ }, { "name": "CCDMode", + "is_bitfield": false, "values": [ { "name": "CCD_MODE_DISABLED", @@ -183298,7 +187887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mass", @@ -183313,7 +187902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183325,7 +187914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183337,7 +187926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "inertia", @@ -183352,7 +187941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3452825391, "arguments": [ { "name": "mode", @@ -183366,7 +187955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1339826430, "return_value": { "type": "enum::RigidDynamicBody2D.CenterOfMassMode" } @@ -183377,7 +187966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "center_of_mass", @@ -183391,7 +187980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -183402,7 +187991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1784508650, "arguments": [ { "name": "physics_material_override", @@ -183416,7 +188005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2521850424, "return_value": { "type": "PhysicsMaterial" } @@ -183427,7 +188016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gravity_scale", @@ -183442,7 +188031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183454,7 +188043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 511720019, "arguments": [ { "name": "linear_damp_mode", @@ -183468,7 +188057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1421279436, "return_value": { "type": "enum::RigidDynamicBody2D.DampMode" } @@ -183479,7 +188068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 511720019, "arguments": [ { "name": "angular_damp_mode", @@ -183493,7 +188082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1421279436, "return_value": { "type": "enum::RigidDynamicBody2D.DampMode" } @@ -183504,7 +188093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "linear_damp", @@ -183519,7 +188108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183531,7 +188120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angular_damp", @@ -183546,7 +188135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183558,7 +188147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "linear_velocity", @@ -183572,7 +188161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -183583,7 +188172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angular_velocity", @@ -183598,7 +188187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183610,7 +188199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -183625,7 +188214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -183637,7 +188226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -183651,7 +188240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -183662,7 +188251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -183676,7 +188265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -183687,7 +188276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2718300349, "arguments": [ { "name": "mode", @@ -183701,7 +188290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 92885946, "return_value": { "type": "enum::RigidDynamicBody2D.CCDMode" } @@ -183712,7 +188301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "axis_velocity", @@ -183726,7 +188315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2823412066, + "hash": 3862383994, "arguments": [ { "name": "impulse", @@ -183741,7 +188330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 496058220, "arguments": [ { "name": "impulse", @@ -183760,7 +188349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -183775,7 +188364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "force", @@ -183789,7 +188378,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 496058220, "arguments": [ { "name": "force", @@ -183808,7 +188397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -183823,7 +188412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "force", @@ -183837,7 +188426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 496058220, "arguments": [ { "name": "force", @@ -183856,7 +188445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -183871,7 +188460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "force", @@ -183885,7 +188474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -183896,7 +188485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "torque", @@ -183911,7 +188500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -183923,7 +188512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "sleeping", @@ -183937,7 +188526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -183948,7 +188537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "able_to_sleep", @@ -183962,7 +188551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -183973,7 +188562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "lock_rotation", @@ -183987,7 +188576,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -183998,7 +188587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "freeze_mode", @@ -184012,7 +188601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -184023,7 +188612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2450751375, "arguments": [ { "name": "freeze_mode", @@ -184037,7 +188626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 870555613, "return_value": { "type": "enum::RigidDynamicBody2D.FreezeMode" } @@ -184048,7 +188637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -184292,6 +188881,7 @@ "enums": [ { "name": "FreezeMode", + "is_bitfield": false, "values": [ { "name": "FREEZE_MODE_STATIC", @@ -184305,6 +188895,7 @@ }, { "name": "CenterOfMassMode", + "is_bitfield": false, "values": [ { "name": "CENTER_OF_MASS_MODE_AUTO", @@ -184318,6 +188909,7 @@ }, { "name": "DampMode", + "is_bitfield": false, "values": [ { "name": "DAMP_MODE_COMBINE", @@ -184350,7 +188942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mass", @@ -184365,7 +188957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -184377,7 +188969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "inertia", @@ -184391,7 +188983,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -184402,7 +188994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1631935582, "arguments": [ { "name": "mode", @@ -184416,7 +189008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2909173950, "return_value": { "type": "enum::RigidDynamicBody3D.CenterOfMassMode" } @@ -184427,7 +189019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "center_of_mass", @@ -184441,7 +189033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -184452,7 +189044,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1784508650, "arguments": [ { "name": "physics_material_override", @@ -184466,7 +189058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2521850424, "return_value": { "type": "PhysicsMaterial" } @@ -184477,7 +189069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "linear_velocity", @@ -184491,7 +189083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -184502,7 +189094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "angular_velocity", @@ -184516,7 +189108,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -184527,7 +189119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2716978435, "return_value": { "type": "Basis" } @@ -184538,7 +189130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "gravity_scale", @@ -184553,7 +189145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -184565,7 +189157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 47243782, "arguments": [ { "name": "linear_damp_mode", @@ -184579,7 +189171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2950994489, "return_value": { "type": "enum::RigidDynamicBody3D.DampMode" } @@ -184590,7 +189182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 47243782, "arguments": [ { "name": "angular_damp_mode", @@ -184604,7 +189196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2950994489, "return_value": { "type": "enum::RigidDynamicBody3D.DampMode" } @@ -184615,7 +189207,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "linear_damp", @@ -184630,7 +189222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -184642,7 +189234,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angular_damp", @@ -184657,7 +189249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -184669,7 +189261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -184684,7 +189276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -184696,7 +189288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -184710,7 +189302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -184721,7 +189313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -184735,7 +189327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -184746,7 +189338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -184760,7 +189352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -184771,7 +189363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "axis_velocity", @@ -184785,7 +189377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "impulse", @@ -184799,7 +189391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "impulse", @@ -184818,7 +189410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "impulse", @@ -184832,7 +189424,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "force", @@ -184846,7 +189438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "force", @@ -184865,7 +189457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "torque", @@ -184879,7 +189471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "force", @@ -184893,7 +189485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1002852006, "arguments": [ { "name": "force", @@ -184912,7 +189504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "torque", @@ -184926,7 +189518,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "force", @@ -184940,7 +189532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -184951,7 +189543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "torque", @@ -184965,7 +189557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -184976,7 +189568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "sleeping", @@ -184990,7 +189582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -185001,7 +189593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "able_to_sleep", @@ -185015,7 +189607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -185026,7 +189618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "lock_rotation", @@ -185040,7 +189632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -185051,7 +189643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "freeze_mode", @@ -185065,7 +189657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -185076,7 +189668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1256278317, "arguments": [ { "name": "freeze_mode", @@ -185090,7 +189682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497157993, "return_value": { "type": "enum::RigidDynamicBody3D.FreezeMode" } @@ -185101,7 +189693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -185380,6 +189972,170 @@ } ] }, + { + "name": "SceneMultiplayer", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "MultiplayerAPI", + "api_type": "core", + "methods": [ + { + "name": "set_root_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1348162250, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_root_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4075236667, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "clear", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3218959716 + }, + { + "name": "set_refuse_new_connections", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "refuse", + "type": "bool" + } + ] + }, + { + "name": "is_refusing_new_connections", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_allow_object_decoding", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_object_decoding_allowed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "send_bytes", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2742700601, + "return_value": { + "type": "enum::Error" + }, + "arguments": [ + { + "name": "bytes", + "type": "PackedByteArray" + }, + { + "name": "id", + "type": "int", + "meta": "int32", + "default_value": "0" + }, + { + "name": "mode", + "type": "enum::MultiplayerPeer.TransferMode", + "default_value": "2" + }, + { + "name": "channel", + "type": "int", + "meta": "int32", + "default_value": "0" + } + ] + } + ], + "signals": [ + { + "name": "peer_packet", + "arguments": [ + { + "name": "id", + "type": "int" + }, + { + "name": "packet", + "type": "PackedByteArray" + } + ] + } + ], + "properties": [ + { + "type": "NodePath", + "name": "root_path", + "setter": "set_root_path", + "getter": "get_root_path", + "index": -1 + }, + { + "type": "bool", + "name": "allow_object_decoding", + "setter": "set_allow_object_decoding", + "getter": "is_object_decoding_allowed", + "index": -1 + }, + { + "type": "bool", + "name": "refuse_new_connections", + "setter": "set_refuse_new_connections", + "getter": "is_refusing_new_connections", + "index": -1 + } + ] + }, { "name": "SceneReplicationConfig", "is_refcounted": true, @@ -185393,7 +190149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -185404,7 +190160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3818401521, "arguments": [ { "name": "path", @@ -185424,7 +190180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 861721659, "return_value": { "type": "bool" }, @@ -185441,7 +190197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -185455,7 +190211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1382022557, "return_value": { "type": "int", "meta": "int32" @@ -185473,7 +190229,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3456846888, "return_value": { "type": "bool" }, @@ -185490,7 +190246,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3868023870, "arguments": [ { "name": "path", @@ -185508,7 +190264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3456846888, "return_value": { "type": "bool" }, @@ -185525,7 +190281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3868023870, "arguments": [ { "name": "path", @@ -185548,6 +190304,7 @@ "enums": [ { "name": "GenEditState", + "is_bitfield": false, "values": [ { "name": "GEN_EDIT_STATE_DISABLED", @@ -185575,7 +190332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -185587,7 +190344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -185605,7 +190362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -185623,7 +190380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2272487792, "return_value": { "type": "NodePath" }, @@ -185646,7 +190403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -185664,7 +190421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -185682,7 +190439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -185700,7 +190457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 511017218, "return_value": { "type": "PackedScene" }, @@ -185718,7 +190475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 647634434, "return_value": { "type": "PackedStringArray" }, @@ -185736,7 +190493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -185755,7 +190512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -185774,7 +190531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 351665558, "return_value": { "type": "StringName" }, @@ -185797,7 +190554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 678354945, "return_value": { "type": "Variant" }, @@ -185820,7 +190577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -185832,7 +190589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -185850,7 +190607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -185868,7 +190625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -185886,7 +190643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -185904,7 +190661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -185923,7 +190680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -185941,7 +190698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -185965,6 +190722,7 @@ "enums": [ { "name": "GroupCallFlags", + "is_bitfield": false, "values": [ { "name": "GROUP_CALL_DEFAULT", @@ -185992,7 +190750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1757182445, "return_value": { "type": "Window" } @@ -186003,7 +190761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -186020,7 +190778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186031,7 +190789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -186045,7 +190803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186056,7 +190814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -186070,7 +190828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -186084,7 +190842,32 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_debug_paths_hint", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_debugging_paths_hint", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186095,7 +190878,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -186109,7 +190892,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186120,7 +190903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "scene", @@ -186134,7 +190917,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -186145,7 +190928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -186159,7 +190942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186170,7 +190953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 826575767, "return_value": { "type": "SceneTreeTimer" }, @@ -186193,7 +190976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3426978995, "return_value": { "type": "Tween" } @@ -186204,7 +190987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -186215,7 +190998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -186227,7 +191010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -186239,7 +191022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2551161618, + "hash": 1995695955, "arguments": [ { "name": "exit_code", @@ -186255,7 +191038,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3975164845, "arguments": [ { "name": "obj", @@ -186269,7 +191052,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134260041, + "hash": 1527739229, "arguments": [ { "name": "flags", @@ -186291,7 +191074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1245489420, "arguments": [ { "name": "call_flags", @@ -186315,7 +191098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3497599527, "arguments": [ { "name": "call_flags", @@ -186342,7 +191125,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134224104, + "hash": 1257962832, "arguments": [ { "name": "group", @@ -186360,7 +191143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "group", @@ -186379,7 +191162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1279312029, "arguments": [ { "name": "group", @@ -186401,7 +191184,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 689397652, "return_value": { "type": "Array" }, @@ -186418,7 +191201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 4071044623, "return_value": { "type": "Node" }, @@ -186435,7 +191218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "child_node", @@ -186449,7 +191232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3160264692, "return_value": { "type": "Node" } @@ -186460,7 +191243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -186477,7 +191260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 107349098, "return_value": { "type": "enum::Error" }, @@ -186494,7 +191277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -186505,7 +191288,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2385607013, "arguments": [ { "name": "multiplayer", @@ -186524,7 +191307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 3453401404, "return_value": { "type": "MultiplayerAPI" }, @@ -186542,7 +191325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -186556,7 +191339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186634,6 +191417,13 @@ "getter": "is_debugging_collisions_hint", "index": -1 }, + { + "type": "bool", + "name": "debug_paths_hint", + "setter": "set_debug_paths_hint", + "getter": "is_debugging_paths_hint", + "index": -1 + }, { "type": "bool", "name": "debug_navigation_hint", @@ -186691,7 +191481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time", @@ -186706,7 +191496,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -186741,7 +191531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186752,7 +191542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 397768994, "return_value": { "type": "bool" }, @@ -186769,7 +191559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186780,7 +191570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -186791,7 +191581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "source", @@ -186805,7 +191595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 1633102583, "return_value": { "type": "enum::Error" }, @@ -186823,7 +191613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 278624046, "return_value": { "type": "Script" } @@ -186834,7 +191624,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -186845,7 +191635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -186862,7 +191652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -186873,7 +191663,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -186884,7 +191674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -186895,7 +191685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -186906,7 +191696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2138907829, "return_value": { "type": "Variant" }, @@ -186923,7 +191713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -186952,7 +191742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802731, + "hash": 4210001628, "arguments": [ { "name": "inherits", @@ -187000,7 +191790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1906266726, "return_value": { "type": "ScriptEditorBase" } @@ -187011,7 +191801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -187022,7 +191812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1092774468, "arguments": [ { "name": "syntax_highlighter", @@ -187036,7 +191826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1092774468, "arguments": [ { "name": "syntax_highlighter", @@ -187050,7 +191840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "line_number", @@ -187065,7 +191855,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2146468882, "return_value": { "type": "Script" } @@ -187076,7 +191866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -187087,7 +191877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3186203200, "arguments": [ { "name": "base_name", @@ -187134,7 +191924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2783021301, "return_value": { "type": "Control" } @@ -187145,7 +191935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1092774468, "arguments": [ { "name": "highlighter", @@ -187576,13 +192366,13 @@ } }, { - "name": "_get_rpc_methods", + "name": "_get_rpc_config", "is_const": true, "is_static": false, "is_vararg": false, "is_virtual": true, "return_value": { - "type": "Array" + "type": "Variant" } } ] @@ -187603,6 +192393,7 @@ "enums": [ { "name": "LookupResultType", + "is_bitfield": false, "values": [ { "name": "LOOKUP_RESULT_SCRIPT_LOCATION", @@ -187637,13 +192428,18 @@ "value": 7 }, { - "name": "LOOKUP_RESULT_MAX", + "name": "LOOKUP_RESULT_CLASS_ANNOTATION", "value": 8 + }, + { + "name": "LOOKUP_RESULT_MAX", + "value": 9 } ] }, { "name": "CodeCompletionLocation", + "is_bitfield": false, "values": [ { "name": "LOCATION_LOCAL", @@ -187665,6 +192461,7 @@ }, { "name": "CodeCompletionKind", + "is_bitfield": false, "values": [ { "name": "CODE_COMPLETION_KIND_CLASS", @@ -188415,6 +193212,16 @@ "type": "Dictionary" } }, + { + "name": "_get_public_annotations", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "Array" + } + }, { "name": "_profiling_start", "is_const": false, @@ -188581,7 +193388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "step", @@ -188596,7 +193403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -188627,6 +193434,7 @@ "enums": [ { "name": "ScrollMode", + "is_bitfield": false, "values": [ { "name": "SCROLL_MODE_DISABLED", @@ -188654,7 +193462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -188669,7 +193477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -188681,7 +193489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -188696,7 +193504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -188708,7 +193516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2750506364, "arguments": [ { "name": "enable", @@ -188722,7 +193530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3987985145, "return_value": { "type": "enum::ScrollContainer.ScrollMode" } @@ -188733,7 +193541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2750506364, "arguments": [ { "name": "enable", @@ -188747,7 +193555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3987985145, "return_value": { "type": "enum::ScrollContainer.ScrollMode" } @@ -188758,7 +193566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "deadzone", @@ -188773,7 +193581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -188785,7 +193593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -188799,7 +193607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -188810,7 +193618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4004517983, "return_value": { "type": "HScrollBar" } @@ -188821,7 +193629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2630340773, "return_value": { "type": "VScrollBar" } @@ -188832,7 +193640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1496901182, "arguments": [ { "name": "control", @@ -188907,7 +193715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "a", @@ -188921,7 +193729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -188932,7 +193740,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "b", @@ -188946,7 +193754,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -188982,7 +193790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "try_wait", @@ -188990,7 +193798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -189001,7 +193809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -189018,7 +193826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -189033,7 +193841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189045,7 +193853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -189059,7 +193867,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -189095,7 +193903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -189110,7 +193918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189122,7 +193930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -189136,7 +193944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -189175,6 +193983,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_SPATIAL", @@ -189206,7 +194015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3392948163, "return_value": { "type": "enum::Shader.Mode" } @@ -189217,7 +194026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "code", @@ -189231,7 +194040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -189242,7 +194051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1628453603, "arguments": [ { "name": "param", @@ -189266,7 +194075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3823812009, "return_value": { "type": "Texture2D" }, @@ -189289,7 +194098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -189318,6 +194127,49 @@ "inherits": "Node", "api_type": "core" }, + { + "name": "ShaderInclude", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "methods": [ + { + "name": "set_code", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 83702148, + "arguments": [ + { + "name": "code", + "type": "String" + } + ] + }, + { + "name": "get_code", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + } + ], + "properties": [ + { + "type": "String", + "name": "code", + "setter": "set_code", + "getter": "get_code", + "index": -1 + } + ] + }, { "name": "ShaderMaterial", "is_refcounted": true, @@ -189331,7 +194183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3341921675, "arguments": [ { "name": "shader", @@ -189345,7 +194197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2078273437, "return_value": { "type": "Shader" } @@ -189356,7 +194208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "param", @@ -189374,7 +194226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -189391,7 +194243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -189408,7 +194260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 309047738, "return_value": { "type": "Variant" }, @@ -189443,7 +194295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -189458,7 +194310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189470,7 +194322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 3709843132, "return_value": { "type": "bool" }, @@ -189495,7 +194347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517835, + "hash": 2869556801, "return_value": { "type": "bool" }, @@ -189528,7 +194380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 322365360, "return_value": { "type": "Array" }, @@ -189553,7 +194405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517835, + "hash": 1867376717, "return_value": { "type": "Array" }, @@ -189586,7 +194438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2948539648, "arguments": [ { "name": "canvas_item", @@ -189622,7 +194474,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -189637,7 +194489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189649,7 +194501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -189664,7 +194516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189676,7 +194528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1605880883, "return_value": { "type": "ArrayMesh" } @@ -189712,7 +194564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -189726,7 +194578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -189737,7 +194589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 771364740, "arguments": [ { "name": "shape", @@ -189751,7 +194603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 522005891, "return_value": { "type": "Shape2D" } @@ -189762,7 +194614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "local_point", @@ -189776,7 +194628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -189787,7 +194639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -189802,7 +194654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189814,7 +194666,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_results", @@ -189829,7 +194681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -189841,7 +194693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -189852,7 +194704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -189864,7 +194716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_collider", @@ -189872,7 +194724,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3332903315, "return_value": { "type": "Object" }, @@ -189890,7 +194742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -189909,7 +194761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -189927,7 +194779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -189945,7 +194797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189957,7 +194809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -189969,7 +194821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -189983,7 +194835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3090941106, "arguments": [ { "name": "node", @@ -189997,7 +194849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -190011,7 +194863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3090941106, "arguments": [ { "name": "node", @@ -190025,7 +194877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_collision_mask", @@ -190033,7 +194885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -190048,7 +194900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -190060,7 +194912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -190079,7 +194931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -190097,7 +194949,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "mask", @@ -190111,7 +194963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -190122,7 +194974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -190136,7 +194988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -190147,7 +194999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -190161,7 +195013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -190240,6 +195092,593 @@ } ] }, + { + "name": "ShapeCast3D", + "is_refcounted": false, + "is_instantiable": true, + "inherits": "Node3D", + "api_type": "core", + "methods": [ + { + "name": "resource_changed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 968641751, + "arguments": [ + { + "name": "resource", + "type": "Resource" + } + ] + }, + { + "name": "set_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enabled", + "type": "bool" + } + ] + }, + { + "name": "is_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_shape", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1549710052, + "arguments": [ + { + "name": "shape", + "type": "Shape3D" + } + ] + }, + { + "name": "get_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3214262478, + "return_value": { + "type": "Shape3D" + } + }, + { + "name": "set_target_position", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3460891852, + "arguments": [ + { + "name": "local_point", + "type": "Vector3" + } + ] + }, + { + "name": "get_target_position", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3360562783, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_margin", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "margin", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_margin", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_max_results", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "max_results", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_max_results", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "is_colliding", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_collision_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "force_shapecast_update", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3218959716 + }, + { + "name": "get_collider", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3332903315, + "return_value": { + "type": "Object" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collider_shape", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 923996154, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_point", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 711720468, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_collision_normal", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 711720468, + "return_value": { + "type": "Vector3" + }, + "arguments": [ + { + "name": "index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_closest_collision_safe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_closest_collision_unsafe_fraction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "add_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2722037293, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "add_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3975164845, + "arguments": [ + { + "name": "node", + "type": "Object" + } + ] + }, + { + "name": "remove_exception_rid", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2722037293, + "arguments": [ + { + "name": "rid", + "type": "RID" + } + ] + }, + { + "name": "remove_exception", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3975164845, + "arguments": [ + { + "name": "node", + "type": "Object" + } + ] + }, + { + "name": "clear_exceptions", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3218959716 + }, + { + "name": "set_collision_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_collision_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_collision_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_collision_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_exclude_parent_body", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "mask", + "type": "bool" + } + ] + }, + { + "name": "get_exclude_parent_body", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_areas", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_areas_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_collide_with_bodies", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_collide_with_bodies_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_debug_shape_custom_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2920490490, + "arguments": [ + { + "name": "debug_shape_custom_color", + "type": "Color" + } + ] + }, + { + "name": "get_debug_shape_custom_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3444240500, + "return_value": { + "type": "Color" + } + } + ], + "properties": [ + { + "type": "bool", + "name": "enabled", + "setter": "set_enabled", + "getter": "is_enabled", + "index": -1 + }, + { + "type": "Shape3D", + "name": "shape", + "setter": "set_shape", + "getter": "get_shape", + "index": -1 + }, + { + "type": "bool", + "name": "exclude_parent", + "setter": "set_exclude_parent_body", + "getter": "get_exclude_parent_body", + "index": -1 + }, + { + "type": "Vector3", + "name": "target_position", + "setter": "set_target_position", + "getter": "get_target_position", + "index": -1 + }, + { + "type": "float", + "name": "margin", + "setter": "set_margin", + "getter": "get_margin", + "index": -1 + }, + { + "type": "int", + "name": "max_results", + "setter": "set_max_results", + "getter": "get_max_results", + "index": -1 + }, + { + "type": "int", + "name": "collision_mask", + "setter": "set_collision_mask", + "getter": "get_collision_mask", + "index": -1 + }, + { + "type": "Array", + "name": "collision_result", + "setter": "", + "getter": "_get_collision_result", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_areas", + "setter": "set_collide_with_areas", + "getter": "is_collide_with_areas_enabled", + "index": -1 + }, + { + "type": "bool", + "name": "collide_with_bodies", + "setter": "set_collide_with_bodies", + "getter": "is_collide_with_bodies_enabled", + "index": -1 + }, + { + "type": "Color", + "name": "debug_shape_custom_color", + "setter": "set_debug_shape_custom_color", + "getter": "get_debug_shape_custom_color", + "index": -1 + } + ] + }, { "name": "Shortcut", "is_refcounted": true, @@ -190253,7 +195692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "events", @@ -190267,7 +195706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -190278,7 +195717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -190289,7 +195728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3738334489, "return_value": { "type": "bool" }, @@ -190306,7 +195745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -190335,7 +195774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -190347,7 +195786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2556267111, "return_value": { "type": "Bone2D" }, @@ -190365,7 +195804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -190376,7 +195815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3907307132, "arguments": [ { "name": "modification_stack", @@ -190390,7 +195829,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2107508396, "return_value": { "type": "SkeletonModificationStack2D" } @@ -190401,7 +195840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1005356550, "arguments": [ { "name": "delta", @@ -190421,7 +195860,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 555457532, "arguments": [ { "name": "bone_idx", @@ -190449,7 +195888,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2995540667, "return_value": { "type": "Transform2D" }, @@ -190487,7 +195926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -190501,7 +195940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int32" @@ -190519,7 +195958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -190537,7 +195976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "bone_idx", @@ -190556,7 +195995,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -190575,7 +196014,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "bone_idx", @@ -190595,7 +196034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -190607,7 +196046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -190622,7 +196061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3668444399, "return_value": { "type": "PackedInt32Array" }, @@ -190640,7 +196079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3500328261, "arguments": [ { "name": "bone_idx", @@ -190659,7 +196098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "bone_idx", @@ -190679,7 +196118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "bone_idx", @@ -190699,7 +196138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 969006518, "return_value": { "type": "PackedInt32Array" } @@ -190710,7 +196149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -190728,7 +196167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "bone_idx", @@ -190747,7 +196186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -190765,7 +196204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1032037385, "return_value": { "type": "Skin" } @@ -190776,7 +196215,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3405789568, "return_value": { "type": "SkinReference" }, @@ -190793,7 +196232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_bones", @@ -190801,7 +196240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_bone_pose", @@ -190809,7 +196248,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -190827,7 +196266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "bone_idx", @@ -190846,7 +196285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2823819782, "arguments": [ { "name": "bone_idx", @@ -190865,7 +196304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "bone_idx", @@ -190884,7 +196323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -190902,7 +196341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 476865136, "return_value": { "type": "Quaternion" }, @@ -190920,7 +196359,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -190938,7 +196377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -190956,7 +196395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "bone_idx", @@ -190976,7 +196415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_bone_global_pose_override", @@ -190984,7 +196423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 3483398371, "arguments": [ { "name": "bone_idx", @@ -191013,7 +196452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -191031,7 +196470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -191049,7 +196488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -191067,7 +196506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_bone_local_pose_override", @@ -191075,7 +196514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 3483398371, "arguments": [ { "name": "bone_idx", @@ -191104,7 +196543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -191122,7 +196561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "force_update_bone_child_transform", @@ -191130,7 +196569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -191139,13 +196578,40 @@ } ] }, + { + "name": "set_motion_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "motion_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_motion_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "global_pose_to_world_transform", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3396462327, "return_value": { "type": "Transform3D" }, @@ -191162,7 +196628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3396462327, "return_value": { "type": "Transform3D" }, @@ -191179,7 +196645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 518934792, "return_value": { "type": "Transform3D" }, @@ -191201,7 +196667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 518934792, "return_value": { "type": "Transform3D" }, @@ -191223,7 +196689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 97773470, "return_value": { "type": "Basis" }, @@ -191245,7 +196711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -191259,7 +196725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -191270,7 +196736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -191284,7 +196750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -191295,7 +196761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "physical_bones_start_simulation", @@ -191303,7 +196769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 326682341, + "hash": 2787316981, "arguments": [ { "name": "bones", @@ -191318,7 +196784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "exception", @@ -191332,7 +196798,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "exception", @@ -191346,7 +196812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3155601425, "arguments": [ { "name": "modification_stack", @@ -191360,7 +196826,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3888860108, "return_value": { "type": "SkeletonModificationStack3D" } @@ -191371,7 +196837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1005356550, "arguments": [ { "name": "delta", @@ -191413,6 +196879,13 @@ } ], "properties": [ + { + "type": "float", + "name": "motion_scale", + "setter": "set_motion_scale", + "getter": "get_motion_scale", + "index": -1 + }, { "type": "bool", "name": "show_rest_only", @@ -191442,7 +196915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "root_bone", @@ -191456,7 +196929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -191467,7 +196940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "tip_bone", @@ -191481,7 +196954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -191492,7 +196965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "interpolation", @@ -191507,7 +196980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -191519,7 +196992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "target", @@ -191533,7 +197006,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -191544,7 +197017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "node", @@ -191558,7 +197031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 277076166, "return_value": { "type": "NodePath" } @@ -191569,7 +197042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "override", @@ -191583,7 +197056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -191594,7 +197067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use", @@ -191608,7 +197081,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -191619,7 +197092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "local_position", @@ -191633,7 +197106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -191644,7 +197117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1488626673, "return_value": { "type": "Skeleton3D" } @@ -191655,7 +197128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -191666,7 +197139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "min_distance", @@ -191681,7 +197154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -191693,7 +197166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "iterations", @@ -191708,7 +197181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -191720,7 +197193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133278119, + "hash": 107499316, "arguments": [ { "name": "one_time", @@ -191735,7 +197208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -191857,7 +197330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -191871,7 +197344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -191882,7 +197355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2137761694, "return_value": { "type": "SkeletonModificationStack2D" } @@ -191893,7 +197366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "is_setup", @@ -191907,7 +197380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -191918,7 +197391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "execution_mode", @@ -191933,7 +197406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -191945,7 +197418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 1229502682, "return_value": { "type": "float", "meta": "float" @@ -191978,7 +197451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "draw_gizmo", @@ -191992,7 +197465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -192028,7 +197501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -192042,7 +197515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -192053,7 +197526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "tip_nodepath", @@ -192067,7 +197540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -192078,7 +197551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -192093,7 +197566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -192105,7 +197578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "joint_idx", @@ -192124,7 +197597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -192142,7 +197615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -192162,7 +197635,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -192181,7 +197654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -192200,7 +197673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -192218,7 +197691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -192237,7 +197710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -192255,7 +197728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -192275,7 +197748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -192294,7 +197767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -192314,7 +197787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -192333,7 +197806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -192352,7 +197825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -192402,7 +197875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -192416,7 +197889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -192427,7 +197900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -192442,7 +197915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -192454,7 +197927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "joint_idx", @@ -192473,7 +197946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -192491,7 +197964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -192511,7 +197984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -192530,7 +198003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "joint_idx", @@ -192549,7 +198022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -192567,7 +198040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -192586,7 +198059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -192629,7 +198102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -192643,7 +198116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -192654,7 +198127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -192669,7 +198142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -192681,7 +198154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "stiffness", @@ -192696,7 +198169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -192708,7 +198181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mass", @@ -192723,7 +198196,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -192735,7 +198208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "damping", @@ -192750,7 +198223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -192762,7 +198235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_gravity", @@ -192776,7 +198249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -192787,7 +198260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "gravity", @@ -192801,7 +198274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -192812,7 +198285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_colliders", @@ -192826,7 +198299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -192837,7 +198310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -192852,7 +198325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -192864,7 +198337,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "joint_idx", @@ -192883,7 +198356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -192901,7 +198374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -192921,7 +198394,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -192940,7 +198413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -192959,7 +198432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -192977,7 +198450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -192997,7 +198470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -193016,7 +198489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -193036,7 +198509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -193055,7 +198528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -193075,7 +198548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -193094,7 +198567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -193113,7 +198586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -193131,7 +198604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "joint_idx", @@ -193150,7 +198623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -193228,7 +198701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "bone2d_nodepath", @@ -193242,7 +198715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -193253,7 +198726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -193268,7 +198741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -193280,7 +198753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -193294,7 +198767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -193305,7 +198778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "rotation", @@ -193320,7 +198793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -193332,7 +198805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable_constraint", @@ -193346,7 +198819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -193357,7 +198830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angle_min", @@ -193372,7 +198845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -193384,7 +198857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "angle_max", @@ -193399,7 +198872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -193411,7 +198884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "invert", @@ -193425,7 +198898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -193468,7 +198941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -193483,7 +198956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -193495,7 +198968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "joint_idx", @@ -193514,7 +198987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -193532,7 +199005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "start_simulation", @@ -193540,7 +199013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 326682341, + "hash": 2787316981, "arguments": [ { "name": "bones", @@ -193555,7 +199028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 326682341, + "hash": 2787316981, "arguments": [ { "name": "bones", @@ -193588,7 +199061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3907307132, "arguments": [ { "name": "held_modification_stack", @@ -193602,7 +199075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2107508396, "return_value": { "type": "SkeletonModificationStack2D" } @@ -193622,7 +199095,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -193636,7 +199109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -193647,7 +199120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "minimum_distance", @@ -193662,7 +199135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -193674,7 +199147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "maximum_distance", @@ -193689,7 +199162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -193701,7 +199174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_direction", @@ -193715,7 +199188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -193726,7 +199199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "bone2d_node", @@ -193740,7 +199213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -193751,7 +199224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -193766,7 +199239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -193778,7 +199251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "bone2d_node", @@ -193792,7 +199265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -193803,7 +199276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -193818,7 +199291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -193895,7 +199368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -193909,7 +199382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -193920,7 +199393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3888860108, "return_value": { "type": "SkeletonModificationStack3D" } @@ -193931,7 +199404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "is_setup", @@ -193945,7 +199418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -193956,7 +199429,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "execution_mode", @@ -193971,7 +199444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -193983,7 +199456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 1229502682, "return_value": { "type": "float", "meta": "float" @@ -194041,7 +199514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -194055,7 +199528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -194066,7 +199539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "tip_nodepath", @@ -194080,7 +199553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -194091,7 +199564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "high_quality_solve", @@ -194105,7 +199578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -194116,7 +199589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -194134,7 +199607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "joint_idx", @@ -194153,7 +199626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -194172,7 +199645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -194192,7 +199665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -194211,7 +199684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -194231,7 +199704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -194249,7 +199722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -194268,7 +199741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -194287,7 +199760,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -194307,7 +199780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -194326,7 +199799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -194346,7 +199819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -194364,7 +199837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -194383,7 +199856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -194398,7 +199871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -194449,7 +199922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -194463,7 +199936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -194474,7 +199947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -194489,7 +199962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -194501,7 +199974,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "tolerance", @@ -194516,7 +199989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -194528,7 +200001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_iterations", @@ -194543,7 +200016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -194555,7 +200028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -194573,7 +200046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "joint_idx", @@ -194592,7 +200065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -194611,7 +200084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -194631,7 +200104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -194650,7 +200123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -194670,7 +200143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -194688,7 +200161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "joint_idx", @@ -194707,7 +200180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -194725,7 +200198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -194744,7 +200217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "joint_idx", @@ -194759,7 +200232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -194777,7 +200250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -194796,7 +200269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 408788394, "return_value": { "type": "NodePath" }, @@ -194814,7 +200287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2761262315, "arguments": [ { "name": "joint_idx", @@ -194833,7 +200306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -194851,7 +200324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -194909,7 +200382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -194923,7 +200396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -194934,7 +200407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "length", @@ -194949,7 +200422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -194961,7 +200434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "stiffness", @@ -194976,7 +200449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -194988,7 +200461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mass", @@ -195003,7 +200476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -195015,7 +200488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "damping", @@ -195030,7 +200503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -195042,7 +200515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_gravity", @@ -195056,7 +200529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -195067,7 +200540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "gravity", @@ -195081,7 +200554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -195092,7 +200565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_colliders", @@ -195106,7 +200579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -195117,7 +200590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -195132,7 +200605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -195144,7 +200617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "joint_idx", @@ -195163,7 +200636,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -195181,7 +200654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "joint_idx", @@ -195201,7 +200674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -195220,7 +200693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -195239,7 +200712,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -195257,7 +200730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -195277,7 +200750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -195296,7 +200769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -195316,7 +200789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -195335,7 +200808,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -195355,7 +200828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -195374,7 +200847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "joint_idx", @@ -195393,7 +200866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -195411,7 +200884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1530502735, "arguments": [ { "name": "joint_idx", @@ -195430,7 +200903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 711720468, "return_value": { "type": "Vector3" }, @@ -195448,7 +200921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "joint_idx", @@ -195468,7 +200941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -195547,7 +201020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -195561,7 +201034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -195572,7 +201045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -195587,7 +201060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -195599,7 +201072,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -195613,7 +201086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -195624,7 +201097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "additional_rotation", @@ -195638,7 +201111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -195649,7 +201122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "lock_to_plane", @@ -195663,7 +201136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -195674,7 +201147,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "plane", @@ -195689,7 +201162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -195733,7 +201206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3155601425, "arguments": [ { "name": "held_modification_stack", @@ -195747,7 +201220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3652152314, "return_value": { "type": "SkeletonModificationStack3D" } @@ -195767,7 +201240,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "target_nodepath", @@ -195781,7 +201254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -195792,7 +201265,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_pole_node", @@ -195806,7 +201279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -195817,7 +201290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "pole_nodepath", @@ -195831,7 +201304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -195842,7 +201315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_tip_node", @@ -195856,7 +201329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -195867,7 +201340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "tip_nodepath", @@ -195881,7 +201354,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -195892,7 +201365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "auto_calculate_joint_length", @@ -195906,7 +201379,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -195917,7 +201390,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "bone_name", @@ -195931,7 +201404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -195942,7 +201415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -195957,7 +201430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -195969,7 +201442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bone_length", @@ -195984,7 +201457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -195996,7 +201469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "bone_name", @@ -196010,7 +201483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -196021,7 +201494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bone_idx", @@ -196036,7 +201509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -196048,7 +201521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bone_length", @@ -196063,7 +201536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -196075,7 +201548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "roll", @@ -196090,7 +201563,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -196102,7 +201575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "roll", @@ -196117,7 +201590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -196147,7 +201620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "execute", @@ -196155,7 +201628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1005356550, "arguments": [ { "name": "delta", @@ -196175,7 +201648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -196189,7 +201662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2570274329, "return_value": { "type": "SkeletonModification2D" }, @@ -196207,7 +201680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 354162120, "arguments": [ { "name": "modification", @@ -196221,7 +201694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mod_idx", @@ -196236,7 +201709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1098262544, "arguments": [ { "name": "mod_idx", @@ -196255,7 +201728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -196270,7 +201743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -196282,7 +201755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -196293,7 +201766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -196307,7 +201780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -196318,7 +201791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -196333,7 +201806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -196345,7 +201818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1697361217, "return_value": { "type": "Skeleton2D" } @@ -196388,7 +201861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "execute", @@ -196396,7 +201869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1005356550, "arguments": [ { "name": "delta", @@ -196416,7 +201889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -196430,7 +201903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4260634309, "return_value": { "type": "SkeletonModification3D" }, @@ -196448,7 +201921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2301100674, "arguments": [ { "name": "modification", @@ -196462,7 +201935,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mod_idx", @@ -196477,7 +201950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 94671383, "arguments": [ { "name": "mod_idx", @@ -196496,7 +201969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -196511,7 +201984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -196523,7 +201996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -196534,7 +202007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -196548,7 +202021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -196559,7 +202032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "strength", @@ -196574,7 +202047,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -196586,7 +202059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1488626673, "return_value": { "type": "Skeleton3D" } @@ -196616,6 +202089,532 @@ } ] }, + { + "name": "SkeletonProfile", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Resource", + "api_type": "core", + "enums": [ + { + "name": "TailDirection", + "is_bitfield": false, + "values": [ + { + "name": "TAIL_DIRECTION_AVERAGE_CHILDREN", + "value": 0 + }, + { + "name": "TAIL_DIRECTION_SPECIFIC_CHILD", + "value": 1 + }, + { + "name": "TAIL_DIRECTION_END", + "value": 2 + } + ] + } + ], + "methods": [ + { + "name": "set_root_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3304788590, + "arguments": [ + { + "name": "bone_name", + "type": "StringName" + } + ] + }, + { + "name": "get_root_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2737447660, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_scale_base_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3304788590, + "arguments": [ + { + "name": "bone_name", + "type": "StringName" + } + ] + }, + { + "name": "get_scale_base_bone", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2737447660, + "return_value": { + "type": "StringName" + } + }, + { + "name": "set_group_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_group_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2455072627, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "get_group_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 659327637, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "group_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_group_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3780747571, + "arguments": [ + { + "name": "group_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "group_name", + "type": "StringName" + } + ] + }, + { + "name": "get_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3536238170, + "return_value": { + "type": "Texture2D" + }, + "arguments": [ + { + "name": "group_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 666127730, + "arguments": [ + { + "name": "group_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "set_bone_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "size", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_bone_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2455072627, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "find_bone", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2458036349, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "bone_name", + "type": "StringName" + } + ] + }, + { + "name": "get_bone_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 659327637, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3780747571, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_name", + "type": "StringName" + } + ] + }, + { + "name": "get_bone_parent", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 659327637, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_parent", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3780747571, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_parent", + "type": "StringName" + } + ] + }, + { + "name": "get_tail_direction", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2675997574, + "return_value": { + "type": "enum::SkeletonProfile.TailDirection" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_tail_direction", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1231951015, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "tail_direction", + "type": "enum::SkeletonProfile.TailDirection" + } + ] + }, + { + "name": "get_bone_tail", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 659327637, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_bone_tail", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3780747571, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_tail", + "type": "StringName" + } + ] + }, + { + "name": "get_reference_pose", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1965739696, + "return_value": { + "type": "Transform3D" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_reference_pose", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3616898986, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "bone_name", + "type": "Transform3D" + } + ] + }, + { + "name": "get_handle_offset", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2299179447, + "return_value": { + "type": "Vector2" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_handle_offset", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 163021252, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "handle_offset", + "type": "Vector2" + } + ] + }, + { + "name": "get_group", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 659327637, + "return_value": { + "type": "StringName" + }, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_group", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3780747571, + "arguments": [ + { + "name": "bone_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "group", + "type": "StringName" + } + ] + } + ], + "signals": [ + { + "name": "profile_updated" + } + ], + "properties": [ + { + "type": "StringName", + "name": "root_bone", + "setter": "set_root_bone", + "getter": "get_root_bone", + "index": -1 + }, + { + "type": "StringName", + "name": "scale_base_bone", + "setter": "set_scale_base_bone", + "getter": "get_scale_base_bone", + "index": -1 + }, + { + "type": "Groups,groups/", + "name": "group_size", + "setter": "set_group_size", + "getter": "get_group_size", + "index": -1 + }, + { + "type": "Bones,bones/", + "name": "bone_size", + "setter": "set_bone_size", + "getter": "get_bone_size", + "index": -1 + } + ] + }, + { + "name": "SkeletonProfileHumanoid", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "SkeletonProfile", + "api_type": "core" + }, { "name": "Skin", "is_refcounted": true, @@ -196629,7 +202628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "bind_count", @@ -196644,7 +202643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -196656,7 +202655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "bone", @@ -196675,7 +202674,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3154712474, "arguments": [ { "name": "name", @@ -196693,7 +202692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3616898986, "arguments": [ { "name": "bind_index", @@ -196712,7 +202711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965739696, "return_value": { "type": "Transform3D" }, @@ -196730,7 +202729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3780747571, "arguments": [ { "name": "bind_index", @@ -196749,7 +202748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 659327637, "return_value": { "type": "StringName" }, @@ -196767,7 +202766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "bind_index", @@ -196787,7 +202786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -196806,7 +202805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -196823,7 +202822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -196834,7 +202833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2074563878, "return_value": { "type": "Skin" } @@ -196850,6 +202849,7 @@ "enums": [ { "name": "RadianceSize", + "is_bitfield": false, "values": [ { "name": "RADIANCE_SIZE_32", @@ -196887,6 +202887,7 @@ }, { "name": "ProcessMode", + "is_bitfield": false, "values": [ { "name": "PROCESS_MODE_AUTOMATIC", @@ -196914,7 +202915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1512957179, "arguments": [ { "name": "size", @@ -196928,7 +202929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2708733976, "return_value": { "type": "enum::Sky.RadianceSize" } @@ -196939,7 +202940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 875986769, "arguments": [ { "name": "mode", @@ -196953,7 +202954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 731245043, "return_value": { "type": "enum::Sky.ProcessMode" } @@ -196964,7 +202965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -196978,7 +202979,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { "type": "Material" } @@ -197021,7 +203022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -197036,7 +203037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -197048,7 +203049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -197059,7 +203060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ticks_on_border", @@ -197073,7 +203074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "editable", @@ -197087,7 +203088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -197098,7 +203099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "scrollable", @@ -197112,7 +203113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -197172,6 +203173,7 @@ "enums": [ { "name": "Param", + "is_bitfield": false, "values": [ { "name": "PARAM_LINEAR_LIMIT_UPPER", @@ -197275,7 +203277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 918243683, "arguments": [ { "name": "param", @@ -197294,7 +203296,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 959925627, "return_value": { "type": "float", "meta": "float" @@ -197473,6 +203475,7 @@ "enums": [ { "name": "DisableMode", + "is_bitfield": false, "values": [ { "name": "DISABLE_MODE_REMOVE", @@ -197492,7 +203495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -197503,7 +203506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_mask", @@ -197518,7 +203521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -197530,7 +203533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "collision_layer", @@ -197545,7 +203548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -197557,7 +203560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -197576,7 +203579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -197594,7 +203597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -197613,7 +203616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -197631,7 +203634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "parent_collision_ignore", @@ -197645,7 +203648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -197656,7 +203659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3605008527, "arguments": [ { "name": "mode", @@ -197670,7 +203673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 599013717, "return_value": { "type": "enum::SoftDynamicBody3D.DisableMode" } @@ -197681,7 +203684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -197692,7 +203695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "body", @@ -197706,7 +203709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "body", @@ -197720,7 +203723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "simulation_precision", @@ -197735,7 +203738,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -197747,7 +203750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mass", @@ -197762,7 +203765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -197774,7 +203777,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "linear_stiffness", @@ -197789,7 +203792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -197801,7 +203804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pressure_coefficient", @@ -197816,7 +203819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -197828,7 +203831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "damping_coefficient", @@ -197843,7 +203846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -197855,7 +203858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "drag_coefficient", @@ -197870,7 +203873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -197882,7 +203885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 871989493, "return_value": { "type": "Vector3" }, @@ -197900,7 +203903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3814935226, "arguments": [ { "name": "point_index", @@ -197924,7 +203927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -197942,7 +203945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ray_pickable", @@ -197956,7 +203959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198055,7 +204058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -198070,7 +204073,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -198082,7 +204085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "height", @@ -198097,7 +204100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -198109,7 +204112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "radial_segments", @@ -198124,7 +204127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -198136,7 +204139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "rings", @@ -198151,7 +204154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -198163,7 +204166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "is_hemisphere", @@ -198177,7 +204180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198234,7 +204237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -198249,7 +204252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -198279,7 +204282,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -198294,7 +204297,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -198324,7 +204327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -198338,7 +204341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -198349,7 +204352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "suffix", @@ -198363,7 +204366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -198374,7 +204377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "prefix", @@ -198388,7 +204391,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -198399,7 +204402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -198413,7 +204416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198424,7 +204427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -198438,7 +204441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198449,7 +204452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_line_edit", @@ -198457,7 +204460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4071694264, "return_value": { "type": "LineEdit" } @@ -198510,6 +204513,7 @@ "enums": [ { "name": "DraggerVisibility", + "is_bitfield": false, "values": [ { "name": "DRAGGER_VISIBLE", @@ -198533,7 +204537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "offset", @@ -198548,7 +204552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -198560,7 +204564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_collapsed", @@ -198568,7 +204572,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "collapsed", @@ -198582,7 +204586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198593,7 +204597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1168273952, "arguments": [ { "name": "mode", @@ -198607,7 +204611,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 967297479, "return_value": { "type": "enum::SplitContainer.DraggerVisibility" } @@ -198698,7 +204702,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -198710,7 +204714,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -198725,7 +204729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -198737,7 +204741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1549710052, "arguments": [ { "name": "shape", @@ -198751,7 +204755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3214262478, "return_value": { "type": "Shape3D" } @@ -198762,7 +204766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "RID", @@ -198776,7 +204780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -198793,7 +204797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_collision_mask", @@ -198801,7 +204805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -198816,7 +204820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint32" @@ -198828,7 +204832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "margin", @@ -198843,7 +204847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -198894,7 +204898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -198908,7 +204912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -198919,7 +204923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "centered", @@ -198933,7 +204937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198944,7 +204948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -198958,7 +204962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -198969,7 +204973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_h", @@ -198983,7 +204987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -198994,7 +204998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_v", @@ -199008,7 +205012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199019,7 +205023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -199033,7 +205037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199044,7 +205048,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 556197845, "return_value": { "type": "bool" }, @@ -199061,7 +205065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "rect", @@ -199075,7 +205079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -199086,7 +205090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -199100,7 +205104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199111,7 +205115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frame", @@ -199126,7 +205130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199138,7 +205142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "coords", @@ -199152,7 +205156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -199163,7 +205167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "vframes", @@ -199178,7 +205182,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199190,7 +205194,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "hframes", @@ -199205,7 +205209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199217,7 +205221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -199331,7 +205335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -199345,7 +205349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -199356,7 +205360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -199370,7 +205374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199381,7 +205385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "rect", @@ -199395,7 +205399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -199406,7 +205410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "frame", @@ -199421,7 +205425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199433,7 +205437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "coords", @@ -199447,7 +205451,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -199458,7 +205462,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "vframes", @@ -199473,7 +205477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199485,7 +205489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "hframes", @@ -199500,7 +205504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199576,6 +205580,7 @@ "enums": [ { "name": "DrawFlags", + "is_bitfield": false, "values": [ { "name": "FLAG_TRANSPARENT", @@ -199605,6 +205610,7 @@ }, { "name": "AlphaCutMode", + "is_bitfield": false, "values": [ { "name": "ALPHA_CUT_DISABLED", @@ -199628,7 +205634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "centered", @@ -199642,7 +205648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199653,7 +205659,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -199667,7 +205673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -199678,7 +205684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_h", @@ -199692,7 +205698,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199703,7 +205709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_v", @@ -199717,7 +205723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -199728,7 +205734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "modulate", @@ -199742,7 +205748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -199753,7 +205759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "priority", @@ -199768,7 +205774,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -199780,7 +205786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixel_size", @@ -199795,7 +205801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -199807,7 +205813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1144690656, "arguments": [ { "name": "axis", @@ -199821,7 +205827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3050976882, "return_value": { "type": "enum::Vector3.Axis" } @@ -199832,7 +205838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1135633219, "arguments": [ { "name": "flag", @@ -199850,7 +205856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1733036628, "return_value": { "type": "bool" }, @@ -199867,7 +205873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 227561226, "arguments": [ { "name": "mode", @@ -199881,7 +205887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 336003791, "return_value": { "type": "enum::SpriteBase3D.AlphaCutMode" } @@ -199892,7 +205898,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4202036497, "arguments": [ { "name": "mode", @@ -199906,7 +205912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1283840139, "return_value": { "type": "enum::BaseMaterial3D.BillboardMode" } @@ -199917,7 +205923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 22904437, "arguments": [ { "name": "mode", @@ -199931,7 +205937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3289213076, "return_value": { "type": "enum::BaseMaterial3D.TextureFilter" } @@ -199942,7 +205948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -199953,7 +205959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3476533166, "return_value": { "type": "TriangleMesh" } @@ -200087,7 +206093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "anim", @@ -200101,7 +206107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -200118,7 +206124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "anim", @@ -200132,7 +206138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "anim", @@ -200150,7 +206156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -200161,7 +206167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4135858297, "arguments": [ { "name": "anim", @@ -200180,7 +206186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2349060816, "return_value": { "type": "float", "meta": "double" @@ -200198,7 +206204,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2524380260, "arguments": [ { "name": "anim", @@ -200216,7 +206222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -200233,7 +206239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 1628453603, "arguments": [ { "name": "anim", @@ -200257,7 +206263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2458036349, "return_value": { "type": "int", "meta": "int32" @@ -200275,7 +206281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2900517879, "return_value": { "type": "Texture2D" }, @@ -200297,7 +206303,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3435961619, "arguments": [ { "name": "anim", @@ -200320,7 +206326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "anim", @@ -200339,7 +206345,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "anim", @@ -200353,17 +206359,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ - { - "type": "Array", - "name": "frames", - "setter": "_set_frames", - "getter": "_get_frames", - "index": -1 - }, { "type": "Array", "name": "animations", @@ -200393,7 +206392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "vel", @@ -200407,7 +206406,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "vel", @@ -200422,7 +206421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -200433,7 +206432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -200445,7 +206444,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1784508650, "arguments": [ { "name": "physics_material_override", @@ -200459,7 +206458,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2521850424, "return_value": { "type": "PhysicsMaterial" } @@ -200502,7 +206501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "vel", @@ -200516,7 +206515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "vel", @@ -200530,7 +206529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -200541,7 +206540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -200552,7 +206551,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1784508650, "arguments": [ { "name": "physics_material_override", @@ -200566,7 +206565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2521850424, "return_value": { "type": "PhysicsMaterial" } @@ -200609,7 +206608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -200626,7 +206625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2934048347, "return_value": { "type": "Array" }, @@ -200643,7 +206642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1171824711, "return_value": { "type": "Array" }, @@ -200661,7 +206660,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1171824711, "return_value": { "type": "Array" }, @@ -200679,7 +206678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -200691,7 +206690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -200705,7 +206704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -200716,7 +206715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200731,7 +206730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200746,7 +206745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200761,7 +206760,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200776,7 +206775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200791,7 +206790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200806,7 +206805,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200821,7 +206820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -200836,7 +206835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -200851,7 +206850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -200866,7 +206865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "value", @@ -200880,7 +206879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "value", @@ -200894,7 +206893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 738511890, "arguments": [ { "name": "value", @@ -200913,7 +206912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int8" @@ -200925,7 +206924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint8" @@ -200937,7 +206936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int16" @@ -200949,7 +206948,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint16" @@ -200961,7 +206960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -200973,7 +206972,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint32" @@ -200985,7 +206984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int64" @@ -200997,7 +206996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint64" @@ -201009,7 +207008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -201021,7 +207020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "double" @@ -201033,7 +207032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204402, + "hash": 2309358862, "return_value": { "type": "String" }, @@ -201052,7 +207051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204402, + "hash": 2309358862, "return_value": { "type": "String" }, @@ -201071,7 +207070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 3442865206, "return_value": { "type": "Variant" }, @@ -201107,7 +207106,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "position", @@ -201122,7 +207121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -201134,7 +207133,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -201146,7 +207145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -201161,7 +207160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2971499966, "arguments": [ { "name": "data", @@ -201175,7 +207174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -201186,7 +207185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "duplicate", @@ -201194,7 +207193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2474064677, "return_value": { "type": "StreamPeerBuffer" } @@ -201334,6 +207333,7 @@ "enums": [ { "name": "Status", + "is_bitfield": false, "values": [ { "name": "STATUS_DISCONNECTED", @@ -201365,7 +207365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "accept_stream", @@ -201373,7 +207373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 2359858912, "return_value": { "type": "enum::Error" }, @@ -201403,7 +207403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2738288146, + "hash": 127827767, "return_value": { "type": "enum::Error" }, @@ -201435,7 +207435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 524219300, "return_value": { "type": "enum::StreamPeerSSL.Status" } @@ -201446,7 +207446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2741655269, "return_value": { "type": "StreamPeer" } @@ -201457,7 +207457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_blocking_handshake_enabled", @@ -201465,7 +207465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -201479,7 +207479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -201504,6 +207504,7 @@ "enums": [ { "name": "Status", + "is_bitfield": false, "values": [ { "name": "STATUS_NONE", @@ -201531,7 +207532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 4025329869, "return_value": { "type": "enum::Error" }, @@ -201554,7 +207555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 993915709, "return_value": { "type": "enum::Error" }, @@ -201576,7 +207577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -201587,7 +207588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 859471121, "return_value": { "type": "enum::StreamPeerTCP.Status" } @@ -201598,7 +207599,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -201609,7 +207610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -201621,7 +207622,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -201633,7 +207634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_no_delay", @@ -201641,7 +207642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -201743,7 +207744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3735564539, "return_value": { "type": "bool" }, @@ -201764,7 +207765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4290182280, "arguments": [ { "name": "margin", @@ -201783,7 +207784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -201801,7 +207802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -201819,7 +207820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -201830,7 +207831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -201841,7 +207842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -201852,7 +207853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3213695180, "return_value": { "type": "CanvasItem" } @@ -201863,7 +207864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224136, + "hash": 2275962004, "arguments": [ { "name": "canvas_item", @@ -201927,7 +207928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -201941,7 +207942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -201952,7 +207953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -201966,7 +207967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -201977,7 +207978,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -201992,7 +207993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -202004,7 +208005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 437707142, "arguments": [ { "name": "margin", @@ -202023,7 +208024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1983885014, "return_value": { "type": "int", "meta": "int32" @@ -202041,7 +208042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "blend", @@ -202055,7 +208056,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -202066,7 +208067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4275841770, "arguments": [ { "name": "radius_top_left", @@ -202096,7 +208097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "radius", @@ -202111,7 +208112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2696158768, "arguments": [ { "name": "corner", @@ -202130,7 +208131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3982397690, "return_value": { "type": "int", "meta": "int32" @@ -202148,7 +208149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4290182280, "arguments": [ { "name": "margin", @@ -202167,7 +208168,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -202182,7 +208183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3948312143, "arguments": [ { "name": "size_left", @@ -202212,7 +208213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -202230,7 +208231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "draw_center", @@ -202244,7 +208245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -202255,7 +208256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "skew", @@ -202269,7 +208270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -202280,7 +208281,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -202294,7 +208295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -202305,7 +208306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -202320,7 +208321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -202332,7 +208333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -202346,7 +208347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -202357,7 +208358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "anti_aliased", @@ -202371,7 +208372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -202382,7 +208383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -202397,7 +208398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -202409,7 +208410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "detail", @@ -202424,7 +208425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -202608,7 +208609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -202622,7 +208623,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -202633,7 +208634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "thickness", @@ -202648,7 +208649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -202660,7 +208661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -202675,7 +208676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -202687,7 +208688,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "offset", @@ -202702,7 +208703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -202714,7 +208715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "vertical", @@ -202728,7 +208729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -202781,6 +208782,7 @@ "enums": [ { "name": "AxisStretchMode", + "is_bitfield": false, "values": [ { "name": "AXIS_STRETCH_MODE_STRETCH", @@ -202804,7 +208806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -202818,7 +208820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -202829,7 +208831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4290182280, "arguments": [ { "name": "margin", @@ -202848,7 +208850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -202866,7 +208868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4290182280, "arguments": [ { "name": "margin", @@ -202885,7 +208887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "size", @@ -202900,7 +208902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3948312143, "arguments": [ { "name": "size_left", @@ -202930,7 +208932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2869120046, "return_value": { "type": "float", "meta": "float" @@ -202948,7 +208950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "region", @@ -202962,7 +208964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -202973,7 +208975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -202987,7 +208989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -202998,7 +209000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -203012,7 +209014,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -203023,7 +209025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2965538783, "arguments": [ { "name": "mode", @@ -203037,7 +209039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3807744063, "return_value": { "type": "enum::StyleBoxTexture.AxisStretchMode" } @@ -203048,7 +209050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2965538783, "arguments": [ { "name": "mode", @@ -203062,7 +209064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3807744063, "return_value": { "type": "enum::StyleBoxTexture.AxisStretchMode" } @@ -203178,6 +209180,7 @@ "enums": [ { "name": "ClearMode", + "is_bitfield": false, "values": [ { "name": "CLEAR_MODE_ALWAYS", @@ -203195,6 +209198,7 @@ }, { "name": "UpdateMode", + "is_bitfield": false, "values": [ { "name": "UPDATE_DISABLED", @@ -203226,7 +209230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -203240,7 +209244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -203251,7 +209255,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -203265,7 +209269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -203276,7 +209280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -203290,7 +209294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -203301,7 +209305,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1295690030, "arguments": [ { "name": "mode", @@ -203315,7 +209319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2980171553, "return_value": { "type": "enum::SubViewport.UpdateMode" } @@ -203326,7 +209330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2834454712, "arguments": [ { "name": "mode", @@ -203340,7 +209344,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 331324495, "return_value": { "type": "enum::SubViewport.ClearMode" } @@ -203397,7 +209401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -203411,7 +209415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -203422,7 +209426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -203437,7 +209441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -203470,6 +209474,7 @@ "enums": [ { "name": "CustomFormat", + "is_bitfield": false, "values": [ { "name": "CUSTOM_RGBA8_UNORM", @@ -203511,6 +209516,7 @@ }, { "name": "SkinWeightCount", + "is_bitfield": false, "values": [ { "name": "SKIN_4_WEIGHTS", @@ -203530,7 +209536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 618679515, "arguments": [ { "name": "count", @@ -203544,7 +209550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1072401130, "return_value": { "type": "enum::SurfaceTool.SkinWeightCount" } @@ -203555,10 +209561,10 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4087759856, "arguments": [ { - "name": "index", + "name": "channel_index", "type": "int", "meta": "int32" }, @@ -203574,13 +209580,13 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 839863283, "return_value": { "type": "enum::SurfaceTool.CustomFormat" }, "arguments": [ { - "name": "index", + "name": "channel_index", "type": "int", "meta": "int32" } @@ -203592,7 +209598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2230304113, "arguments": [ { "name": "primitive", @@ -203606,7 +209612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "vertex", @@ -203620,7 +209626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "color", @@ -203634,7 +209640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "normal", @@ -203648,7 +209654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3505987427, "arguments": [ { "name": "tangent", @@ -203662,7 +209668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "uv", @@ -203676,7 +209682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "uv2", @@ -203690,7 +209696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3614634198, "arguments": [ { "name": "bones", @@ -203704,7 +209710,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "weights", @@ -203718,15 +209724,15 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { - "name": "index", + "name": "channel_index", "type": "int", "meta": "int32" }, { - "name": "custom", + "name": "custom_color", "type": "Color" } ] @@ -203737,7 +209743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -203752,7 +209758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1486656780, + "hash": 297960074, "arguments": [ { "name": "vertices", @@ -203791,7 +209797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -203806,7 +209812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "deindex", @@ -203814,7 +209820,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "generate_normals", @@ -203822,7 +209828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133278119, + "hash": 107499316, "arguments": [ { "name": "flip", @@ -203837,7 +209843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "optimize_indices_for_cache", @@ -203845,18 +209851,17 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { - "name": "get_max_axis_length", + "name": "get_aabb", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { - "type": "float", - "meta": "float" + "type": "AABB" } }, { @@ -203865,7 +209870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 1894448909, "return_value": { "type": "PackedInt32Array" }, @@ -203889,7 +209894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", @@ -203898,12 +209903,12 @@ ] }, { - "name": "get_primitive", + "name": "get_primitive_type", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 768822145, "return_value": { "type": "enum::Mesh.PrimitiveType" } @@ -203914,7 +209919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create_from", @@ -203922,7 +209927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1767024570, "arguments": [ { "name": "existing", @@ -203941,7 +209946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1306185582, "arguments": [ { "name": "existing", @@ -203964,7 +209969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2217967155, "arguments": [ { "name": "existing", @@ -203987,7 +209992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3852883413, + "hash": 4107864055, "return_value": { "type": "ArrayMesh" }, @@ -204011,7 +210016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -204061,7 +210066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3554694381, "return_value": { "type": "Dictionary" }, @@ -204079,7 +210084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_highlighting_cache", @@ -204087,7 +210092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_text_edit", @@ -204095,13 +210100,278 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2185802765, "return_value": { "type": "TextEdit" } } ] }, + { + "name": "SystemFont", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "Font", + "api_type": "core", + "methods": [ + { + "name": "set_antialiased", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "antialiased", + "type": "bool" + } + ] + }, + { + "name": "is_antialiased", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_generate_mipmaps", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "generate_mipmaps", + "type": "bool" + } + ] + }, + { + "name": "get_generate_mipmaps", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_force_autohinter", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "force_autohinter", + "type": "bool" + } + ] + }, + { + "name": "is_force_autohinter", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_hinting", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1827459492, + "arguments": [ + { + "name": "hinting", + "type": "enum::TextServer.Hinting" + } + ] + }, + { + "name": "get_hinting", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3683214614, + "return_value": { + "type": "enum::TextServer.Hinting" + } + }, + { + "name": "set_subpixel_positioning", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4225742182, + "arguments": [ + { + "name": "subpixel_positioning", + "type": "enum::TextServer.SubpixelPositioning" + } + ] + }, + { + "name": "get_subpixel_positioning", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1069238588, + "return_value": { + "type": "enum::TextServer.SubpixelPositioning" + } + }, + { + "name": "set_oversampling", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "oversampling", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_oversampling", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "get_font_names", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1139954409, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_font_names", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4015028928, + "arguments": [ + { + "name": "names", + "type": "PackedStringArray" + } + ] + }, + { + "name": "set_font_style", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 918070724, + "arguments": [ + { + "name": "style", + "type": "bitfield::TextServer.FontStyle" + } + ] + } + ], + "properties": [ + { + "type": "PackedStringArray", + "name": "font_names", + "setter": "set_font_names", + "getter": "get_font_names", + "index": -1 + }, + { + "type": "int", + "name": "font_style", + "setter": "set_font_style", + "getter": "get_font_style", + "index": -1 + }, + { + "type": "bool", + "name": "antialiased", + "setter": "set_antialiased", + "getter": "is_antialiased", + "index": -1 + }, + { + "type": "bool", + "name": "generate_mipmaps", + "setter": "set_generate_mipmaps", + "getter": "get_generate_mipmaps", + "index": -1 + }, + { + "type": "bool", + "name": "force_autohinter", + "setter": "set_force_autohinter", + "getter": "is_force_autohinter", + "index": -1 + }, + { + "type": "int", + "name": "hinting", + "setter": "set_hinting", + "getter": "get_hinting", + "index": -1 + }, + { + "type": "int", + "name": "subpixel_positioning", + "setter": "set_subpixel_positioning", + "getter": "get_subpixel_positioning", + "index": -1 + }, + { + "type": "float", + "name": "oversampling", + "setter": "set_oversampling", + "getter": "get_oversampling", + "index": -1 + }, + { + "type": "Array", + "name": "fallbacks", + "setter": "set_fallbacks", + "getter": "get_fallbacks", + "index": -1 + } + ] + }, { "name": "TCPServer", "is_refcounted": true, @@ -204115,7 +210385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 4025329869, "return_value": { "type": "enum::Error" }, @@ -204138,7 +210408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204149,7 +210419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204160,7 +210430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204172,7 +210442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 30545006, "return_value": { "type": "StreamPeerTCP" } @@ -204183,7 +210453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -204196,6 +210466,7 @@ "enums": [ { "name": "AlignmentMode", + "is_bitfield": false, "values": [ { "name": "ALIGNMENT_LEFT", @@ -204217,6 +210488,7 @@ }, { "name": "CloseButtonDisplayPolicy", + "is_bitfield": false, "values": [ { "name": "CLOSE_BUTTON_SHOW_NEVER", @@ -204244,7 +210516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "count", @@ -204259,7 +210531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204271,7 +210543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "tab_idx", @@ -204286,7 +210558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204298,7 +210570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204310,7 +210582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "tab_idx", @@ -204329,7 +210601,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -204347,7 +210619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1707680378, "arguments": [ { "name": "tab_idx", @@ -204366,7 +210638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4235602388, "return_value": { "type": "enum::Control.TextDirection" }, @@ -204378,75 +210650,13 @@ } ] }, - { - "name": "set_tab_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134260040, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - }, - { - "name": "values", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_tab_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135410057, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_tab_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "tab_idx", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "set_tab_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "tab_idx", @@ -204465,7 +210675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -204483,7 +210693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "tab_idx", @@ -204502,7 +210712,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -204520,7 +210730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "tab_idx", @@ -204539,7 +210749,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -204557,7 +210767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "tab_idx", @@ -204576,7 +210786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -204594,7 +210804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "tab_idx", @@ -204613,7 +210823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -204631,7 +210841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "tab_idx", @@ -204646,7 +210856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 530285939, + "hash": 1465444425, "arguments": [ { "name": "title", @@ -204666,7 +210876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3820158470, "return_value": { "type": "int", "meta": "int32" @@ -204684,7 +210894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2413632353, "arguments": [ { "name": "alignment", @@ -204698,7 +210908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2178122193, "return_value": { "type": "enum::TabBar.AlignmentMode" } @@ -204709,7 +210919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "clip_tabs", @@ -204723,7 +210933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204734,7 +210944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204746,7 +210956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204757,7 +210967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "idx", @@ -204772,7 +210982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3327874267, "return_value": { "type": "Rect2" }, @@ -204790,7 +211000,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from", @@ -204810,7 +211020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2212906737, "arguments": [ { "name": "policy", @@ -204824,7 +211034,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2956568028, "return_value": { "type": "enum::TabBar.CloseButtonDisplayPolicy" } @@ -204835,7 +211045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -204850,7 +211060,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204862,7 +211072,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -204876,7 +211086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204887,7 +211097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -204901,7 +211111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204912,7 +211122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "group_id", @@ -204927,7 +211137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -204939,7 +211149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -204953,7 +211163,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -204964,7 +211174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -204978,7 +211188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -205151,7 +211361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -205163,7 +211373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "tab_idx", @@ -205178,7 +211388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -205190,7 +211400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -205202,7 +211412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2783021301, "return_value": { "type": "Control" } @@ -205213,7 +211423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1065994134, "return_value": { "type": "Control" }, @@ -205231,7 +211441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2413632353, "arguments": [ { "name": "alignment", @@ -205245,7 +211455,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2178122193, "return_value": { "type": "enum::TabBar.AlignmentMode" } @@ -205256,7 +211466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "clip_tabs", @@ -205270,7 +211480,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -205281,7 +211491,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -205295,7 +211505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -205306,7 +211516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "is_front", @@ -205320,7 +211530,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -205331,7 +211541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "tab_idx", @@ -205350,7 +211560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -205368,7 +211578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "tab_idx", @@ -205387,7 +211597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -205405,7 +211615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "tab_idx", @@ -205424,7 +211634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -205442,7 +211652,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "tab_idx", @@ -205461,7 +211671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -205479,7 +211689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "tab_idx", @@ -205498,7 +211708,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -205516,7 +211726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3820158470, "return_value": { "type": "int", "meta": "int32" @@ -205534,7 +211744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2787397975, "return_value": { "type": "int", "meta": "int32" @@ -205552,7 +211762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1078189570, "arguments": [ { "name": "popup", @@ -205566,7 +211776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 111095082, "return_value": { "type": "Popup" } @@ -205577,7 +211787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -205591,7 +211801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -205602,7 +211812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "group_id", @@ -205617,7 +211827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -205629,7 +211839,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -205643,7 +211853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -205749,6 +211959,7 @@ "enums": [ { "name": "MenuItems", + "is_bitfield": false, "values": [ { "name": "MENU_CUT", @@ -205870,6 +212081,7 @@ }, { "name": "SearchFlags", + "is_bitfield": false, "values": [ { "name": "SEARCH_MATCH_CASE", @@ -205887,6 +212099,7 @@ }, { "name": "CaretType", + "is_bitfield": false, "values": [ { "name": "CARET_TYPE_LINE", @@ -205900,6 +212113,7 @@ }, { "name": "SelectionMode", + "is_bitfield": false, "values": [ { "name": "SELECTION_MODE_NONE", @@ -205925,6 +212139,7 @@ }, { "name": "LineWrappingMode", + "is_bitfield": false, "values": [ { "name": "LINE_WRAPPING_NONE", @@ -205938,6 +212153,7 @@ }, { "name": "GutterType", + "is_bitfield": false, "values": [ { "name": "GUTTER_TYPE_STRING", @@ -206009,7 +212225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206020,7 +212236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -206034,7 +212250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206045,7 +212261,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 119160795, "arguments": [ { "name": "direction", @@ -206059,63 +212275,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 797257663, "return_value": { "type": "enum::Control.TextDirection" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -206129,7 +212300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -206140,7 +212311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -206154,7 +212325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -206165,7 +212336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -206179,7 +212350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -206190,7 +212361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -206205,7 +212376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -206217,7 +212388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -206231,7 +212402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206242,7 +212413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -206256,7 +212427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206267,7 +212438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -206281,7 +212452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206292,7 +212463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -206306,7 +212477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206317,7 +212488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -206331,7 +212502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206342,7 +212513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_text", @@ -206350,7 +212521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -206364,7 +212535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -206375,7 +212546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -206387,7 +212558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -206401,7 +212572,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -206412,7 +212583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "line", @@ -206431,7 +212602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -206449,7 +212620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3294126239, "return_value": { "type": "int", "meta": "int32" @@ -206474,7 +212645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -206486,7 +212657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -206505,7 +212676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -206524,7 +212695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from_line", @@ -206544,7 +212715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "line", @@ -206563,7 +212734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -206577,7 +212748,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4275841770, "arguments": [ { "name": "from_line", @@ -206607,7 +212778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -206619,7 +212790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -206643,7 +212814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3386475622, "return_value": { "type": "Vector2i" }, @@ -206671,7 +212842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "cut", @@ -206679,7 +212850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "copy", @@ -206687,7 +212858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "paste", @@ -206695,7 +212866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "begin_complex_operation", @@ -206703,7 +212874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "end_complex_operation", @@ -206711,7 +212882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "has_undo", @@ -206719,7 +212890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206730,7 +212901,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206741,7 +212912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "redo", @@ -206749,7 +212920,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_undo_history", @@ -206757,7 +212928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "tag_saved_version", @@ -206765,7 +212936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_version", @@ -206773,7 +212944,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -206785,7 +212956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -206797,7 +212968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "search_text", @@ -206811,7 +212982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "flags", @@ -206826,7 +212997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481931, + "hash": 1203739136, "return_value": { "type": "Vector2i" }, @@ -206858,7 +213029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1611583062, "arguments": [ { "name": "callback", @@ -206872,7 +213043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -206883,7 +213054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3674420000, "return_value": { "type": "String" }, @@ -206900,7 +213071,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 850652858, "return_value": { "type": "Vector2i" }, @@ -206922,7 +213093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 410388347, "return_value": { "type": "Vector2i" }, @@ -206945,7 +213116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3256618057, "return_value": { "type": "Rect2i" }, @@ -206968,7 +213139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -206986,7 +213157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -206997,7 +213168,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135401148, "return_value": { "type": "bool" }, @@ -207014,7 +213185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1211596914, "arguments": [ { "name": "type", @@ -207028,7 +213199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2830252959, "return_value": { "type": "enum::TextEdit.CaretType" } @@ -207039,7 +213210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -207053,7 +213224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207064,7 +213235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "blink_speed", @@ -207079,7 +213250,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -207091,7 +213262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -207105,7 +213276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207116,7 +213287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -207130,7 +213301,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207141,7 +213312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207152,7 +213323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -207163,7 +213334,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3063695246, + "hash": 3443156988, "arguments": [ { "name": "line", @@ -207194,7 +213365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207206,7 +213377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "column", @@ -207226,7 +213397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207238,7 +213409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207250,7 +213421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -207261,7 +213432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -207275,7 +213446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207286,7 +213457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -207300,7 +213471,32 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_drag_and_drop_selection_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "is_drag_and_drop_selection_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207311,7 +213507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "override", @@ -207325,7 +213521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207336,7 +213532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 159458228, + "hash": 2206958594, "arguments": [ { "name": "mode", @@ -207362,7 +213558,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3750106938, "return_value": { "type": "enum::TextEdit.SelectionMode" } @@ -207373,7 +213569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "select_word_under_caret", @@ -207381,7 +213577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "select", @@ -207389,7 +213585,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4275841770, "arguments": [ { "name": "from_line", @@ -207419,7 +213615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207430,7 +213626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -207441,7 +213637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207453,7 +213649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207465,7 +213661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207477,7 +213673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207489,7 +213685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207501,7 +213697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207513,7 +213709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "delete_selection", @@ -207521,7 +213717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_line_wrapping_mode", @@ -207529,7 +213725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2525115309, "arguments": [ { "name": "mode", @@ -207543,7 +213739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3562716114, "return_value": { "type": "enum::TextEdit.LineWrappingMode" } @@ -207554,7 +213750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -207572,7 +213768,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -207591,7 +213787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -207615,7 +213811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 647634434, "return_value": { "type": "PackedStringArray" }, @@ -207628,12 +213824,12 @@ ] }, { - "name": "set_smooth_scroll_enable", + "name": "set_smooth_scroll_enabled", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -207647,7 +213843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207658,7 +213854,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -207673,7 +213869,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -207685,7 +213881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -207700,7 +213896,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207712,7 +213908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -207726,7 +213922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207737,7 +213933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "speed", @@ -207752,19 +213948,44 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } }, + { + "name": "set_fit_content_height_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "arg0", + "type": "bool" + } + ] + }, + { + "name": "is_fit_content_height_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, { "name": "get_scroll_pos_for_line", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3274652423, "return_value": { "type": "float", "meta": "double" @@ -207789,7 +214010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3023605688, "arguments": [ { "name": "line", @@ -207810,7 +214031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207822,7 +214043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3023605688, "arguments": [ { "name": "line", @@ -207843,7 +214064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3023605688, "arguments": [ { "name": "line", @@ -207864,7 +214085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207876,7 +214097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207888,7 +214109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207900,7 +214121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -207924,7 +214145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -207936,7 +214157,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "center_viewport_to_caret", @@ -207944,7 +214165,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_draw_minimap", @@ -207952,7 +214173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -207966,7 +214187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -207977,7 +214198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "width", @@ -207992,7 +214213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -208004,7 +214225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -208016,7 +214237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "at", @@ -208032,7 +214253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "gutter", @@ -208047,7 +214268,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -208059,7 +214280,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "gutter", @@ -208078,7 +214299,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -208096,7 +214317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1088959071, "arguments": [ { "name": "gutter", @@ -208115,7 +214336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1159699127, "return_value": { "type": "enum::TextEdit.GutterType" }, @@ -208133,7 +214354,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "gutter", @@ -208153,7 +214374,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -208172,7 +214393,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "gutter", @@ -208191,7 +214412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -208209,7 +214430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "gutter", @@ -208228,7 +214449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -208246,7 +214467,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "gutter", @@ -208265,7 +214486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -208283,7 +214504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "from_line", @@ -208303,7 +214524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 957362965, "arguments": [ { "name": "column", @@ -208322,7 +214543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -208334,7 +214555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2060538656, "arguments": [ { "name": "line", @@ -208358,7 +214579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 678354945, "return_value": { "type": "Variant" }, @@ -208381,7 +214602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2285447957, "arguments": [ { "name": "line", @@ -208405,7 +214626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1391810591, "return_value": { "type": "String" }, @@ -208428,7 +214649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 176101966, "arguments": [ { "name": "line", @@ -208452,7 +214673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2584904275, "return_value": { "type": "Texture2D" }, @@ -208475,7 +214696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3733378741, "arguments": [ { "name": "line", @@ -208499,7 +214720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2165839948, "return_value": { "type": "Color" }, @@ -208522,7 +214743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1383440665, "arguments": [ { "name": "line", @@ -208546,7 +214767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2522259332, "return_value": { "type": "bool" }, @@ -208569,7 +214790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "line", @@ -208588,7 +214809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -208606,7 +214827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2765644541, "arguments": [ { "name": "syntax_highlighter", @@ -208620,7 +214841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2721131626, "return_value": { "type": "SyntaxHighlighter" } @@ -208631,7 +214852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -208645,7 +214866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -208656,7 +214877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -208670,7 +214891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -208681,7 +214902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -208692,7 +214913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -208706,7 +214927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -208720,7 +214941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -208731,7 +214952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -208745,7 +214966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -208756,7 +214977,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 229722558, "return_value": { "type": "PopupMenu" } @@ -208767,7 +214988,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -208778,7 +214999,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "option", @@ -208846,20 +215067,6 @@ "getter": "get_placeholder", "index": -1 }, - { - "type": "int", - "name": "text_direction", - "setter": "set_text_direction", - "getter": "get_text_direction", - "index": -1 - }, - { - "type": "String", - "name": "language", - "setter": "set_language", - "getter": "get_language", - "index": -1 - }, { "type": "bool", "name": "editable", @@ -208895,6 +215102,13 @@ "getter": "is_deselect_on_focus_loss_enabled", "index": -1 }, + { + "type": "bool", + "name": "drag_and_drop_selection_enabled", + "setter": "set_drag_and_drop_selection_enabled", + "getter": "is_drag_and_drop_selection_enabled", + "index": -1 + }, { "type": "bool", "name": "virtual_keyboard_enabled", @@ -208968,7 +215182,7 @@ { "type": "bool", "name": "scroll_smooth", - "setter": "set_smooth_scroll_enable", + "setter": "set_smooth_scroll_enabled", "getter": "is_smooth_scroll_enabled", "index": -1 }, @@ -209000,6 +215214,13 @@ "getter": "get_h_scroll", "index": -1 }, + { + "type": "bool", + "name": "scroll_fit_content_height", + "setter": "set_fit_content_height_enabled", + "getter": "is_fit_content_height_enabled", + "index": -1 + }, { "type": "bool", "name": "minimap_draw", @@ -209049,6 +215270,20 @@ "getter": "is_caret_mid_grapheme_enabled", "index": -1 }, + { + "type": "int", + "name": "text_direction", + "setter": "set_text_direction", + "getter": "get_text_direction", + "index": -1 + }, + { + "type": "String", + "name": "language", + "setter": "set_language", + "getter": "get_language", + "index": -1 + }, { "type": "int", "name": "structured_text_bidi_override", @@ -209071,33 +215306,6 @@ "is_instantiable": true, "inherits": "RefCounted", "api_type": "core", - "enums": [ - { - "name": "OverrunBehavior", - "values": [ - { - "name": "OVERRUN_NO_TRIMMING", - "value": 0 - }, - { - "name": "OVERRUN_TRIM_CHAR", - "value": 1 - }, - { - "name": "OVERRUN_TRIM_WORD", - "value": 2 - }, - { - "name": "OVERRUN_TRIM_ELLIPSIS", - "value": 3 - }, - { - "name": "OVERRUN_TRIM_WORD_ELLIPSIS", - "value": 4 - } - ] - } - ], "methods": [ { "name": "clear", @@ -209105,7 +215313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_direction", @@ -209113,7 +215321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1418190634, "arguments": [ { "name": "direction", @@ -209127,7 +215335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2516697328, "return_value": { "type": "enum::TextServer.Direction" } @@ -209138,7 +215346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 42823726, "arguments": [ { "name": "orientation", @@ -209152,7 +215360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 175768116, "return_value": { "type": "enum::TextServer.Orientation" } @@ -209163,7 +215371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -209177,7 +215385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -209188,7 +215396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -209202,7 +215410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -209213,7 +215421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "override", @@ -209227,7 +215435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1020396879, + "hash": 867188035, "return_value": { "type": "bool" }, @@ -209237,19 +215445,14 @@ "type": "String" }, { - "name": "fonts", + "name": "font", "type": "Font" }, { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32" }, - { - "name": "opentype_features", - "type": "Dictionary", - "default_value": "{}" - }, { "name": "language", "type": "String", @@ -209268,7 +215471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 232531617, "return_value": { "type": "bool" }, @@ -209300,7 +215503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1241600523, "return_value": { "type": "bool" }, @@ -209326,7 +215529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "width", @@ -209341,7 +215544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209353,7 +215556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -209367,7 +215570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -209378,7 +215581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "tab_stops", @@ -209392,12 +215595,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2877345813, "arguments": [ { "name": "flags", - "type": "int", - "meta": "uint16" + "type": "bitfield::TextServer.JustificationFlag" } ] }, @@ -209407,10 +215609,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1583363614, "return_value": { - "type": "int", - "meta": "uint16" + "type": "bitfield::TextServer.JustificationFlag" } }, { @@ -209419,11 +215620,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1008890932, "arguments": [ { "name": "overrun_behavior", - "type": "enum::TextLine.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } ] }, @@ -209433,9 +215634,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3779142101, "return_value": { - "type": "enum::TextLine.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } }, { @@ -209444,7 +215645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -209455,7 +215656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1742700391, "return_value": { "type": "Rect2" }, @@ -209472,7 +215673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -209483,7 +215684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -209494,7 +215695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209506,7 +215707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209518,7 +215719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209530,7 +215731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209542,7 +215743,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209554,7 +215755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649994, + "hash": 1164457837, "arguments": [ { "name": "canvas", @@ -209577,7 +215778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802764, + "hash": 1364491366, "arguments": [ { "name": "canvas", @@ -209606,7 +215807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2401831903, "return_value": { "type": "int", "meta": "int32" @@ -209692,7 +215893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -209706,7 +215907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -209717,7 +215918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -209731,7 +215932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -209742,7 +215943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1262170328, "arguments": [ { "name": "font", @@ -209756,7 +215957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229501585, "return_value": { "type": "Font" } @@ -209767,7 +215968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "font_size", @@ -209782,7 +215983,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -209794,7 +215995,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "depth", @@ -209809,7 +216010,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209821,7 +216022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "width", @@ -209836,7 +216037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209848,7 +216049,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixel_size", @@ -209863,7 +216064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209875,7 +216076,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "curve_step", @@ -209890,7 +216091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -209902,7 +216103,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1418190634, "arguments": [ { "name": "direction", @@ -209916,63 +216117,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2516697328, "return_value": { "type": "enum::TextServer.Direction" } }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134224103, - "arguments": [ - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135374120, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 - }, { "name": "set_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "language", @@ -209986,7 +216142,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -209997,7 +216153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 55961453, "arguments": [ { "name": "parser", @@ -210011,7 +216167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3385126229, "return_value": { "type": "enum::TextServer.StructuredTextParser" } @@ -210022,7 +216178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "args", @@ -210036,7 +216192,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -210047,7 +216203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -210061,7 +216217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -210103,20 +216259,6 @@ "getter": "is_uppercase", "index": -1 }, - { - "type": "int", - "name": "structured_text_bidi_override", - "setter": "set_structured_text_bidi_override", - "getter": "get_structured_text_bidi_override", - "index": -1 - }, - { - "type": "Array", - "name": "structured_text_bidi_override_options", - "setter": "set_structured_text_bidi_override_options", - "getter": "get_structured_text_bidi_override_options", - "index": -1 - }, { "type": "float", "name": "pixel_size", @@ -210158,6 +216300,20 @@ "setter": "set_language", "getter": "get_language", "index": -1 + }, + { + "type": "int", + "name": "structured_text_bidi_override", + "setter": "set_structured_text_bidi_override", + "getter": "get_structured_text_bidi_override", + "index": -1 + }, + { + "type": "Array", + "name": "structured_text_bidi_override_options", + "setter": "set_structured_text_bidi_override_options", + "getter": "get_structured_text_bidi_override_options", + "index": -1 } ] }, @@ -210167,33 +216323,6 @@ "is_instantiable": true, "inherits": "RefCounted", "api_type": "core", - "enums": [ - { - "name": "OverrunBehavior", - "values": [ - { - "name": "OVERRUN_NO_TRIMMING", - "value": 0 - }, - { - "name": "OVERRUN_TRIM_CHAR", - "value": 1 - }, - { - "name": "OVERRUN_TRIM_WORD", - "value": 2 - }, - { - "name": "OVERRUN_TRIM_ELLIPSIS", - "value": 3 - }, - { - "name": "OVERRUN_TRIM_WORD_ELLIPSIS", - "value": 4 - } - ] - } - ], "methods": [ { "name": "clear", @@ -210201,7 +216330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_direction", @@ -210209,7 +216338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1418190634, "arguments": [ { "name": "direction", @@ -210223,7 +216352,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2516697328, "return_value": { "type": "enum::TextServer.Direction" } @@ -210234,7 +216363,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "custom_punctuation", @@ -210248,7 +216377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -210259,7 +216388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 42823726, "arguments": [ { "name": "orientation", @@ -210273,7 +216402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 175768116, "return_value": { "type": "enum::TextServer.Orientation" } @@ -210284,7 +216413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -210298,7 +216427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -210309,7 +216438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -210323,7 +216452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -210334,7 +216463,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "override", @@ -210348,7 +216477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1020396879, + "hash": 2613124475, "return_value": { "type": "bool" }, @@ -210358,11 +216487,11 @@ "type": "String" }, { - "name": "fonts", + "name": "font", "type": "Font" }, { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32" }, @@ -210371,11 +216500,6 @@ "type": "Rect2", "default_value": "Rect2(0, 0, 0, 0)" }, - { - "name": "opentype_features", - "type": "Dictionary", - "default_value": "{}" - }, { "name": "language", "type": "String", @@ -210389,7 +216513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_string", @@ -210397,7 +216521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1020396879, + "hash": 867188035, "return_value": { "type": "bool" }, @@ -210407,19 +216531,14 @@ "type": "String" }, { - "name": "fonts", + "name": "font", "type": "Font" }, { - "name": "size", + "name": "font_size", "type": "int", "meta": "int32" }, - { - "name": "opentype_features", - "type": "Dictionary", - "default_value": "{}" - }, { "name": "language", "type": "String", @@ -210438,7 +216557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270700, + "hash": 232531617, "return_value": { "type": "bool" }, @@ -210470,7 +216589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 1241600523, "return_value": { "type": "bool" }, @@ -210496,7 +216615,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2312603777, "arguments": [ { "name": "alignment", @@ -210510,7 +216629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 341400642, "return_value": { "type": "enum::HorizontalAlignment" } @@ -210521,7 +216640,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2899603908, "arguments": [ { "name": "tab_stops", @@ -210530,30 +216649,53 @@ ] }, { - "name": "set_flags", + "name": "set_break_flags", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2809697122, "arguments": [ { "name": "flags", - "type": "int", - "meta": "uint16" + "type": "bitfield::TextServer.LineBreakFlag" } ] }, { - "name": "get_flags", + "name": "get_break_flags", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2340632602, "return_value": { - "type": "int", - "meta": "uint16" + "type": "bitfield::TextServer.LineBreakFlag" + } + }, + { + "name": "set_justification_flags", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2877345813, + "arguments": [ + { + "name": "flags", + "type": "bitfield::TextServer.JustificationFlag" + } + ] + }, + { + "name": "get_justification_flags", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1583363614, + "return_value": { + "type": "bitfield::TextServer.JustificationFlag" } }, { @@ -210562,11 +216704,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1008890932, "arguments": [ { "name": "overrun_behavior", - "type": "enum::TextParagraph.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } ] }, @@ -210576,9 +216718,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3779142101, "return_value": { - "type": "enum::TextParagraph.OverrunBehavior" + "type": "enum::TextServer.OverrunBehavior" } }, { @@ -210587,7 +216729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "width", @@ -210602,7 +216744,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -210614,7 +216756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -210625,7 +216767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -210636,7 +216778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -210647,7 +216789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 495598643, "return_value": { "type": "RID" }, @@ -210665,7 +216807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -210676,7 +216818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -210688,7 +216830,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_lines_visible", @@ -210703,7 +216845,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -210715,7 +216857,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -210733,7 +216875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 204315017, "return_value": { "type": "Rect2" }, @@ -210755,7 +216897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -210773,7 +216915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 880721226, "return_value": { "type": "Vector2i" }, @@ -210791,7 +216933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -210810,7 +216952,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -210829,7 +216971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -210848,7 +216990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -210867,7 +217009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -210880,37 +217022,13 @@ } ] }, - { - "name": "get_spacing_top", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_spacing_bottom", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "int", - "meta": "int32" - } - }, { "name": "get_dropcap_size", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -210921,7 +217039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -210933,7 +217051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802764, + "hash": 367324453, "arguments": [ { "name": "canvas", @@ -210961,7 +217079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2998809226, + "hash": 2159523405, "arguments": [ { "name": "canvas", @@ -210995,7 +217113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835915, + "hash": 3963848920, "arguments": [ { "name": "canvas", @@ -211023,7 +217141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938157, + "hash": 1814903311, "arguments": [ { "name": "canvas", @@ -211057,7 +217175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649994, + "hash": 1164457837, "arguments": [ { "name": "canvas", @@ -211080,7 +217198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802764, + "hash": 1364491366, "arguments": [ { "name": "canvas", @@ -211109,7 +217227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3820158470, "return_value": { "type": "int", "meta": "int32" @@ -211167,9 +217285,16 @@ }, { "type": "int", - "name": "flags", - "setter": "set_flags", - "getter": "get_flags", + "name": "break_flags", + "setter": "set_break_flags", + "getter": "get_break_flags", + "index": -1 + }, + { + "type": "int", + "name": "justification_flags", + "setter": "set_justification_flags", + "getter": "get_justification_flags", "index": -1 }, { @@ -211204,6 +217329,7 @@ "enums": [ { "name": "Direction", + "is_bitfield": false, "values": [ { "name": "DIRECTION_AUTO", @@ -211221,6 +217347,7 @@ }, { "name": "Orientation", + "is_bitfield": false, "values": [ { "name": "ORIENTATION_HORIZONTAL", @@ -211234,6 +217361,7 @@ }, { "name": "JustificationFlag", + "is_bitfield": true, "values": [ { "name": "JUSTIFICATION_NONE", @@ -211261,8 +217389,31 @@ } ] }, + { + "name": "AutowrapMode", + "is_bitfield": false, + "values": [ + { + "name": "AUTOWRAP_OFF", + "value": 0 + }, + { + "name": "AUTOWRAP_ARBITRARY", + "value": 1 + }, + { + "name": "AUTOWRAP_WORD", + "value": 2 + }, + { + "name": "AUTOWRAP_WORD_SMART", + "value": 3 + } + ] + }, { "name": "LineBreakFlag", + "is_bitfield": true, "values": [ { "name": "BREAK_NONE", @@ -211270,27 +217421,80 @@ }, { "name": "BREAK_MANDATORY", - "value": 32 + "value": 1 }, { "name": "BREAK_WORD_BOUND", - "value": 64 + "value": 2 }, { "name": "BREAK_GRAPHEME_BOUND", - "value": 128 + "value": 4 }, { - "name": "BREAK_WORD_BOUND_ADAPTIVE", - "value": 320 + "name": "BREAK_ADAPTIVE", + "value": 8 + } + ] + }, + { + "name": "VisibleCharactersBehavior", + "is_bitfield": false, + "values": [ + { + "name": "VC_CHARS_BEFORE_SHAPING", + "value": 0 + }, + { + "name": "VC_CHARS_AFTER_SHAPING", + "value": 1 + }, + { + "name": "VC_GLYPHS_AUTO", + "value": 2 + }, + { + "name": "VC_GLYPHS_LTR", + "value": 3 + }, + { + "name": "VC_GLYPHS_RTL", + "value": 4 + } + ] + }, + { + "name": "OverrunBehavior", + "is_bitfield": false, + "values": [ + { + "name": "OVERRUN_NO_TRIMMING", + "value": 0 + }, + { + "name": "OVERRUN_TRIM_CHAR", + "value": 1 + }, + { + "name": "OVERRUN_TRIM_WORD", + "value": 2 + }, + { + "name": "OVERRUN_TRIM_ELLIPSIS", + "value": 3 + }, + { + "name": "OVERRUN_TRIM_WORD_ELLIPSIS", + "value": 4 } ] }, { "name": "TextOverrunFlag", + "is_bitfield": true, "values": [ { - "name": "OVERRUN_NO_TRIMMING", + "name": "OVERRUN_NO_TRIM", "value": 0 }, { @@ -211317,6 +217521,7 @@ }, { "name": "GraphemeFlag", + "is_bitfield": true, "values": [ { "name": "GRAPHEME_IS_VALID", @@ -211366,6 +217571,7 @@ }, { "name": "Hinting", + "is_bitfield": false, "values": [ { "name": "HINTING_NONE", @@ -211383,6 +217589,7 @@ }, { "name": "SubpixelPositioning", + "is_bitfield": false, "values": [ { "name": "SUBPIXEL_POSITIONING_DISABLED", @@ -211412,6 +217619,7 @@ }, { "name": "Feature", + "is_bitfield": false, "values": [ { "name": "FEATURE_SIMPLE_LAYOUT", @@ -211469,6 +217677,7 @@ }, { "name": "ContourPointTag", + "is_bitfield": false, "values": [ { "name": "CONTOUR_CURVE_TAG_ON", @@ -211486,6 +217695,7 @@ }, { "name": "SpacingType", + "is_bitfield": false, "values": [ { "name": "SPACING_GLYPH", @@ -211502,11 +217712,16 @@ { "name": "SPACING_BOTTOM", "value": 3 + }, + { + "name": "SPACING_MAX", + "value": 4 } ] }, { "name": "FontStyle", + "is_bitfield": true, "values": [ { "name": "FONT_BOLD", @@ -211524,6 +217739,7 @@ }, { "name": "StructuredTextParser", + "is_bitfield": false, "values": [ { "name": "STRUCTURED_TEXT_DEFAULT", @@ -211563,7 +217779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3967367083, "return_value": { "type": "bool" }, @@ -211580,7 +217796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -211591,7 +217807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int64" @@ -211603,7 +217819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2323990056, "return_value": { "type": "bool" }, @@ -211620,7 +217836,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -211631,7 +217847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -211642,7 +217858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -211659,7 +217875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -211676,7 +217892,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int64" @@ -211694,7 +217910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -211712,7 +217928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -211729,7 +217945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -211743,7 +217959,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 529393457, "return_value": { "type": "RID" } @@ -211754,7 +217970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1355495400, "arguments": [ { "name": "font_rid", @@ -211766,13 +217982,68 @@ } ] }, + { + "name": "font_set_face_index", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3411492887, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "face_index", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "font_get_face_index", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2198884583, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_get_face_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2198884583, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, { "name": "font_set_style", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 898466325, "arguments": [ { "name": "font_rid", @@ -211780,8 +218051,7 @@ }, { "name": "style", - "type": "int", - "meta": "int64" + "type": "bitfield::TextServer.FontStyle" } ] }, @@ -211791,10 +218061,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3082502592, "return_value": { - "type": "int", - "meta": "int64" + "type": "bitfield::TextServer.FontStyle" }, "arguments": [ { @@ -211809,7 +218078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "font_rid", @@ -211827,7 +218096,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 642473191, "return_value": { "type": "String" }, @@ -211844,7 +218113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "font_rid", @@ -211862,7 +218131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 642473191, "return_value": { "type": "String" }, @@ -211879,7 +218148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "font_rid", @@ -211897,7 +218166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -211914,7 +218183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "font_rid", @@ -211932,7 +218201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -211949,7 +218218,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "font_rid", @@ -211967,7 +218236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -211984,7 +218253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "font_rid", @@ -212003,7 +218272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -212021,7 +218290,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "font_rid", @@ -212040,7 +218309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -212058,7 +218327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "font_rid", @@ -212077,7 +218346,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -212095,7 +218364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "font_rid", @@ -212113,7 +218382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -212130,7 +218399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1520010864, "arguments": [ { "name": "font_rid", @@ -212148,7 +218417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3971592737, "return_value": { "type": "enum::TextServer.Hinting" }, @@ -212165,7 +218434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3830459669, "arguments": [ { "name": "font_rid", @@ -212183,7 +218452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2752233671, "return_value": { "type": "enum::TextServer.SubpixelPositioning" }, @@ -212200,7 +218469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "font_rid", @@ -212219,7 +218488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -212237,7 +218506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1246044741, "arguments": [ { "name": "font_rid", @@ -212255,7 +218524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 213527486, "return_value": { "type": "Transform2D" }, @@ -212272,7 +218541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1217542888, "arguments": [ { "name": "font_rid", @@ -212290,7 +218559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1882737106, "return_value": { "type": "Dictionary" }, @@ -212307,7 +218576,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1794382983, "arguments": [ { "name": "font_rid", @@ -212326,7 +218595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -212344,7 +218613,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -212361,7 +218630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "font_rid", @@ -212375,7 +218644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2450610377, "arguments": [ { "name": "font_rid", @@ -212393,7 +218662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1892459533, "arguments": [ { "name": "font_rid", @@ -212417,7 +218686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 755457166, "return_value": { "type": "float", "meta": "double" @@ -212440,7 +218709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1892459533, "arguments": [ { "name": "font_rid", @@ -212464,7 +218733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 755457166, "return_value": { "type": "float", "meta": "double" @@ -212487,7 +218756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1892459533, "arguments": [ { "name": "font_rid", @@ -212511,7 +218780,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 755457166, "return_value": { "type": "float", "meta": "double" @@ -212534,7 +218803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1892459533, "arguments": [ { "name": "font_rid", @@ -212558,7 +218827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 755457166, "return_value": { "type": "float", "meta": "double" @@ -212581,7 +218850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1892459533, "arguments": [ { "name": "font_rid", @@ -212605,7 +218874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 755457166, "return_value": { "type": "float", "meta": "double" @@ -212622,68 +218891,13 @@ } ] }, - { - "name": "font_set_spacing", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134295977, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int", - "meta": "int64" - } - ] - }, - { - "name": "font_get_spacing", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135445994, - "return_value": { - "type": "int", - "meta": "int64" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int", - "meta": "int64" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, { "name": "font_get_texture_count", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1311001310, "return_value": { "type": "int", "meta": "int64" @@ -212705,7 +218919,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2450610377, "arguments": [ { "name": "font_rid", @@ -212723,7 +218937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3810512262, "arguments": [ { "name": "font_rid", @@ -212746,7 +218960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2354485091, "arguments": [ { "name": "font_rid", @@ -212773,7 +218987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 2451761155, "return_value": { "type": "Image" }, @@ -212799,7 +219013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3005398047, "arguments": [ { "name": "font_rid", @@ -212826,7 +219040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3420028887, "return_value": { "type": "PackedInt32Array" }, @@ -212852,7 +219066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 609223755, "return_value": { "type": "Array" }, @@ -212873,7 +219087,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2450610377, "arguments": [ { "name": "font_rid", @@ -212891,7 +219105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3810512262, "arguments": [ { "name": "font_rid", @@ -212914,7 +219128,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 2555689501, "return_value": { "type": "Vector2" }, @@ -212941,7 +219155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3219397315, "arguments": [ { "name": "font_rid", @@ -212969,7 +219183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 513728628, "return_value": { "type": "Vector2" }, @@ -212995,7 +219209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1812632090, "arguments": [ { "name": "font_rid", @@ -213022,7 +219236,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 513728628, "return_value": { "type": "Vector2" }, @@ -213048,7 +219262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1812632090, "arguments": [ { "name": "font_rid", @@ -213075,7 +219289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 2274268786, "return_value": { "type": "Rect2" }, @@ -213101,7 +219315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1973324081, "arguments": [ { "name": "font_rid", @@ -213128,7 +219342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 4292800474, "return_value": { "type": "int", "meta": "int64" @@ -213155,7 +219369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4254580980, "arguments": [ { "name": "font_rid", @@ -213183,7 +219397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1451696141, "return_value": { "type": "RID" }, @@ -213209,7 +219423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 513728628, "return_value": { "type": "Vector2" }, @@ -213235,7 +219449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 2903964473, "return_value": { "type": "Dictionary" }, @@ -213262,7 +219476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1778388067, "return_value": { "type": "Array" }, @@ -213284,7 +219498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3411492887, "arguments": [ { "name": "font_rid", @@ -213303,7 +219517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2141860016, "arguments": [ { "name": "font_rid", @@ -213326,7 +219540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3630965883, "arguments": [ { "name": "font_rid", @@ -213353,7 +219567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1019980169, "return_value": { "type": "Vector2" }, @@ -213379,7 +219593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481931, + "hash": 1765635060, "return_value": { "type": "int", "meta": "int64" @@ -213412,7 +219626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3120086654, "return_value": { "type": "bool" }, @@ -213434,7 +219648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 642473191, "return_value": { "type": "String" }, @@ -213451,7 +219665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4254580980, "arguments": [ { "name": "font_rid", @@ -213479,7 +219693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3810512262, "arguments": [ { "name": "font_rid", @@ -213502,7 +219716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 139207757, + "hash": 1821196351, "arguments": [ { "name": "font_rid", @@ -213539,7 +219753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 140393678, + "hash": 1124898203, "arguments": [ { "name": "font_rid", @@ -213581,7 +219795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3199320846, "return_value": { "type": "bool" }, @@ -213602,7 +219816,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2313957094, "arguments": [ { "name": "font_rid", @@ -213624,7 +219838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2829184646, "return_value": { "type": "bool" }, @@ -213645,7 +219859,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "font_rid", @@ -213663,7 +219877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2801473409, "return_value": { "type": "PackedStringArray" }, @@ -213680,7 +219894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3199320846, "return_value": { "type": "bool" }, @@ -213701,7 +219915,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2313957094, "arguments": [ { "name": "font_rid", @@ -213723,7 +219937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2829184646, "return_value": { "type": "bool" }, @@ -213744,7 +219958,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "font_rid", @@ -213762,7 +219976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2801473409, "return_value": { "type": "PackedStringArray" }, @@ -213779,7 +219993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1217542888, "arguments": [ { "name": "font_rid", @@ -213797,7 +220011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1882737106, "return_value": { "type": "Dictionary" }, @@ -213814,7 +220028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1882737106, "return_value": { "type": "Dictionary" }, @@ -213831,7 +220045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1882737106, "return_value": { "type": "Dictionary" }, @@ -213848,7 +220062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -213860,7 +220074,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "oversampling", @@ -213875,7 +220089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3016396712, "return_value": { "type": "Vector2" }, @@ -213898,7 +220112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331947, + "hash": 1602046441, "arguments": [ { "name": "canvas", @@ -213930,7 +220144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2038660256, + "hash": 1231398698, "return_value": { "type": "RID" }, @@ -213953,7 +220167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "rid", @@ -213967,7 +220181,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 2616949700, "arguments": [ { "name": "shaped", @@ -213986,7 +220200,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3065904362, "return_value": { "type": "enum::TextServer.Direction" }, @@ -214003,7 +220217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3065904362, "return_value": { "type": "enum::TextServer.Direction" }, @@ -214020,7 +220234,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 684822712, "arguments": [ { "name": "shaped", @@ -214038,7 +220252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2726140452, "arguments": [ { "name": "shaped", @@ -214056,7 +220270,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 642473191, "return_value": { "type": "String" }, @@ -214073,7 +220287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 104095128, "arguments": [ { "name": "shaped", @@ -214092,7 +220306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3142708106, "return_value": { "type": "enum::TextServer.Orientation" }, @@ -214109,7 +220323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "shaped", @@ -214127,7 +220341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -214144,7 +220358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1265174801, "arguments": [ { "name": "shaped", @@ -214162,7 +220376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -214173,13 +220387,58 @@ } ] }, + { + "name": "shaped_text_set_spacing", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1307259930, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "shaped_text_get_spacing", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1213653558, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + } + ] + }, { "name": "shaped_text_add_string", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2311864848, + "hash": 2621279422, "return_value": { "type": "bool" }, @@ -214224,7 +220483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1552406093, + "hash": 2711351313, "return_value": { "type": "bool" }, @@ -214260,7 +220519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971275, + "hash": 3402652107, "return_value": { "type": "bool" }, @@ -214290,7 +220549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -214308,7 +220567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 4069510997, "return_value": { "type": "Variant" }, @@ -214330,7 +220589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 138021803, + "hash": 1578983057, "arguments": [ { "name": "shaped", @@ -214363,7 +220622,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1937682086, "return_value": { "type": "RID" }, @@ -214390,7 +220649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3814569979, "return_value": { "type": "RID" }, @@ -214407,7 +220666,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 603718830, "return_value": { "type": "float", "meta": "double" @@ -214424,8 +220683,7 @@ }, { "name": "jst_flags", - "type": "int", - "meta": "int64", + "type": "bitfield::TextServer.JustificationFlag", "default_value": "3" } ] @@ -214436,7 +220694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 1283669550, "return_value": { "type": "float", "meta": "double" @@ -214458,7 +220716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3521089500, "return_value": { "type": "bool" }, @@ -214475,7 +220733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4155700596, "return_value": { "type": "bool" }, @@ -214492,7 +220750,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -214509,7 +220767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2670461153, "return_value": { "type": "Array" }, @@ -214526,7 +220784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -214544,7 +220802,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 733700038, "return_value": { "type": "Vector2i" }, @@ -214561,7 +220819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2146812442, + "hash": 4206849830, "return_value": { "type": "PackedInt32Array" }, @@ -214587,9 +220845,8 @@ }, { "name": "break_flags", - "type": "int", - "meta": "int64", - "default_value": "96" + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" } ] }, @@ -214599,7 +220856,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1513270733, + "hash": 303410369, "return_value": { "type": "PackedInt32Array" }, @@ -214621,9 +220878,8 @@ }, { "name": "break_flags", - "type": "int", - "meta": "int64", - "default_value": "96" + "type": "bitfield::TextServer.LineBreakFlag", + "default_value": "3" } ] }, @@ -214633,7 +220889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 3299477123, "return_value": { "type": "PackedInt32Array" }, @@ -214644,8 +220900,7 @@ }, { "name": "grapheme_flags", - "type": "int", - "meta": "int64", + "type": "bitfield::TextServer.GraphemeFlag", "default_value": "264" } ] @@ -214656,7 +220911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -214674,7 +220929,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -214692,7 +220947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -214709,7 +220964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2198884583, "return_value": { "type": "int", "meta": "int64" @@ -214727,7 +220982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2600550837, + "hash": 1572579718, "arguments": [ { "name": "shaped", @@ -214741,8 +220996,7 @@ }, { "name": "overrun_trim_flags", - "type": "int", - "meta": "int64", + "type": "bitfield::TextServer.TextOverrunFlag", "default_value": "0" } ] @@ -214753,7 +221007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2684255073, "return_value": { "type": "Array" }, @@ -214770,7 +221024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 447978354, "return_value": { "type": "Rect2" }, @@ -214791,7 +221045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2440833711, "return_value": { "type": "Vector2" }, @@ -214808,7 +221062,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -214826,7 +221080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -214844,7 +221098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -214862,7 +221116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -214880,7 +221134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 866169185, "return_value": { "type": "float", "meta": "double" @@ -214898,7 +221152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1574219346, "return_value": { "type": "Dictionary" }, @@ -214920,7 +221174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3714187733, "return_value": { "type": "PackedVector2Array" }, @@ -214947,7 +221201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3149310417, "return_value": { "type": "int", "meta": "int64" @@ -214970,7 +221224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3149310417, "return_value": { "type": "int", "meta": "int64" @@ -214993,7 +221247,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2546185844, "return_value": { "type": "Vector2" }, @@ -215015,7 +221269,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1120910005, "return_value": { "type": "int", "meta": "int64" @@ -215038,7 +221292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1120910005, "return_value": { "type": "int", "meta": "int64" @@ -215061,7 +221315,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626895, + "hash": 70679950, "arguments": [ { "name": "shaped", @@ -215100,7 +221354,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2591042395, + "hash": 2673671346, "arguments": [ { "name": "shaped", @@ -215145,7 +221399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3326907668, "return_value": { "type": "enum::TextServer.Direction" }, @@ -215172,7 +221426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2305636099, "return_value": { "type": "String" }, @@ -215194,7 +221448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2305636099, "return_value": { "type": "String" }, @@ -215216,7 +221470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 178273454, + "hash": 993269549, "return_value": { "type": "String" }, @@ -215234,7 +221488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1586579831, "return_value": { "type": "PackedInt32Array" }, @@ -215256,7 +221510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -215273,7 +221527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2305636099, "return_value": { "type": "String" }, @@ -215295,7 +221549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2305636099, "return_value": { "type": "String" }, @@ -215317,7 +221571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3310685015, "return_value": { "type": "Array" }, @@ -215572,6 +221826,55 @@ } ] }, + { + "name": "font_set_face_index", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + }, + { + "name": "face_index", + "type": "int" + } + ] + }, + { + "name": "font_get_face_index", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, + { + "name": "font_get_face_count", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "font_rid", + "type": "RID" + } + ] + }, { "name": "font_set_style", "is_const": false, @@ -215585,7 +221888,7 @@ }, { "name": "style", - "type": "int" + "type": "bitfield::TextServer.FontStyle" } ] }, @@ -215596,7 +221899,7 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "bitfield::TextServer.FontStyle" }, "arguments": [ { @@ -216351,55 +222654,6 @@ } ] }, - { - "name": "font_set_spacing", - "is_const": false, - "is_static": false, - "is_vararg": false, - "is_virtual": true, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - }, - { - "name": "value", - "type": "int" - } - ] - }, - { - "name": "font_get_spacing", - "is_const": true, - "is_static": false, - "is_vararg": false, - "is_virtual": true, - "return_value": { - "type": "int" - }, - "arguments": [ - { - "name": "font_rid", - "type": "RID" - }, - { - "name": "size", - "type": "int" - }, - { - "name": "spacing", - "type": "enum::TextServer.SpacingType" - } - ] - }, { "name": "font_get_texture_count", "is_const": true, @@ -217774,6 +224028,47 @@ } ] }, + { + "name": "shaped_text_set_spacing", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + }, + { + "name": "value", + "type": "int" + } + ] + }, + { + "name": "shaped_text_get_spacing", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "shaped", + "type": "RID" + }, + { + "name": "spacing", + "type": "enum::TextServer.SpacingType" + } + ] + }, { "name": "shaped_text_add_string", "is_const": false, @@ -217999,7 +224294,7 @@ }, { "name": "jst_flags", - "type": "int" + "type": "bitfield::TextServer.JustificationFlag" } ] }, @@ -218179,7 +224474,7 @@ }, { "name": "break_flags", - "type": "int" + "type": "bitfield::TextServer.LineBreakFlag" } ] }, @@ -218207,7 +224502,7 @@ }, { "name": "break_flags", - "type": "int" + "type": "bitfield::TextServer.LineBreakFlag" } ] }, @@ -218227,7 +224522,7 @@ }, { "name": "grapheme_flags", - "type": "int" + "type": "bitfield::TextServer.GraphemeFlag" } ] }, @@ -218312,7 +224607,7 @@ }, { "name": "trim_flags", - "type": "int" + "type": "bitfield::TextServer.TextOverrunFlag" } ] }, @@ -218858,7 +225153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1799689403, "arguments": [ { "name": "interface", @@ -218872,7 +225167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -218884,7 +225179,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1799689403, "arguments": [ { "name": "interface", @@ -218898,7 +225193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1672475555, "return_value": { "type": "TextServer" }, @@ -218916,7 +225211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -218927,7 +225222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2240905781, "return_value": { "type": "TextServer" }, @@ -218944,7 +225239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1799689403, "arguments": [ { "name": "index", @@ -218958,7 +225253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 905850878, "return_value": { "type": "TextServer" } @@ -219142,7 +225437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219154,7 +225449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219166,7 +225461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -219177,7 +225472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -219188,7 +225483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 221802764, + "hash": 1115460088, "arguments": [ { "name": "canvas_item", @@ -219216,7 +225511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 260938157, + "hash": 575156982, "arguments": [ { "name": "canvas_item", @@ -219248,7 +225543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1351626895, + "hash": 1066564656, "arguments": [ { "name": "canvas_item", @@ -219285,7 +225580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4190603485, "return_value": { "type": "Image" } @@ -219372,7 +225667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3847873762, "return_value": { "type": "enum::Image.Format" } @@ -219383,7 +225678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219395,7 +225690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219407,7 +225702,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219419,7 +225714,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -219430,7 +225725,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -219446,6 +225741,7 @@ "enums": [ { "name": "StretchMode", + "is_bitfield": false, "values": [ { "name": "STRETCH_SCALE", @@ -219485,7 +225781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -219499,7 +225795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -219513,7 +225809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -219527,7 +225823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -219541,7 +225837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -219555,7 +225851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 698588216, "arguments": [ { "name": "mask", @@ -219569,7 +225865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ignore", @@ -219583,7 +225879,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 252530840, "arguments": [ { "name": "mode", @@ -219597,7 +225893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -219611,7 +225907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -219622,7 +225918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -219636,7 +225932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -219647,7 +225943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -219658,7 +225954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -219669,7 +225965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -219680,7 +225976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -219691,7 +225987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -219702,7 +225998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2459671998, "return_value": { "type": "BitMap" } @@ -219713,7 +226009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -219724,7 +226020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 33815122, "return_value": { "type": "enum::TextureButton.StretchMode" } @@ -219812,6 +226108,7 @@ "enums": [ { "name": "LayeredType", + "is_bitfield": false, "values": [ { "name": "LAYERED_TYPE_2D_ARRAY", @@ -219911,7 +226208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3847873762, "return_value": { "type": "enum::Image.Format" } @@ -219922,7 +226219,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 518123893, "return_value": { "type": "enum::TextureLayered.LayeredType" } @@ -219933,7 +226230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219945,7 +226242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219957,7 +226254,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -219969,7 +226266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -219980,7 +226277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3655284255, "return_value": { "type": "Image" }, @@ -220003,6 +226300,7 @@ "enums": [ { "name": "FillMode", + "is_bitfield": false, "values": [ { "name": "FILL_LEFT_TO_RIGHT", @@ -220050,7 +226348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "tex", @@ -220064,7 +226362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -220075,7 +226373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "tex", @@ -220089,7 +226387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -220100,7 +226398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "tex", @@ -220114,7 +226412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -220125,7 +226423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mode", @@ -220140,7 +226438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -220152,7 +226450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "tint", @@ -220166,7 +226464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -220177,7 +226475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "tint", @@ -220191,7 +226489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -220202,7 +226500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "tint", @@ -220216,7 +226514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -220227,7 +226525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -220241,7 +226539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -220252,7 +226550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mode", @@ -220267,7 +226565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -220279,7 +226577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "mode", @@ -220293,7 +226591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1497962370, "return_value": { "type": "Vector2" } @@ -220304,7 +226602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "mode", @@ -220319,7 +226617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "float" @@ -220331,7 +226629,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 437707142, "arguments": [ { "name": "margin", @@ -220350,7 +226648,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1983885014, "return_value": { "type": "int", "meta": "int32" @@ -220368,7 +226666,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "stretch", @@ -220382,7 +226680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -220512,6 +226810,7 @@ "enums": [ { "name": "StretchMode", + "is_bitfield": false, "values": [ { "name": "STRETCH_SCALE", @@ -220551,7 +226850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -220565,7 +226864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -220576,7 +226875,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ignore", @@ -220590,7 +226889,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -220601,7 +226900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -220615,7 +226914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -220626,7 +226925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -220640,7 +226939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -220651,7 +226950,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 58788729, "arguments": [ { "name": "stretch_mode", @@ -220665,7 +226964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 346396079, "return_value": { "type": "enum::TextureRect.StretchMode" } @@ -220718,6 +227017,7 @@ "enums": [ { "name": "DataType", + "is_bitfield": false, "values": [ { "name": "DATA_TYPE_COLOR", @@ -220757,7 +227057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2188371082, "arguments": [ { "name": "name", @@ -220779,7 +227079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 934555193, "return_value": { "type": "Texture2D" }, @@ -220800,7 +227100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -220821,7 +227121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 642128662, "arguments": [ { "name": "old_name", @@ -220843,7 +227143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -220861,7 +227161,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -220878,7 +227178,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -220889,7 +227189,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2075907568, "arguments": [ { "name": "name", @@ -220911,7 +227211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3405608165, "return_value": { "type": "StyleBox" }, @@ -220932,7 +227232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -220953,7 +227253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 642128662, "arguments": [ { "name": "old_name", @@ -220975,7 +227275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -220993,7 +227293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -221010,7 +227310,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -221021,7 +227321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 177292320, "arguments": [ { "name": "name", @@ -221043,7 +227343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3445063586, "return_value": { "type": "Font" }, @@ -221064,7 +227364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -221085,7 +227385,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 642128662, "arguments": [ { "name": "old_name", @@ -221107,7 +227407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -221125,7 +227425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -221142,7 +227442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -221153,7 +227453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 281601298, "arguments": [ { "name": "name", @@ -221176,7 +227476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2419549490, "return_value": { "type": "int", "meta": "int32" @@ -221198,7 +227498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -221219,7 +227519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 642128662, "arguments": [ { "name": "old_name", @@ -221241,7 +227541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -221259,7 +227559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -221276,7 +227576,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -221287,7 +227587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4111215154, "arguments": [ { "name": "name", @@ -221309,7 +227609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2015923404, "return_value": { "type": "Color" }, @@ -221330,7 +227630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -221351,7 +227651,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 642128662, "arguments": [ { "name": "old_name", @@ -221373,7 +227673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -221391,7 +227691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -221408,7 +227708,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -221419,7 +227719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 281601298, "arguments": [ { "name": "name", @@ -221442,7 +227742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2419549490, "return_value": { "type": "int", "meta": "int32" @@ -221464,7 +227764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -221485,7 +227785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 642128662, "arguments": [ { "name": "old_name", @@ -221507,7 +227807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -221525,7 +227825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4291131558, "return_value": { "type": "PackedStringArray" }, @@ -221542,7 +227842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -221553,7 +227853,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "base_scale", @@ -221568,7 +227868,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -221580,7 +227880,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -221591,7 +227891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1262170328, "arguments": [ { "name": "font", @@ -221605,7 +227905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229501585, "return_value": { "type": "Font" } @@ -221616,7 +227916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -221627,7 +227927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "font_size", @@ -221642,7 +227942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -221654,7 +227954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -221665,7 +227965,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 2492983623, "arguments": [ { "name": "data_type", @@ -221691,7 +227991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 2191024021, "return_value": { "type": "Variant" }, @@ -221716,7 +228016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 1739311056, "return_value": { "type": "bool" }, @@ -221741,7 +228041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 3900867553, "arguments": [ { "name": "data_type", @@ -221767,7 +228067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2965505587, "arguments": [ { "name": "data_type", @@ -221789,7 +228089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3726716710, "return_value": { "type": "PackedStringArray" }, @@ -221810,7 +228110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1316004935, "return_value": { "type": "PackedStringArray" }, @@ -221827,7 +228127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "theme_type", @@ -221845,7 +228145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 471820014, "return_value": { "type": "bool" }, @@ -221866,7 +228166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "theme_type", @@ -221880,7 +228180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965194235, "return_value": { "type": "StringName" }, @@ -221897,7 +228197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1761182771, "return_value": { "type": "PackedStringArray" }, @@ -221914,7 +228214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "theme_type", @@ -221928,7 +228228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "theme_type", @@ -221942,7 +228242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -221953,7 +228253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2326690814, "arguments": [ { "name": "other", @@ -221967,7 +228267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -222003,6 +228303,7 @@ "enums": [ { "name": "Priority", + "is_bitfield": false, "values": [ { "name": "PRIORITY_LOW", @@ -222026,7 +228327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474135307, + "hash": 2779832528, "return_value": { "type": "enum::Error" }, @@ -222035,11 +228336,6 @@ "name": "callable", "type": "Callable" }, - { - "name": "userdata", - "type": "Variant", - "default_value": "null" - }, { "name": "priority", "type": "enum::Thread.Priority", @@ -222053,7 +228349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -222064,7 +228360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -222075,7 +228371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -222086,7 +228382,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1460262497, "return_value": { "type": "Variant" } @@ -222106,7 +228402,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_h", @@ -222120,7 +228416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -222131,7 +228427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "flip_v", @@ -222145,7 +228441,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -222156,7 +228452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "transpose", @@ -222170,7 +228466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -222181,11 +228477,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2757459619, "arguments": [ { "name": "material", - "type": "ShaderMaterial" + "type": "Material" } ] }, @@ -222195,9 +228491,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 5934680, "return_value": { - "type": "ShaderMaterial" + "type": "Material" } }, { @@ -222206,7 +228502,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "texture_offset", @@ -222220,7 +228516,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -222231,7 +228527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "modulate", @@ -222245,7 +228541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -222256,7 +228552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "z_index", @@ -222271,7 +228567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -222283,7 +228579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "y_sort_origin", @@ -222298,7 +228594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -222310,7 +228606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 914399637, "arguments": [ { "name": "layer_id", @@ -222329,7 +228625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2458574231, "return_value": { "type": "OccluderPolygon2D" }, @@ -222347,7 +228643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "layer_id", @@ -222366,7 +228662,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -222384,7 +228680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "layer_id", @@ -222404,7 +228700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "float" @@ -222423,7 +228719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_id", @@ -222443,7 +228739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -222462,7 +228758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer_id", @@ -222477,7 +228773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_id", @@ -222497,7 +228793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3230546541, "arguments": [ { "name": "layer_id", @@ -222521,7 +228817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 103942801, "return_value": { "type": "PackedVector2Array" }, @@ -222544,7 +228840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1383440665, "arguments": [ { "name": "layer_id", @@ -222568,7 +228864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2522259332, "return_value": { "type": "bool" }, @@ -222591,7 +228887,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3506521499, "arguments": [ { "name": "layer_id", @@ -222616,7 +228912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3085491603, "return_value": { "type": "float", "meta": "float" @@ -222640,7 +228936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "terrain_set", @@ -222655,19 +228951,46 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" } }, { - "name": "set_peering_bit_terrain", + "name": "set_terrain", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1286410249, + "arguments": [ + { + "name": "terrain", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_terrain", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_terrain_peering_bit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1084452308, "arguments": [ { "name": "peering_bit", @@ -222681,12 +229004,12 @@ ] }, { - "name": "get_peering_bit_terrain", + "name": "get_terrain_peering_bit", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3831796792, "return_value": { "type": "int", "meta": "int32" @@ -222704,7 +229027,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2224691167, "arguments": [ { "name": "layer_id", @@ -222723,7 +229046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3991786031, "return_value": { "type": "NavigationPolygon" }, @@ -222741,7 +229064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "probability", @@ -222756,7 +229079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -222768,7 +229091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 402577236, "arguments": [ { "name": "layer_name", @@ -222786,7 +229109,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1868160156, "return_value": { "type": "Variant" }, @@ -222803,7 +229126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "layer_id", @@ -222822,7 +229145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -222877,7 +229200,7 @@ "index": -1 }, { - "type": "ShaderMaterial", + "type": "CanvasItemMaterial,ShaderMaterial", "name": "material", "setter": "set_material", "getter": "get_material", @@ -222904,6 +229227,13 @@ "getter": "get_terrain_set", "index": -1 }, + { + "type": "int", + "name": "terrain", + "setter": "set_terrain", + "getter": "get_terrain", + "index": -1 + }, { "type": "float", "name": "probability", @@ -222922,6 +229252,7 @@ "enums": [ { "name": "VisibilityMode", + "is_bitfield": false, "values": [ { "name": "VISIBILITY_MODE_DEFAULT", @@ -222986,7 +229317,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 774531446, "arguments": [ { "name": "tileset", @@ -223000,7 +229331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2678226422, "return_value": { "type": "TileSet" } @@ -223011,7 +229342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -223026,7 +229357,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -223038,7 +229369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -223050,7 +229381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "to_position", @@ -223065,7 +229396,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer", @@ -223085,7 +229416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -223100,7 +229431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "layer", @@ -223119,7 +229450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -223137,7 +229468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer", @@ -223156,7 +229487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -223174,7 +229505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "layer", @@ -223193,7 +229524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -223211,7 +229542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer", @@ -223230,7 +229561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -223248,7 +229579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer", @@ -223268,7 +229599,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -223287,7 +229618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer", @@ -223307,7 +229638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -223326,7 +229657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -223340,7 +229671,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -223351,7 +229682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3193440636, "arguments": [ { "name": "collision_visibility_mode", @@ -223365,7 +229696,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2026313073, "return_value": { "type": "enum::TileMap.VisibilityMode" } @@ -223376,7 +229707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3193440636, "arguments": [ { "name": "navigation_visibility_mode", @@ -223390,7 +229721,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2026313073, "return_value": { "type": "enum::TileMap.VisibilityMode" } @@ -223401,7 +229732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 36949783, + "hash": 1732664643, "arguments": [ { "name": "layer", @@ -223437,7 +229768,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2311374912, "arguments": [ { "name": "layer", @@ -223456,7 +229787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 201473609, "return_value": { "type": "int", "meta": "int32" @@ -223483,7 +229814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 780734168, "return_value": { "type": "Vector2i" }, @@ -223509,7 +229840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 201473609, "return_value": { "type": "int", "meta": "int32" @@ -223536,7 +229867,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 291584212, "return_value": { "type": "Vector2i" }, @@ -223553,7 +229884,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2833570986, "return_value": { "type": "TileMapPattern" }, @@ -223575,7 +229906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 1864516957, "return_value": { "type": "Vector2i" }, @@ -223600,7 +229931,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1195853946, "arguments": [ { "name": "layer", @@ -223618,12 +229949,12 @@ ] }, { - "name": "set_cells_from_surrounding_terrains", + "name": "set_cells_terrain_connect", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 3072115677, "arguments": [ { "name": "layer", @@ -223639,6 +229970,45 @@ "type": "int", "meta": "int32" }, + { + "name": "terrain", + "type": "int", + "meta": "int32" + }, + { + "name": "ignore_empty_terrains", + "type": "bool", + "default_value": "true" + } + ] + }, + { + "name": "set_cells_terrain_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3072115677, + "arguments": [ + { + "name": "layer", + "type": "int", + "meta": "int32" + }, + { + "name": "path", + "type": "Array" + }, + { + "name": "terrain_set", + "type": "int", + "meta": "int32" + }, + { + "name": "terrain", + "type": "int", + "meta": "int32" + }, { "name": "ignore_empty_terrains", "type": "bool", @@ -223652,7 +230022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_layer", @@ -223660,7 +230030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer", @@ -223675,7 +230045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "force_update", @@ -223683,7 +230053,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "layer", @@ -223699,7 +230069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2673526557, "return_value": { "type": "Array" }, @@ -223716,7 +230086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -223734,7 +230104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3248174, "return_value": { "type": "Rect2" } @@ -223745,7 +230115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 108438297, "return_value": { "type": "Vector2" }, @@ -223762,7 +230132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 837806996, "return_value": { "type": "Vector2i" }, @@ -223779,7 +230149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 986575103, "return_value": { "type": "Vector2i" }, @@ -223858,7 +230228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 89226873, + "hash": 634000503, "arguments": [ { "name": "coords", @@ -223889,7 +230259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3900751641, "return_value": { "type": "bool" }, @@ -223906,7 +230276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 4153096796, "arguments": [ { "name": "coords", @@ -223924,7 +230294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -223942,7 +230312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3050897911, "return_value": { "type": "Vector2i" }, @@ -223959,7 +230329,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -223977,7 +230347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -223988,7 +230358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -223999,7 +230369,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -224013,7 +230383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -224029,6 +230399,7 @@ "enums": [ { "name": "TileShape", + "is_bitfield": false, "values": [ { "name": "TILE_SHAPE_SQUARE", @@ -224050,6 +230421,7 @@ }, { "name": "TileLayout", + "is_bitfield": false, "values": [ { "name": "TILE_LAYOUT_STACKED", @@ -224079,6 +230451,7 @@ }, { "name": "TileOffsetAxis", + "is_bitfield": false, "values": [ { "name": "TILE_OFFSET_AXIS_HORIZONTAL", @@ -224092,6 +230465,7 @@ }, { "name": "CellNeighbor", + "is_bitfield": false, "values": [ { "name": "CELL_NEIGHBOR_RIGHT_SIDE", @@ -224161,6 +230535,7 @@ }, { "name": "TerrainMode", + "is_bitfield": false, "values": [ { "name": "TERRAIN_MODE_MATCH_CORNERS_AND_SIDES", @@ -224184,7 +230559,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -224196,7 +230571,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 276991387, "return_value": { "type": "int", "meta": "int32" @@ -224220,7 +230595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "source_id", @@ -224235,7 +230610,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "source_id", @@ -224255,7 +230630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -224267,7 +230642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -224286,7 +230661,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -224304,7 +230679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1763540252, "return_value": { "type": "TileSetSource" }, @@ -224322,7 +230697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2131427112, "arguments": [ { "name": "shape", @@ -224336,7 +230711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 716918169, "return_value": { "type": "enum::TileSet.TileShape" } @@ -224347,7 +230722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1071216679, "arguments": [ { "name": "layout", @@ -224361,7 +230736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 194628839, "return_value": { "type": "enum::TileSet.TileLayout" } @@ -224372,7 +230747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3300198521, "arguments": [ { "name": "alignment", @@ -224386,7 +230761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 762494114, "return_value": { "type": "enum::TileSet.TileOffsetAxis" } @@ -224397,7 +230772,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -224411,7 +230786,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -224422,7 +230797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "uv_clipping", @@ -224436,7 +230811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -224447,7 +230822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -224459,7 +230834,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "to_position", @@ -224475,7 +230850,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -224495,7 +230870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer_index", @@ -224510,7 +230885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -224530,7 +230905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -224549,7 +230924,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_index", @@ -224568,7 +230943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -224586,7 +230961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -224598,7 +230973,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "to_position", @@ -224614,7 +230989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -224634,7 +231009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer_index", @@ -224649,7 +231024,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -224669,7 +231044,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -224688,7 +231063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -224708,7 +231083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -224727,7 +231102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1018687357, "arguments": [ { "name": "layer_index", @@ -224746,7 +231121,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 788318639, "return_value": { "type": "PhysicsMaterial" }, @@ -224764,7 +231139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -224776,7 +231151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "to_position", @@ -224792,7 +231167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "terrain_set", @@ -224812,7 +231187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "terrain_set", @@ -224827,7 +231202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3943003916, "arguments": [ { "name": "terrain_set", @@ -224846,7 +231221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2084469411, "return_value": { "type": "enum::TileSet.TerrainMode" }, @@ -224864,7 +231239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -224883,7 +231258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3023605688, "arguments": [ { "name": "terrain_set", @@ -224904,7 +231279,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1649997291, "arguments": [ { "name": "terrain_set", @@ -224929,7 +231304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "terrain_set", @@ -224949,7 +231324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2285447957, "arguments": [ { "name": "terrain_set", @@ -224973,7 +231348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1391810591, "return_value": { "type": "String" }, @@ -224996,7 +231371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3733378741, "arguments": [ { "name": "terrain_set", @@ -225020,7 +231395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2165839948, "return_value": { "type": "Color" }, @@ -225043,7 +231418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -225055,7 +231430,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "to_position", @@ -225071,7 +231446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -225091,7 +231466,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "layer_index", @@ -225106,7 +231481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -225126,7 +231501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "uint32" @@ -225145,7 +231520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -225157,7 +231532,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1025054187, "arguments": [ { "name": "to_position", @@ -225173,7 +231548,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "layer_index", @@ -225193,7 +231568,99 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_custom_data_layer_by_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1321353865, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "layer_name", + "type": "String" + } + ] + }, + { + "name": "set_custom_data_layer_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 501894301, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "layer_name", + "type": "String" + } + ] + }, + { + "name": "get_custom_data_layer_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 844755477, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "set_custom_data_layer_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3492912874, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "layer_type", + "type": "enum::Variant.Type" + } + ] + }, + { + "name": "get_custom_data_layer_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2990820875, + "return_value": { + "type": "enum::Variant.Type" + }, "arguments": [ { "name": "layer_index", @@ -225208,7 +231675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "source_from", @@ -225228,7 +231695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -225247,7 +231714,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -225265,7 +231732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "source_from", @@ -225280,7 +231747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1769939278, "arguments": [ { "name": "p_source_from", @@ -225308,7 +231775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 2856536371, "return_value": { "type": "Array" }, @@ -225330,7 +231797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 3957903770, "return_value": { "type": "bool" }, @@ -225352,7 +231819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2311374912, "arguments": [ { "name": "source_from", @@ -225371,7 +231838,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 3862385460, "arguments": [ { "name": "source_from", @@ -225409,7 +231876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 2303761075, "return_value": { "type": "Array" }, @@ -225436,7 +231903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 180086755, "return_value": { "type": "bool" }, @@ -225463,7 +231930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2328951467, "arguments": [ { "name": "source_from", @@ -225487,7 +231954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 4267935328, "return_value": { "type": "Array" }, @@ -225514,7 +231981,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "clear_tile_proxies", @@ -225522,7 +231989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_pattern", @@ -225530,7 +231997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3009264082, "return_value": { "type": "int", "meta": "int32" @@ -225554,7 +232021,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204402, + "hash": 4207737510, "return_value": { "type": "TileMapPattern" }, @@ -225573,7 +232040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -225588,7 +232055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -225681,7 +232148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -225695,7 +232162,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -225706,7 +232173,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "margins", @@ -225720,7 +232187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -225731,7 +232198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "separation", @@ -225745,7 +232212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -225756,7 +232223,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "texture_region_size", @@ -225770,7 +232237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -225781,7 +232248,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use_texture_padding", @@ -225795,7 +232262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -225806,7 +232273,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1583819816, "arguments": [ { "name": "atlas_coords", @@ -225825,7 +232292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "atlas_coords", @@ -225839,7 +232306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2269103917, + "hash": 1375626516, "arguments": [ { "name": "atlas_coords", @@ -225863,7 +232330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3050897911, "return_value": { "type": "Vector2i" }, @@ -225880,7 +232347,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 178343150, + "hash": 4182444377, "return_value": { "type": "bool" }, @@ -225920,7 +232387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 1240378054, "return_value": { "type": "PackedVector2Array" }, @@ -225949,7 +232416,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3050897911, "return_value": { "type": "Vector2i" }, @@ -225966,7 +232433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3200960707, "arguments": [ { "name": "atlas_coords", @@ -225985,7 +232452,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -226003,7 +232470,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1941061099, "arguments": [ { "name": "atlas_coords", @@ -226021,7 +232488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3050897911, "return_value": { "type": "Vector2i" }, @@ -226038,7 +232505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2262553149, "arguments": [ { "name": "atlas_coords", @@ -226057,7 +232524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 719993801, "return_value": { "type": "float", "meta": "float" @@ -226075,7 +232542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3200960707, "arguments": [ { "name": "atlas_coords", @@ -226094,7 +232561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -226112,7 +232579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2843487787, "arguments": [ { "name": "atlas_coords", @@ -226136,7 +232603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1802448425, "return_value": { "type": "float", "meta": "float" @@ -226159,7 +232626,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 719993801, "return_value": { "type": "float", "meta": "float" @@ -226177,7 +232644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3531100812, "return_value": { "type": "int", "meta": "int32" @@ -226201,7 +232668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3200960707, "arguments": [ { "name": "atlas_coords", @@ -226220,7 +232687,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1499785778, "arguments": [ { "name": "atlas_coords", @@ -226244,7 +232711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -226262,7 +232729,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3534028207, "return_value": { "type": "TileData" }, @@ -226284,7 +232751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -226295,7 +232762,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1321423751, "return_value": { "type": "Rect2i" }, @@ -226318,7 +232785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -226329,7 +232796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 104874263, "return_value": { "type": "Rect2i" }, @@ -226397,7 +232864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -226409,7 +232876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3744713108, "return_value": { "type": "int", "meta": "int32" @@ -226428,7 +232895,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -226446,7 +232913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 2633389122, "return_value": { "type": "int", "meta": "int32" @@ -226470,7 +232937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "id", @@ -226490,7 +232957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3435852839, "arguments": [ { "name": "id", @@ -226509,7 +232976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 511017218, "return_value": { "type": "PackedScene" }, @@ -226527,7 +232994,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "id", @@ -226546,7 +233013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -226564,7 +233031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -226579,7 +233046,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -226600,7 +233067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -226612,7 +233079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 880721226, "return_value": { "type": "Vector2i" }, @@ -226630,7 +233097,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3900751641, "return_value": { "type": "bool" }, @@ -226647,7 +233114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2485466453, "return_value": { "type": "int", "meta": "int32" @@ -226665,7 +233132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 89881719, "return_value": { "type": "int", "meta": "int32" @@ -226688,7 +233155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1073731340, "return_value": { "type": "bool" }, @@ -226715,6 +233182,7 @@ "enums": [ { "name": "Month", + "is_bitfield": false, "values": [ { "name": "MONTH_JANUARY", @@ -226768,6 +233236,7 @@ }, { "name": "Weekday", + "is_bitfield": false, "values": [ { "name": "WEEKDAY_SUNDAY", @@ -226807,7 +233276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3485342025, "return_value": { "type": "Dictionary" }, @@ -226825,7 +233294,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3485342025, "return_value": { "type": "Dictionary" }, @@ -226843,7 +233312,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3485342025, "return_value": { "type": "Dictionary" }, @@ -226861,7 +233330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2311239925, "return_value": { "type": "String" }, @@ -226884,7 +233353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -226902,7 +233371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -226920,7 +233389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3253569256, "return_value": { "type": "Dictionary" }, @@ -226941,7 +233410,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1898123706, "return_value": { "type": "String" }, @@ -226962,7 +233431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3021115443, "return_value": { "type": "int", "meta": "int64" @@ -226980,7 +233449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1321353865, "return_value": { "type": "int", "meta": "int64" @@ -226998,7 +233467,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -227016,7 +233485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 205769976, "return_value": { "type": "Dictionary" }, @@ -227034,7 +233503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 205769976, "return_value": { "type": "Dictionary" }, @@ -227052,7 +233521,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 205769976, "return_value": { "type": "Dictionary" }, @@ -227070,7 +233539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1434999947, + "hash": 1136425492, "return_value": { "type": "String" }, @@ -227093,7 +233562,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 1162154673, "return_value": { "type": "String" }, @@ -227111,7 +233580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413545, + "hash": 1162154673, "return_value": { "type": "String" }, @@ -227129,7 +233598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -227140,7 +233609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -227152,7 +233621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -227164,7 +233633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -227181,6 +233650,7 @@ "enums": [ { "name": "TimerProcessCallback", + "is_bitfield": false, "values": [ { "name": "TIMER_PROCESS_PHYSICS", @@ -227200,7 +233670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "time_sec", @@ -227215,7 +233685,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -227227,7 +233697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -227241,7 +233711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227252,7 +233722,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -227266,7 +233736,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227277,7 +233747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 110069009, + "hash": 1392008558, "arguments": [ { "name": "time_sec", @@ -227293,7 +233763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_paused", @@ -227301,7 +233771,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "paused", @@ -227315,7 +233785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227326,7 +233796,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227337,7 +233807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -227349,7 +233819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3469495063, "arguments": [ { "name": "callback", @@ -227363,7 +233833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2672570227, "return_value": { "type": "enum::Timer.TimerProcessCallback" } @@ -227428,6 +233898,7 @@ "enums": [ { "name": "VisibilityMode", + "is_bitfield": false, "values": [ { "name": "VISIBILITY_ALWAYS", @@ -227447,7 +233918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -227461,7 +233932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -227472,7 +233943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "texture", @@ -227486,7 +233957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -227497,7 +233968,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 698588216, "arguments": [ { "name": "bitmask", @@ -227511,7 +233982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2459671998, "return_value": { "type": "BitMap" } @@ -227522,7 +233993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 771364740, "arguments": [ { "name": "shape", @@ -227536,7 +234007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 522005891, "return_value": { "type": "Shape2D" } @@ -227547,7 +234018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "bool", @@ -227561,7 +234032,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227572,7 +234043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "bool", @@ -227586,7 +234057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227597,7 +234068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "action", @@ -227611,7 +234082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -227622,7 +234093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3031128463, "arguments": [ { "name": "mode", @@ -227636,7 +234107,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2558996468, "return_value": { "type": "enum::TouchScreenButton.VisibilityMode" } @@ -227647,7 +234118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -227661,7 +234132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227672,7 +234143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -227813,7 +234284,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "locale", @@ -227827,7 +234298,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -227838,7 +234309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 971803314, "arguments": [ { "name": "src_message", @@ -227861,7 +234332,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 360316719, "arguments": [ { "name": "src_message", @@ -227884,7 +234355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 58037827, "return_value": { "type": "StringName" }, @@ -227906,7 +234377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971308, + "hash": 1333931916, "return_value": { "type": "StringName" }, @@ -227937,7 +234408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3919944288, "arguments": [ { "name": "src_message", @@ -227956,7 +234427,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -227967,7 +234438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -228004,7 +234475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "locale", @@ -228018,7 +234489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -228029,7 +234500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -228040,7 +234511,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2878152881, "return_value": { "type": "int", "meta": "int32" @@ -228062,7 +234533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -228079,7 +234550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -228090,7 +234561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -228107,7 +234578,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -228118,7 +234589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -228135,7 +234606,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1139954409, "return_value": { "type": "PackedStringArray" } @@ -228146,7 +234617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -228163,7 +234634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -228180,7 +234651,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 58037827, "return_value": { "type": "StringName" }, @@ -228202,7 +234673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 175971308, + "hash": 1333931916, "return_value": { "type": "StringName" }, @@ -228233,7 +234704,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1466479800, "arguments": [ { "name": "translation", @@ -228247,7 +234718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1466479800, "arguments": [ { "name": "translation", @@ -228261,7 +234732,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2065240175, "return_value": { "type": "Translation" }, @@ -228278,7 +234749,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_loaded_locales", @@ -228286,7 +234757,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -228297,7 +234768,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -228308,7 +234779,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -228322,7 +234793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "pseudolocalize", @@ -228330,7 +234801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1965194235, "return_value": { "type": "StringName" }, @@ -228361,6 +234832,7 @@ "enums": [ { "name": "SelectMode", + "is_bitfield": false, "values": [ { "name": "SELECT_SINGLE", @@ -228378,6 +234850,7 @@ }, { "name": "DropModeFlags", + "is_bitfield": false, "values": [ { "name": "DROP_MODE_DISABLED", @@ -228401,7 +234874,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "create_item", @@ -228409,7 +234882,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1411790804, + "hash": 528467046, "return_value": { "type": "TreeItem" }, @@ -228433,7 +234906,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1514277247, "return_value": { "type": "TreeItem" } @@ -228444,7 +234917,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "column", @@ -228464,7 +234937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -228483,7 +234956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "column", @@ -228503,7 +234976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -228522,7 +234995,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -228540,7 +235013,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -228558,7 +235031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -228577,7 +235050,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -228596,7 +235069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -228610,7 +235083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -228621,7 +235094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 873446299, "return_value": { "type": "TreeItem" }, @@ -228638,7 +235111,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1514277247, "return_value": { "type": "TreeItem" } @@ -228649,7 +235122,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -228661,7 +235134,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -228673,7 +235146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3223887270, "arguments": [ { "name": "mode", @@ -228687,7 +235160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 100748571, "return_value": { "type": "enum::Tree.SelectMode" } @@ -228698,7 +235171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -228713,7 +235186,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -228725,7 +235198,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1514277247, "return_value": { "type": "TreeItem" } @@ -228736,7 +235209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -228748,7 +235221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -228759,7 +235232,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -228770,7 +235243,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1450926230, + "hash": 1235226180, "return_value": { "type": "Rect2" }, @@ -228799,7 +235272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4193340126, "return_value": { "type": "TreeItem" }, @@ -228816,7 +235289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3820158470, "return_value": { "type": "int", "meta": "int32" @@ -228834,7 +235307,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3820158470, "return_value": { "type": "int", "meta": "int32" @@ -228852,7 +235325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3820158470, "return_value": { "type": "int", "meta": "int32" @@ -228870,7 +235343,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_column_titles_visible", @@ -228878,7 +235351,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -228892,7 +235365,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -228903,7 +235376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "column", @@ -228922,7 +235395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -228940,7 +235413,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1707680378, "arguments": [ { "name": "column", @@ -228959,7 +235432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4235602388, "return_value": { "type": "enum::Control.TextDirection" }, @@ -228971,75 +235444,13 @@ } ] }, - { - "name": "set_column_title_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134260040, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_column_title_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135410057, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_column_title_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "set_column_title_language", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "column", @@ -229058,7 +235469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -229076,7 +235487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -229087,7 +235498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 1314737213, "arguments": [ { "name": "item", @@ -229106,7 +235517,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "h_scroll", @@ -229120,7 +235531,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -229131,7 +235542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "h_scroll", @@ -229145,7 +235556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -229156,7 +235567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "hide", @@ -229170,7 +235581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -229181,7 +235592,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "flags", @@ -229196,7 +235607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -229208,7 +235619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -229222,7 +235633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -229233,7 +235644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "allow", @@ -229247,7 +235658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -229471,6 +235882,7 @@ "enums": [ { "name": "TreeCellMode", + "is_bitfield": false, "values": [ { "name": "CELL_MODE_STRING", @@ -229502,7 +235914,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 289920701, "arguments": [ { "name": "column", @@ -229521,7 +235933,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3406114978, "return_value": { "type": "enum::TreeItem.TreeCellMode" }, @@ -229539,7 +235951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -229558,7 +235970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -229577,7 +235989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -229595,7 +236007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -229613,7 +236025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 4023243586, "arguments": [ { "name": "column", @@ -229633,7 +236045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "column", @@ -229652,7 +236064,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -229670,7 +236082,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1707680378, "arguments": [ { "name": "column", @@ -229689,7 +236101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4235602388, "return_value": { "type": "enum::Control.TextDirection" }, @@ -229701,75 +236113,13 @@ } ] }, - { - "name": "set_opentype_feature", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134260040, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - }, - { - "name": "value", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_opentype_feature", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135410057, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - }, - { - "name": "tag", - "type": "String" - } - ] - }, - { - "name": "clear_opentype_features", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "column", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "set_structured_text_bidi_override", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 868756907, "arguments": [ { "name": "column", @@ -229788,7 +236138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3377823772, "return_value": { "type": "enum::TextServer.StructuredTextParser" }, @@ -229806,7 +236156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 537221740, "arguments": [ { "name": "column", @@ -229825,7 +236175,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 663333327, "return_value": { "type": "Array" }, @@ -229843,7 +236193,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "column", @@ -229862,7 +236212,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -229880,7 +236230,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "column", @@ -229899,7 +236249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -229917,7 +236267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 666127730, "arguments": [ { "name": "column", @@ -229936,7 +236286,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3536238170, "return_value": { "type": "Texture2D" }, @@ -229954,7 +236304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1356297692, "arguments": [ { "name": "column", @@ -229973,7 +236323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3327874267, "return_value": { "type": "Rect2" }, @@ -229991,7 +236341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "column", @@ -230011,7 +236361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -230030,7 +236380,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "column", @@ -230049,7 +236399,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -230067,7 +236417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1602489585, "arguments": [ { "name": "column", @@ -230087,7 +236437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2339986948, "return_value": { "type": "float", "meta": "double" @@ -230106,7 +236456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 138021803, + "hash": 1547181014, "arguments": [ { "name": "column", @@ -230141,7 +236491,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3554694381, "return_value": { "type": "Dictionary" }, @@ -230159,7 +236509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "column", @@ -230178,7 +236528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -230196,7 +236546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 272420368, "arguments": [ { "name": "column", @@ -230219,7 +236569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -230233,7 +236583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -230244,7 +236594,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -230258,7 +236608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -230269,7 +236619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_custom_minimum_height", @@ -230277,7 +236627,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "height", @@ -230292,7 +236642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -230304,7 +236654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -230323,7 +236673,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -230341,7 +236691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -230359,7 +236709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "column", @@ -230374,7 +236724,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "column", @@ -230389,7 +236739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -230408,7 +236758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -230426,7 +236776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2878471219, "arguments": [ { "name": "column", @@ -230445,7 +236795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -230463,7 +236813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "column", @@ -230478,7 +236828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2637609184, "arguments": [ { "name": "column", @@ -230497,7 +236847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4244553094, "return_value": { "type": "Font" }, @@ -230515,7 +236865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "column", @@ -230535,7 +236885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -230554,7 +236904,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 894174518, "arguments": [ { "name": "column", @@ -230578,7 +236928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "column", @@ -230593,7 +236943,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3457211756, "return_value": { "type": "Color" }, @@ -230611,7 +236961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -230630,7 +236980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -230648,7 +236998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 36949783, + "hash": 1507727907, "arguments": [ { "name": "column", @@ -230683,7 +237033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -230702,7 +237052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1391810591, "return_value": { "type": "String" }, @@ -230725,7 +237075,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -230749,7 +237099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3175239445, "return_value": { "type": "int", "meta": "int32" @@ -230773,7 +237123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2584904275, "return_value": { "type": "Texture2D" }, @@ -230796,7 +237146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 176101966, "arguments": [ { "name": "column", @@ -230820,7 +237170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "column", @@ -230840,7 +237190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1383440665, "arguments": [ { "name": "column", @@ -230864,7 +237214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2522259332, "return_value": { "type": "bool" }, @@ -230887,7 +237237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "column", @@ -230906,7 +237256,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -230924,7 +237274,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3276431499, "arguments": [ { "name": "column", @@ -230943,7 +237293,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4171562184, "return_value": { "type": "enum::HorizontalAlignment" }, @@ -230961,7 +237311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "column", @@ -230980,7 +237330,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -230998,7 +237348,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disable", @@ -231012,7 +237362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -231023,7 +237373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 149204402, + "hash": 954243986, "return_value": { "type": "TreeItem" }, @@ -231042,7 +237392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2243340556, "return_value": { "type": "Tree" } @@ -231053,7 +237403,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1514277247, "return_value": { "type": "TreeItem" } @@ -231064,7 +237414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2768121250, "return_value": { "type": "TreeItem" } @@ -231075,7 +237425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1514277247, "return_value": { "type": "TreeItem" } @@ -231086,7 +237436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1514277247, "return_value": { "type": "TreeItem" } @@ -231097,7 +237447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 1666920593, "return_value": { "type": "TreeItem" }, @@ -231115,7 +237465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172413512, + "hash": 1666920593, "return_value": { "type": "TreeItem" }, @@ -231133,7 +237483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 306700752, "return_value": { "type": "TreeItem" }, @@ -231151,7 +237501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -231163,7 +237513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2915620761, "return_value": { "type": "Array" } @@ -231174,7 +237524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -231186,7 +237536,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1819951137, "arguments": [ { "name": "item", @@ -231200,7 +237550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1819951137, "arguments": [ { "name": "item", @@ -231214,7 +237564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1819951137, "arguments": [ { "name": "child", @@ -231228,7 +237578,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134188167, + "hash": 2866548813, "arguments": [ { "name": "method", @@ -231288,7 +237638,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "radius", @@ -231303,7 +237653,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -231315,7 +237665,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "radial_steps", @@ -231330,7 +237680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -231342,7 +237692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "sections", @@ -231357,7 +237707,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -231369,7 +237719,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "section_length", @@ -231384,7 +237734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -231396,7 +237746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "section_rings", @@ -231411,7 +237761,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -231423,7 +237773,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 270443179, "arguments": [ { "name": "curve", @@ -231437,7 +237787,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2460114913, "return_value": { "type": "Curve" } @@ -231497,6 +237847,7 @@ "enums": [ { "name": "TweenProcessMode", + "is_bitfield": false, "values": [ { "name": "TWEEN_PROCESS_PHYSICS", @@ -231510,6 +237861,7 @@ }, { "name": "TweenPauseMode", + "is_bitfield": false, "values": [ { "name": "TWEEN_PAUSE_BOUND", @@ -231527,6 +237879,7 @@ }, { "name": "TransitionType", + "is_bitfield": false, "values": [ { "name": "TRANS_LINEAR", @@ -231576,6 +237929,7 @@ }, { "name": "EaseType", + "is_bitfield": false, "values": [ { "name": "EASE_IN", @@ -231603,7 +237957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 4049770449, "return_value": { "type": "PropertyTweener" }, @@ -231633,7 +237987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 413360199, "return_value": { "type": "IntervalTweener" }, @@ -231651,7 +238005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1540176488, "return_value": { "type": "CallbackTweener" }, @@ -231668,7 +238022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 2337877153, "return_value": { "type": "MethodTweener" }, @@ -231698,7 +238052,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 330693286, "return_value": { "type": "bool" }, @@ -231716,7 +238070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "pause", @@ -231724,7 +238078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "play", @@ -231732,7 +238086,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "kill", @@ -231740,7 +238094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_total_elapsed_time", @@ -231748,7 +238102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -231760,7 +238114,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -231771,7 +238125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -231782,7 +238136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 2946786331, "return_value": { "type": "Tween" }, @@ -231799,7 +238153,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 855258840, "return_value": { "type": "Tween" }, @@ -231816,7 +238170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3363368837, "return_value": { "type": "Tween" }, @@ -231833,7 +238187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 172414601, + "hash": 1942052223, "return_value": { "type": "Tween" }, @@ -231851,7 +238205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2590297011, + "hash": 2670836414, "return_value": { "type": "Tween" }, @@ -231870,7 +238224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3961971106, "return_value": { "type": "Tween" }, @@ -231888,7 +238242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3965963875, "return_value": { "type": "Tween" }, @@ -231905,7 +238259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 1208117252, "return_value": { "type": "Tween" }, @@ -231922,7 +238276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3426978995, "return_value": { "type": "Tween" } @@ -231933,7 +238287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3426978995, "return_value": { "type": "Tween" } @@ -231944,7 +238298,7 @@ "is_vararg": false, "is_static": true, "is_virtual": false, - "hash": 135553772, + "hash": 3452526450, "return_value": { "type": "Variant" }, @@ -232027,7 +238381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 4025329869, "return_value": { "type": "enum::Error" }, @@ -232050,7 +238404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -232061,7 +238415,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -232072,7 +238426,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -232084,7 +238438,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -232095,7 +238449,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 808734560, "return_value": { "type": "PacketPeerUDP" } @@ -232106,7 +238460,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_max_pending_connections", @@ -232114,7 +238468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "max_pending_connections", @@ -232129,7 +238483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -232155,6 +238509,7 @@ "enums": [ { "name": "UPNPResult", + "is_bitfield": false, "values": [ { "name": "UPNP_RESULT_SUCCESS", @@ -232282,7 +238637,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -232294,7 +238649,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2193290270, "return_value": { "type": "UPNPDevice" }, @@ -232312,7 +238667,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 986715920, "arguments": [ { "name": "device", @@ -232326,7 +238681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3015133723, "arguments": [ { "name": "index", @@ -232345,7 +238700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -232360,7 +238715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_gateway", @@ -232368,7 +238723,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2276800779, "return_value": { "type": "UPNPDevice" } @@ -232379,7 +238734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4001609007, + "hash": 1575334765, "return_value": { "type": "int", "meta": "int32" @@ -232410,7 +238765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232421,7 +238776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1627097934, + "hash": 3358934458, "return_value": { "type": "int", "meta": "int32" @@ -232462,7 +238817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 760296170, "return_value": { "type": "int", "meta": "int32" @@ -232486,7 +238841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "m_if", @@ -232500,7 +238855,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232511,7 +238866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "port", @@ -232526,7 +238881,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -232538,7 +238893,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "ipv6", @@ -232552,7 +238907,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -232591,6 +238946,7 @@ "enums": [ { "name": "IGDStatus", + "is_bitfield": false, "values": [ { "name": "IGD_STATUS_OK", @@ -232642,7 +238998,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -232653,7 +239009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232664,7 +239020,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1627097934, + "hash": 3358934458, "return_value": { "type": "int", "meta": "int32" @@ -232705,7 +239061,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 760296170, "return_value": { "type": "int", "meta": "int32" @@ -232729,7 +239085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "url", @@ -232743,7 +239099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232754,7 +239110,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "type", @@ -232768,7 +239124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232779,7 +239135,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "url", @@ -232793,7 +239149,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232804,7 +239160,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "type", @@ -232818,7 +239174,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232829,7 +239185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "addr", @@ -232843,7 +239199,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -232854,7 +239210,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 519504122, "arguments": [ { "name": "status", @@ -232868,7 +239224,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 180887011, "return_value": { "type": "enum::UPNPDevice.IGDStatus" } @@ -232928,6 +239284,7 @@ "enums": [ { "name": "MergeMode", + "is_bitfield": false, "values": [ { "name": "MERGE_DISABLE", @@ -232951,7 +239308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 183245820, "arguments": [ { "name": "name", @@ -232970,7 +239327,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133279208, + "hash": 3216645846, "arguments": [ { "name": "execute", @@ -232985,7 +239342,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -232996,7 +239353,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134224104, + "hash": 1517810467, "arguments": [ { "name": "object", @@ -233014,7 +239371,7 @@ "is_vararg": true, "is_static": false, "is_virtual": false, - "hash": 134224104, + "hash": 1517810467, "arguments": [ { "name": "object", @@ -233032,7 +239389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1017172818, "arguments": [ { "name": "object", @@ -233054,7 +239411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1017172818, "arguments": [ { "name": "object", @@ -233076,7 +239433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3975164845, "arguments": [ { "name": "object", @@ -233090,7 +239447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3975164845, "arguments": [ { "name": "object", @@ -233104,7 +239461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "end_force_keep_in_merge_ends", @@ -233112,7 +239469,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_history_count", @@ -233120,7 +239477,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -233132,7 +239489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -233144,7 +239501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 990163283, "return_value": { "type": "String" }, @@ -233162,7 +239519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 133279208, + "hash": 3216645846, "arguments": [ { "name": "increase_version", @@ -233177,7 +239534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -233188,7 +239545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -233199,7 +239556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -233210,7 +239567,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -233222,7 +239579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -233233,7 +239590,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -233307,7 +239664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "engine_force", @@ -233322,7 +239679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233334,7 +239691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "brake", @@ -233349,7 +239706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233361,7 +239718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "steering", @@ -233376,7 +239733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233420,7 +239777,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233435,7 +239792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233447,7 +239804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233462,7 +239819,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233474,7 +239831,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233489,7 +239846,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233501,7 +239858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233516,7 +239873,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233528,7 +239885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233543,7 +239900,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233555,7 +239912,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233570,7 +239927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233582,7 +239939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233597,7 +239954,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233609,7 +239966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -233623,7 +239980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -233634,7 +239991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -233648,7 +240005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -233659,7 +240016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "length", @@ -233674,7 +240031,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233686,7 +240043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -233697,7 +240054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 151077316, "return_value": { "type": "Node3D" } @@ -233708,7 +240065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "roll_influence", @@ -233723,7 +240080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233735,7 +240092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233747,7 +240104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233759,7 +240116,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "engine_force", @@ -233774,7 +240131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233786,7 +240143,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "brake", @@ -233801,7 +240158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233813,7 +240170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "steering", @@ -233828,7 +240185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -233949,7 +240306,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -233963,7 +240320,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -233974,7 +240331,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "position", @@ -233988,7 +240345,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -233999,7 +240356,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "position", @@ -234038,7 +240395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2317102564, "arguments": [ { "name": "stream", @@ -234052,7 +240409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 438621487, "return_value": { "type": "VideoStream" } @@ -234063,7 +240420,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "stop", @@ -234071,7 +240428,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_playing", @@ -234079,7 +240436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -234090,7 +240447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "paused", @@ -234104,7 +240461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -234115,7 +240472,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "volume", @@ -234130,7 +240487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -234142,7 +240499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "db", @@ -234157,7 +240514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -234169,7 +240526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "track", @@ -234184,7 +240541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -234196,7 +240553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -234207,7 +240564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "position", @@ -234222,7 +240579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -234234,7 +240591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -234248,7 +240605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -234259,7 +240616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -234273,7 +240630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -234284,7 +240641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "msec", @@ -234299,7 +240656,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -234311,7 +240668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "bus", @@ -234325,7 +240682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -234336,7 +240693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -234433,7 +240790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "file", @@ -234447,7 +240804,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -234471,7 +240828,8 @@ "api_type": "core", "enums": [ { - "name": "ShadowAtlasQuadrantSubdiv", + "name": "PositionalShadowAtlasQuadrantSubdiv", + "is_bitfield": false, "values": [ { "name": "SHADOW_ATLAS_QUADRANT_SUBDIV_DISABLED", @@ -234509,6 +240867,7 @@ }, { "name": "Scaling3DMode", + "is_bitfield": false, "values": [ { "name": "SCALING_3D_MODE_BILINEAR", @@ -234526,6 +240885,7 @@ }, { "name": "MSAA", + "is_bitfield": false, "values": [ { "name": "MSAA_DISABLED", @@ -234551,6 +240911,7 @@ }, { "name": "ScreenSpaceAA", + "is_bitfield": false, "values": [ { "name": "SCREEN_SPACE_AA_DISABLED", @@ -234568,6 +240929,7 @@ }, { "name": "RenderInfo", + "is_bitfield": false, "values": [ { "name": "RENDER_INFO_OBJECTS_IN_FRAME", @@ -234589,6 +240951,7 @@ }, { "name": "RenderInfoType", + "is_bitfield": false, "values": [ { "name": "RENDER_INFO_TYPE_VISIBLE", @@ -234606,6 +240969,7 @@ }, { "name": "DebugDraw", + "is_bitfield": false, "values": [ { "name": "DEBUG_DRAW_DISABLED", @@ -234715,6 +241079,7 @@ }, { "name": "DefaultCanvasItemTextureFilter", + "is_bitfield": false, "values": [ { "name": "DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST", @@ -234740,6 +241105,7 @@ }, { "name": "DefaultCanvasItemTextureRepeat", + "is_bitfield": false, "values": [ { "name": "DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_DISABLED", @@ -234761,6 +241127,7 @@ }, { "name": "SDFOversize", + "is_bitfield": false, "values": [ { "name": "SDF_OVERSIZE_100_PERCENT", @@ -234786,6 +241153,7 @@ }, { "name": "SDFScale", + "is_bitfield": false, "values": [ { "name": "SDF_SCALE_100_PERCENT", @@ -234804,6 +241172,28 @@ "value": 3 } ] + }, + { + "name": "VRSMode", + "is_bitfield": false, + "values": [ + { + "name": "VRS_DISABLED", + "value": 0 + }, + { + "name": "VRS_TEXTURE", + "value": 1 + }, + { + "name": "VRS_XR", + "value": 2 + }, + { + "name": "VRS_MAX", + "value": 3 + } + ] } ], "methods": [ @@ -234813,7 +241203,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2736080068, "arguments": [ { "name": "world_2d", @@ -234827,7 +241217,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2339128592, "return_value": { "type": "World2D" } @@ -234838,7 +241228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2339128592, "return_value": { "type": "World2D" } @@ -234849,7 +241239,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "xform", @@ -234863,7 +241253,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -234874,7 +241264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2761652528, "arguments": [ { "name": "xform", @@ -234888,7 +241278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -234899,7 +241289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3814499831, "return_value": { "type": "Transform2D" } @@ -234910,7 +241300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -234921,7 +241311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -234935,7 +241325,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -234946,7 +241336,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3330258708, "arguments": [ { "name": "msaa", @@ -234960,7 +241350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2542055527, "return_value": { "type": "enum::Viewport.MSAA" } @@ -234971,7 +241361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3544169389, "arguments": [ { "name": "screen_space_aa", @@ -234985,7 +241375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1390814124, "return_value": { "type": "enum::Viewport.ScreenSpaceAA" } @@ -234996,7 +241386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235010,7 +241400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235021,7 +241411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235035,7 +241425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235046,7 +241436,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235060,7 +241450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235071,7 +241461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1970246205, "arguments": [ { "name": "debug_draw", @@ -235085,7 +241475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 579191299, "return_value": { "type": "enum::Viewport.DebugDraw" } @@ -235096,7 +241486,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 481977019, "return_value": { "type": "int", "meta": "int32" @@ -235118,7 +241508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1746695840, "return_value": { "type": "ViewportTexture" } @@ -235129,7 +241519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235143,7 +241533,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -235154,7 +241544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -235165,7 +241555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "text", @@ -235179,7 +241569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3644664830, "arguments": [ { "name": "event", @@ -235198,7 +241588,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134464040, + "hash": 3644664830, "arguments": [ { "name": "event", @@ -235217,7 +241607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3551466917, "return_value": { "type": "Camera2D" } @@ -235228,7 +241618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235242,7 +241632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235253,7 +241643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -235264,7 +241654,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "position", @@ -235278,7 +241668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -235289,7 +241679,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235300,7 +241690,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235311,7 +241701,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "gui_get_focus_owner", @@ -235319,7 +241709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 829782337, "return_value": { "type": "Control" } @@ -235330,7 +241720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disable", @@ -235344,18 +241734,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, { - "name": "set_shadow_atlas_size", + "name": "set_positional_shadow_atlas_size", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "size", @@ -235365,24 +241755,24 @@ ] }, { - "name": "get_shadow_atlas_size", + "name": "get_positional_shadow_atlas_size", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" } }, { - "name": "set_shadow_atlas_16_bits", + "name": "set_positional_shadow_atlas_16_bits", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235391,12 +241781,12 @@ ] }, { - "name": "get_shadow_atlas_16_bits", + "name": "get_positional_shadow_atlas_16_bits", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235407,7 +241797,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -235421,7 +241811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235432,7 +241822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -235446,7 +241836,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235457,7 +241847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -235471,18 +241861,18 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } }, { - "name": "set_shadow_atlas_quadrant_subdiv", + "name": "set_positional_shadow_atlas_quadrant_subdiv", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2596956071, "arguments": [ { "name": "quadrant", @@ -235491,19 +241881,19 @@ }, { "name": "subdiv", - "type": "enum::Viewport.ShadowAtlasQuadrantSubdiv" + "type": "enum::Viewport.PositionalShadowAtlasQuadrantSubdiv" } ] }, { - "name": "get_shadow_atlas_quadrant_subdiv", + "name": "get_positional_shadow_atlas_quadrant_subdiv", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2676778355, "return_value": { - "type": "enum::Viewport.ShadowAtlasQuadrantSubdiv" + "type": "enum::Viewport.PositionalShadowAtlasQuadrantSubdiv" }, "arguments": [ { @@ -235519,7 +241909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "is_input_handled", @@ -235527,7 +241917,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235538,7 +241928,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235552,7 +241942,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235563,7 +241953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2815160100, "arguments": [ { "name": "mode", @@ -235577,7 +241967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 896601198, "return_value": { "type": "enum::Viewport.DefaultCanvasItemTextureFilter" } @@ -235588,7 +241978,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235602,7 +241992,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235613,7 +242003,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1658513413, "arguments": [ { "name": "mode", @@ -235627,7 +242017,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4049774160, "return_value": { "type": "enum::Viewport.DefaultCanvasItemTextureRepeat" } @@ -235638,7 +242028,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2574159017, "arguments": [ { "name": "oversize", @@ -235652,7 +242042,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2631427510, "return_value": { "type": "enum::Viewport.SDFOversize" } @@ -235663,7 +242053,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1402773951, "arguments": [ { "name": "scale", @@ -235677,7 +242067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3162688184, "return_value": { "type": "enum::Viewport.SDFScale" } @@ -235688,7 +242078,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "pixels", @@ -235703,7 +242093,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -235715,7 +242105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1400875337, "arguments": [ { "name": "world_3d", @@ -235729,7 +242119,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 317588385, "return_value": { "type": "World3D" } @@ -235740,7 +242130,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 317588385, "return_value": { "type": "World3D" } @@ -235751,7 +242141,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235765,7 +242155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235776,7 +242166,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2285090890, "return_value": { "type": "Camera3D" } @@ -235787,7 +242177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -235801,7 +242191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235812,7 +242202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "disable", @@ -235826,7 +242216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -235837,7 +242227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "use", @@ -235851,7 +242241,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -235862,7 +242252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1531597597, "arguments": [ { "name": "scaling_3d_mode", @@ -235876,7 +242266,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2597660574, "return_value": { "type": "enum::Viewport.Scaling3DMode" } @@ -235887,7 +242277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -235902,7 +242292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -235914,7 +242304,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "fsr_sharpness", @@ -235929,38 +242319,88 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } }, { - "name": "set_fsr_mipmap_bias", + "name": "set_texture_mipmap_bias", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { - "name": "fsr_mipmap_bias", + "name": "texture_mipmap_bias", "type": "float", "meta": "float" } ] }, { - "name": "get_fsr_mipmap_bias", + "name": "get_texture_mipmap_bias", "is_const": true, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" } + }, + { + "name": "set_vrs_mode", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2749867817, + "arguments": [ + { + "name": "mode", + "type": "enum::Viewport.VRSMode" + } + ] + }, + { + "name": "get_vrs_mode", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 349660525, + "return_value": { + "type": "enum::Viewport.VRSMode" + } + }, + { + "name": "set_vrs_texture", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4051416890, + "arguments": [ + { + "name": "texture", + "type": "Texture2D" + } + ] + }, + { + "name": "get_vrs_texture", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3635182373, + "return_value": { + "type": "Texture2D" + } } ], "signals": [ @@ -236106,9 +242546,9 @@ }, { "type": "float", - "name": "fsr_mipmap_bias", - "setter": "set_fsr_mipmap_bias", - "getter": "get_fsr_mipmap_bias", + "name": "texture_mipmap_bias", + "setter": "set_texture_mipmap_bias", + "getter": "get_texture_mipmap_bias", "index": -1 }, { @@ -236118,6 +242558,20 @@ "getter": "get_fsr_sharpness", "index": -1 }, + { + "type": "int", + "name": "vrs_mode", + "setter": "set_vrs_mode", + "getter": "get_vrs_mode", + "index": -1 + }, + { + "type": "Texture2D", + "name": "vrs_texture", + "setter": "set_vrs_texture", + "getter": "get_vrs_texture", + "index": -1 + }, { "type": "int", "name": "canvas_item_default_texture_filter", @@ -236190,44 +242644,44 @@ }, { "type": "int", - "name": "shadow_atlas_size", - "setter": "set_shadow_atlas_size", - "getter": "get_shadow_atlas_size", + "name": "positional_shadow_atlas_size", + "setter": "set_positional_shadow_atlas_size", + "getter": "get_positional_shadow_atlas_size", "index": -1 }, { "type": "bool", - "name": "shadow_atlas_16_bits", - "setter": "set_shadow_atlas_16_bits", - "getter": "get_shadow_atlas_16_bits", + "name": "positional_shadow_atlas_16_bits", + "setter": "set_positional_shadow_atlas_16_bits", + "getter": "get_positional_shadow_atlas_16_bits", "index": -1 }, { "type": "int", - "name": "shadow_atlas_quad_0", - "setter": "set_shadow_atlas_quadrant_subdiv", - "getter": "get_shadow_atlas_quadrant_subdiv", + "name": "positional_shadow_atlas_quad_0", + "setter": "set_positional_shadow_atlas_quadrant_subdiv", + "getter": "get_positional_shadow_atlas_quadrant_subdiv", "index": 0 }, { "type": "int", - "name": "shadow_atlas_quad_1", - "setter": "set_shadow_atlas_quadrant_subdiv", - "getter": "get_shadow_atlas_quadrant_subdiv", + "name": "positional_shadow_atlas_quad_1", + "setter": "set_positional_shadow_atlas_quadrant_subdiv", + "getter": "get_positional_shadow_atlas_quadrant_subdiv", "index": 1 }, { "type": "int", - "name": "shadow_atlas_quad_2", - "setter": "set_shadow_atlas_quadrant_subdiv", - "getter": "get_shadow_atlas_quadrant_subdiv", + "name": "positional_shadow_atlas_quad_2", + "setter": "set_positional_shadow_atlas_quadrant_subdiv", + "getter": "get_positional_shadow_atlas_quadrant_subdiv", "index": 2 }, { "type": "int", - "name": "shadow_atlas_quad_3", - "setter": "set_shadow_atlas_quadrant_subdiv", - "getter": "get_shadow_atlas_quadrant_subdiv", + "name": "positional_shadow_atlas_quad_3", + "setter": "set_positional_shadow_atlas_quadrant_subdiv", + "getter": "get_positional_shadow_atlas_quadrant_subdiv", "index": 3 }, { @@ -236259,7 +242713,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -236273,7 +242727,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -236298,6 +242752,7 @@ "enums": [ { "name": "EnableMode", + "is_bitfield": false, "values": [ { "name": "ENABLE_MODE_INHERIT", @@ -236321,7 +242776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2961788752, "arguments": [ { "name": "mode", @@ -236335,7 +242790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2650445576, "return_value": { "type": "enum::VisibleOnScreenEnabler2D.EnableMode" } @@ -236346,7 +242801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -236360,7 +242815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 277076166, "return_value": { "type": "NodePath" } @@ -236392,6 +242847,7 @@ "enums": [ { "name": "EnableMode", + "is_bitfield": false, "values": [ { "name": "ENABLE_MODE_INHERIT", @@ -236415,7 +242871,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 320303646, "arguments": [ { "name": "mode", @@ -236429,7 +242885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 3352990031, "return_value": { "type": "enum::VisibleOnScreenEnabler3D.EnableMode" } @@ -236440,7 +242896,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -236454,7 +242910,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 277076166, "return_value": { "type": "NodePath" } @@ -236490,7 +242946,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2046264180, "arguments": [ { "name": "rect", @@ -236504,7 +242960,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1639390495, "return_value": { "type": "Rect2" } @@ -236515,7 +242971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -236552,7 +243008,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 259215842, "arguments": [ { "name": "rect", @@ -236566,7 +243022,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -236613,7 +243069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2722037293, "arguments": [ { "name": "base", @@ -236627,7 +243083,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -236638,7 +243094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -236649,7 +243105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "mask", @@ -236664,7 +243120,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -236676,7 +243132,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 300928843, "arguments": [ { "name": "layer_number", @@ -236695,7 +243151,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -236713,7 +243169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -236724,7 +243180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -236753,7 +243209,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "name", @@ -236772,7 +243228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -236789,7 +243245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -236803,7 +243259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -236821,7 +243277,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -236835,7 +243291,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -236846,7 +243302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 3131718070, "arguments": [ { "name": "id", @@ -236870,7 +243326,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -236885,7 +243341,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2458036349, "return_value": { "type": "int", "meta": "int32" @@ -236903,7 +243359,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3745104081, "return_value": { "type": "VisualScriptNode" }, @@ -236921,7 +243377,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -236939,7 +243395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 163021252, "arguments": [ { "name": "id", @@ -236958,7 +243414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2299179447, "return_value": { "type": "Vector2" }, @@ -236976,7 +243432,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1649997291, "arguments": [ { "name": "from_node", @@ -237001,7 +243457,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 1649997291, "arguments": [ { "name": "from_node", @@ -237026,7 +243482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445994, + "hash": 3072856071, "return_value": { "type": "bool" }, @@ -237054,7 +243510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4275841770, "arguments": [ { "name": "from_node", @@ -237084,7 +243540,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 4275841770, "arguments": [ { "name": "from_node", @@ -237114,7 +243570,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481931, + "hash": 1701679529, "return_value": { "type": "bool" }, @@ -237147,7 +243603,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 182667338, + "hash": 4087535639, "arguments": [ { "name": "name", @@ -237171,7 +243627,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -237188,7 +243644,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -237202,7 +243658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "name", @@ -237220,7 +243676,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -237237,7 +243693,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 745996376, "arguments": [ { "name": "name", @@ -237255,7 +243711,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4028089122, "return_value": { "type": "Dictionary" }, @@ -237272,7 +243728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2524380260, "arguments": [ { "name": "name", @@ -237290,7 +243746,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -237307,7 +243763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -237325,7 +243781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -237339,7 +243795,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -237356,7 +243812,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 136835882, + "hash": 1149431365, "arguments": [ { "name": "name", @@ -237384,7 +243840,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2311141340, "arguments": [ { "name": "name", @@ -237407,7 +243863,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 1605562169, "return_value": { "type": "enum::Variant.Type" }, @@ -237429,7 +243885,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2785984494, "arguments": [ { "name": "name", @@ -237452,7 +243908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 988217201, "return_value": { "type": "String" }, @@ -237474,7 +243930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2415702435, "arguments": [ { "name": "name", @@ -237493,7 +243949,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2458036349, "return_value": { "type": "int", "meta": "int32" @@ -237511,7 +243967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2825628604, "arguments": [ { "name": "name", @@ -237535,7 +243991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -237549,7 +244005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3740211285, "arguments": [ { "name": "name", @@ -237567,7 +244023,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "type", @@ -237610,7 +244066,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "name", @@ -237624,7 +244080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -237635,7 +244091,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -237649,7 +244105,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -237681,6 +244137,7 @@ "enums": [ { "name": "BuiltinFunc", + "is_bitfield": false, "values": [ { "name": "MATH_SIN", @@ -237968,7 +244425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 620405801, "arguments": [ { "name": "which", @@ -237982,7 +244439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 781834680, "return_value": { "type": "enum::VisualScriptBuiltinFunc.BuiltinFunc" } @@ -238011,7 +244468,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -238025,7 +244482,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2737447660, "return_value": { "type": "StringName" } @@ -238036,7 +244493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -238050,7 +244507,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2737447660, "return_value": { "type": "StringName" } @@ -238086,7 +244543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "title", @@ -238100,7 +244557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -238111,7 +244568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "description", @@ -238125,7 +244582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -238136,7 +244593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -238150,7 +244607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -238207,7 +244664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -238221,7 +244678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -238232,7 +244689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1114965689, "arguments": [ { "name": "value", @@ -238246,7 +244703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -238282,7 +244739,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -238296,7 +244753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -238307,7 +244764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4155329257, "arguments": [ { "name": "constructor", @@ -238321,7 +244778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3102165223, "return_value": { "type": "Dictionary" } @@ -238375,6 +244832,7 @@ "enums": [ { "name": "StartMode", + "is_bitfield": false, "values": [ { "name": "START_MODE_BEGIN_SEQUENCE", @@ -238659,7 +245117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 4270490372, "arguments": [ { "name": "name", @@ -238681,7 +245139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3186203200, "arguments": [ { "name": "name", @@ -238713,7 +245171,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -238727,7 +245185,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -238763,7 +245221,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -238777,7 +245235,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -238806,7 +245264,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -238820,7 +245278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -238859,6 +245317,7 @@ "enums": [ { "name": "CallMode", + "is_bitfield": false, "values": [ { "name": "CALL_MODE_SELF", @@ -238884,6 +245343,7 @@ }, { "name": "RPCCallMode", + "is_bitfield": false, "values": [ { "name": "RPC_DISABLED", @@ -238915,7 +245375,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "base_type", @@ -238929,7 +245389,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -238940,7 +245400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "base_script", @@ -238954,7 +245414,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -238965,7 +245425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "basic_type", @@ -238979,7 +245439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -238990,7 +245450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "singleton", @@ -239004,7 +245464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -239015,7 +245475,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "function", @@ -239029,7 +245489,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -239040,7 +245500,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 697692193, "arguments": [ { "name": "mode", @@ -239054,7 +245514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1833353862, "return_value": { "type": "enum::VisualScriptFunctionCall.CallMode" } @@ -239065,7 +245525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "base_path", @@ -239079,7 +245539,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -239090,7 +245550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "amount", @@ -239105,7 +245565,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -239117,7 +245577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3836215895, "arguments": [ { "name": "mode", @@ -239131,7 +245591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1976562450, "return_value": { "type": "enum::VisualScriptFunctionCall.RPCCallMode" } @@ -239142,7 +245602,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -239156,7 +245616,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -239255,7 +245715,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3557354769, "arguments": [ { "name": "obj", @@ -239277,7 +245737,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 365817734, + "hash": 2627273609, "return_value": { "type": "Variant" }, @@ -239295,7 +245755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -239315,7 +245775,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -239330,7 +245790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -239370,6 +245830,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_PRESSED", @@ -239397,7 +245858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -239411,7 +245872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -239422,7 +245883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 315703700, "arguments": [ { "name": "mode", @@ -239436,7 +245897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2667110114, "return_value": { "type": "enum::VisualScriptInputAction.Mode" } @@ -239479,7 +245940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2260798308, "arguments": [ { "name": "type", @@ -239502,7 +245963,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "index", @@ -239521,7 +245982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3492912874, "arguments": [ { "name": "index", @@ -239540,7 +246001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -239555,7 +246016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2260798308, "arguments": [ { "name": "type", @@ -239578,7 +246039,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "index", @@ -239597,7 +246058,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3492912874, "arguments": [ { "name": "index", @@ -239616,7 +246077,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -239640,7 +246101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -239654,7 +246115,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -239665,7 +246126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -239679,7 +246140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -239715,7 +246176,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -239729,7 +246190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -239740,7 +246201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -239754,7 +246215,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -239786,6 +246247,7 @@ "enums": [ { "name": "MathConstant", + "is_bitfield": false, "values": [ { "name": "MATH_CONSTANT_ONE", @@ -239833,7 +246295,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 585905713, "arguments": [ { "name": "which", @@ -239847,7 +246309,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1673478079, "return_value": { "type": "enum::VisualScriptMathConstant.MathConstant" } @@ -239876,7 +246338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 400131028, "return_value": { "type": "VisualScript" } @@ -239887,7 +246349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 2152698145, "arguments": [ { "name": "port_idx", @@ -239906,7 +246368,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -239924,7 +246386,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "signals": [ @@ -239946,7 +246408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 766151822, "arguments": [ { "name": "op", @@ -239960,7 +246422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3816674027, "return_value": { "type": "enum::Variant.Operator" } @@ -239971,7 +246433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -239985,7 +246447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -240021,7 +246483,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 968641751, "arguments": [ { "name": "resource", @@ -240035,7 +246497,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 121922552, "return_value": { "type": "Resource" } @@ -240060,6 +246522,7 @@ "enums": [ { "name": "CallMode", + "is_bitfield": false, "values": [ { "name": "CALL_MODE_SELF", @@ -240087,7 +246550,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "base_type", @@ -240101,7 +246564,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240112,7 +246575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "base_script", @@ -240126,7 +246589,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -240137,7 +246600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "basic_type", @@ -240151,7 +246614,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -240162,7 +246625,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "property", @@ -240176,7 +246639,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240187,7 +246650,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3551783243, "arguments": [ { "name": "mode", @@ -240201,7 +246664,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 206945834, "return_value": { "type": "enum::VisualScriptPropertyGet.CallMode" } @@ -240212,7 +246675,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "base_path", @@ -240226,7 +246689,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -240237,7 +246700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "index", @@ -240251,7 +246714,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240325,6 +246788,7 @@ "enums": [ { "name": "CallMode", + "is_bitfield": false, "values": [ { "name": "CALL_MODE_SELF", @@ -240346,6 +246810,7 @@ }, { "name": "AssignOp", + "is_bitfield": false, "values": [ { "name": "ASSIGN_OP_NONE", @@ -240401,7 +246866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "base_type", @@ -240415,7 +246880,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240426,7 +246891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "base_script", @@ -240440,7 +246905,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -240451,7 +246916,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "basic_type", @@ -240465,7 +246930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -240476,7 +246941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "property", @@ -240490,7 +246955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240501,7 +246966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2955593888, "arguments": [ { "name": "mode", @@ -240515,7 +246980,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 724201062, "return_value": { "type": "enum::VisualScriptPropertySet.CallMode" } @@ -240526,7 +246991,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "base_path", @@ -240540,7 +247005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -240551,7 +247016,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "index", @@ -240565,7 +247030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240576,7 +247041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 670467928, "arguments": [ { "name": "assign_op", @@ -240590,7 +247055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3860320925, "return_value": { "type": "enum::VisualScriptPropertySet.AssignOp" } @@ -240675,7 +247140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -240689,7 +247154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2841200299, "return_value": { "type": "String" } @@ -240718,7 +247183,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -240732,7 +247197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -240743,7 +247208,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -240757,7 +247222,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -240793,7 +247258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "path", @@ -240807,7 +247272,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 277076166, "return_value": { "type": "NodePath" } @@ -240843,7 +247308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2887708385, "arguments": [ { "name": "type", @@ -240857,7 +247322,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3416842102, "return_value": { "type": "enum::Variant.Type" } @@ -240893,7 +247358,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "steps", @@ -240908,7 +247373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -240952,7 +247417,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "type", @@ -240966,7 +247431,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -240977,7 +247442,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "path", @@ -240991,7 +247456,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -241027,7 +247492,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -241041,7 +247506,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -241070,7 +247535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -241084,7 +247549,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -241116,6 +247581,7 @@ "enums": [ { "name": "YieldMode", + "is_bitfield": false, "values": [ { "name": "YIELD_FRAME", @@ -241139,7 +247605,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2680332698, "arguments": [ { "name": "mode", @@ -241153,7 +247619,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 561851229, "return_value": { "type": "enum::VisualScriptYield.YieldMode" } @@ -241164,7 +247630,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "sec", @@ -241179,7 +247645,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 191475506, "return_value": { "type": "float", "meta": "double" @@ -241212,6 +247678,7 @@ "enums": [ { "name": "CallMode", + "is_bitfield": false, "values": [ { "name": "CALL_MODE_SELF", @@ -241235,7 +247702,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "base_type", @@ -241249,7 +247716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -241260,7 +247727,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "signal", @@ -241274,7 +247741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -241285,7 +247752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 418847721, "arguments": [ { "name": "mode", @@ -241299,7 +247766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3059194562, "return_value": { "type": "enum::VisualScriptYieldSignal.CallMode" } @@ -241310,7 +247777,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1348162250, "arguments": [ { "name": "base_path", @@ -241324,7 +247791,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4075236667, "return_value": { "type": "NodePath" } @@ -241380,6 +247847,7 @@ "enums": [ { "name": "Type", + "is_bitfield": false, "values": [ { "name": "TYPE_VERTEX", @@ -241429,6 +247897,7 @@ }, { "name": "VaryingMode", + "is_bitfield": false, "values": [ { "name": "VARYING_MODE_VERTEX_TO_FRAG_LIGHT", @@ -241446,6 +247915,7 @@ }, { "name": "VaryingType", + "is_bitfield": false, "values": [ { "name": "VARYING_TYPE_FLOAT", @@ -241485,7 +247955,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3978014962, "arguments": [ { "name": "mode", @@ -241499,7 +247969,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134295977, + "hash": 1560769431, "arguments": [ { "name": "type", @@ -241526,7 +247996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 3784670312, "return_value": { "type": "VisualShaderNode" }, @@ -241548,7 +248018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2726660721, "arguments": [ { "name": "type", @@ -241571,7 +248041,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410057, + "hash": 2175036082, "return_value": { "type": "Vector2" }, @@ -241593,7 +248063,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2370592410, "return_value": { "type": "PackedInt32Array" }, @@ -241610,7 +248080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 629467342, "return_value": { "type": "int", "meta": "int32" @@ -241628,7 +248098,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 844050912, "arguments": [ { "name": "type", @@ -241647,7 +248117,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 3144735253, "arguments": [ { "name": "type", @@ -241670,7 +248140,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517868, + "hash": 3922381898, "return_value": { "type": "bool" }, @@ -241707,7 +248177,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517868, + "hash": 3922381898, "return_value": { "type": "bool" }, @@ -241744,7 +248214,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135517835, + "hash": 3081049573, "return_value": { "type": "enum::Error" }, @@ -241781,7 +248251,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 2268060358, "arguments": [ { "name": "type", @@ -241815,7 +248285,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 2268060358, "arguments": [ { "name": "type", @@ -241849,7 +248319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1441964831, "return_value": { "type": "Array" }, @@ -241860,38 +248330,13 @@ } ] }, - { - "name": "set_engine_version", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134188166, - "arguments": [ - { - "name": "version", - "type": "Dictionary" - } - ] - }, - { - "name": "get_engine_version", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 135338183, - "return_value": { - "type": "Dictionary" - } - }, { "name": "set_graph_offset", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "offset", @@ -241905,7 +248350,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -241916,7 +248361,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2084110726, "arguments": [ { "name": "name", @@ -241938,7 +248383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -241952,7 +248397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -241971,13 +248416,6 @@ "setter": "set_graph_offset", "getter": "get_graph_offset", "index": -1 - }, - { - "type": "Dictionary", - "name": "engine_version", - "setter": "set_engine_version", - "getter": "get_engine_version", - "index": -1 } ] }, @@ -241990,6 +248428,7 @@ "enums": [ { "name": "PortType", + "is_bitfield": false, "values": [ { "name": "PORT_TYPE_SCALAR", @@ -242037,7 +248476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "port", @@ -242052,7 +248491,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -242064,7 +248503,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135649961, + "hash": 150923387, "arguments": [ { "name": "port", @@ -242088,7 +248527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4227898402, "return_value": { "type": "Variant" }, @@ -242106,7 +248545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "port", @@ -242121,7 +248560,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_default_input_values", @@ -242129,7 +248568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 381264803, "arguments": [ { "name": "values", @@ -242143,7 +248582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -242187,6 +248626,7 @@ "enums": [ { "name": "BillboardType", + "is_bitfield": false, "values": [ { "name": "BILLBOARD_TYPE_DISABLED", @@ -242218,7 +248658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1227463289, "arguments": [ { "name": "billboard_type", @@ -242232,7 +248672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3724188517, "return_value": { "type": "enum::VisualShaderNodeBillboard.BillboardType" } @@ -242243,7 +248683,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -242257,7 +248697,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -242293,7 +248733,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "constant", @@ -242307,7 +248747,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -242336,7 +248776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -242350,7 +248790,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -242361,7 +248801,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "value", @@ -242375,7 +248815,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -242407,6 +248847,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_FLOAT", @@ -242442,7 +248883,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 405010749, "arguments": [ { "name": "op_type", @@ -242456,7 +248897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 233276050, "return_value": { "type": "enum::VisualShaderNodeClamp.OpType" } @@ -242485,7 +248926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "constant", @@ -242499,7 +248940,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -242524,6 +248965,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_GRAYSCALE", @@ -242555,7 +248997,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3973396138, "arguments": [ { "name": "func", @@ -242569,7 +249011,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 554863321, "return_value": { "type": "enum::VisualShaderNodeColorFunc.Function" } @@ -242594,6 +249036,7 @@ "enums": [ { "name": "Operator", + "is_bitfield": false, "values": [ { "name": "OP_SCREEN", @@ -242645,7 +249088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4260370673, "arguments": [ { "name": "op", @@ -242659,7 +249102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1950956529, "return_value": { "type": "enum::VisualShaderNodeColorOp.Operator" } @@ -242688,7 +249131,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -242702,7 +249145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -242713,7 +249156,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2920490490, "arguments": [ { "name": "value", @@ -242727,7 +249170,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3444240500, "return_value": { "type": "Color" } @@ -242763,7 +249206,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "title", @@ -242777,7 +249220,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -242788,7 +249231,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "description", @@ -242802,7 +249245,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -242834,6 +249277,7 @@ "enums": [ { "name": "ComparisonType", + "is_bitfield": false, "values": [ { "name": "CTYPE_SCALAR", @@ -242871,6 +249315,7 @@ }, { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_EQUAL", @@ -242904,6 +249349,7 @@ }, { "name": "Condition", + "is_bitfield": false, "values": [ { "name": "COND_ALL", @@ -242927,7 +249373,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 516558320, "arguments": [ { "name": "type", @@ -242941,7 +249387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3495315961, "return_value": { "type": "enum::VisualShaderNodeCompare.ComparisonType" } @@ -242952,7 +249398,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2370951349, "arguments": [ { "name": "func", @@ -242966,7 +249412,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4089164265, "return_value": { "type": "enum::VisualShaderNodeCompare.Function" } @@ -242977,7 +249423,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 918742392, "arguments": [ { "name": "condition", @@ -242991,7 +249437,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3281078941, "return_value": { "type": "enum::VisualShaderNodeCompare.Condition" } @@ -243037,6 +249483,7 @@ "enums": [ { "name": "Source", + "is_bitfield": false, "values": [ { "name": "SOURCE_TEXTURE", @@ -243054,6 +249501,7 @@ }, { "name": "TextureType", + "is_bitfield": false, "values": [ { "name": "TYPE_DATA", @@ -243081,7 +249529,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1625400621, "arguments": [ { "name": "value", @@ -243095,7 +249543,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2222048781, "return_value": { "type": "enum::VisualShaderNodeCubemap.Source" } @@ -243106,7 +249554,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2219800736, "arguments": [ { "name": "value", @@ -243120,7 +249568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1772111058, "return_value": { "type": "Cubemap" } @@ -243131,7 +249579,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1899718876, "arguments": [ { "name": "value", @@ -243145,7 +249593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3356498888, "return_value": { "type": "enum::VisualShaderNodeCubemap.TextureType" } @@ -243195,7 +249643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 181872837, "arguments": [ { "name": "texture", @@ -243209,7 +249657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2800800579, "return_value": { "type": "CurveTexture" } @@ -243238,7 +249686,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 8031783, "arguments": [ { "name": "texture", @@ -243252,7 +249700,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1950275015, "return_value": { "type": "CurveXYZTexture" } @@ -243513,6 +249961,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_SCALAR", @@ -243538,6 +249987,7 @@ }, { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_SUM", @@ -243565,7 +250015,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 377800221, "arguments": [ { "name": "type", @@ -243579,7 +250029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3997800514, "return_value": { "type": "enum::VisualShaderNodeDerivativeFunc.OpType" } @@ -243590,7 +250040,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1944704156, "arguments": [ { "name": "func", @@ -243604,7 +250054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2389093396, "return_value": { "type": "enum::VisualShaderNodeDerivativeFunc.Function" } @@ -243654,7 +250104,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "expression", @@ -243668,7 +250118,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -243704,7 +250154,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "constant", @@ -243719,7 +250169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -243745,6 +250195,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_SIN", @@ -243888,7 +250339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 536026177, "arguments": [ { "name": "func", @@ -243902,7 +250353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2033948868, "return_value": { "type": "enum::VisualShaderNodeFloatFunc.Function" } @@ -243927,6 +250378,7 @@ "enums": [ { "name": "Operator", + "is_bitfield": false, "values": [ { "name": "OP_ADD", @@ -243982,7 +250434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2488468047, "arguments": [ { "name": "op", @@ -243996,7 +250448,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1867979390, "return_value": { "type": "enum::VisualShaderNodeFloatOp.Operator" } @@ -244021,6 +250473,7 @@ "enums": [ { "name": "Hint", + "is_bitfield": false, "values": [ { "name": "HINT_NONE", @@ -244048,7 +250501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1381357203, "arguments": [ { "name": "hint", @@ -244062,7 +250515,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 569120385, "return_value": { "type": "enum::VisualShaderNodeFloatUniform.Hint" } @@ -244073,7 +250526,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -244088,7 +250541,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -244100,7 +250553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -244115,7 +250568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -244127,7 +250580,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -244142,7 +250595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -244154,7 +250607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -244168,7 +250621,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -244179,7 +250632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "value", @@ -244194,7 +250647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -244273,7 +250726,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "inputs", @@ -244287,7 +250740,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -244298,7 +250751,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "outputs", @@ -244312,7 +250765,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -244323,7 +250776,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -244340,7 +250793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2285447957, "arguments": [ { "name": "id", @@ -244364,7 +250817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -244379,7 +250832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244391,7 +250844,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -244409,7 +250862,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "add_output_port", @@ -244417,7 +250870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134260040, + "hash": 2285447957, "arguments": [ { "name": "id", @@ -244441,7 +250894,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "id", @@ -244456,7 +250909,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244468,7 +250921,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -244486,7 +250939,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_input_port_name", @@ -244494,7 +250947,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "id", @@ -244513,7 +250966,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "id", @@ -244533,7 +250986,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 501894301, "arguments": [ { "name": "id", @@ -244552,7 +251005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3937882851, "arguments": [ { "name": "id", @@ -244572,7 +251025,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244584,7 +251037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244612,7 +251065,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -244626,7 +251079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -244637,7 +251090,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -244671,7 +251124,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "constant", @@ -244686,7 +251139,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244712,6 +251165,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_ABS", @@ -244743,7 +251197,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 424195284, "arguments": [ { "name": "func", @@ -244757,7 +251211,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2753496911, "return_value": { "type": "enum::VisualShaderNodeIntFunc.Function" } @@ -244782,6 +251236,7 @@ "enums": [ { "name": "Operator", + "is_bitfield": false, "values": [ { "name": "OP_ADD", @@ -244845,7 +251300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1677909323, "arguments": [ { "name": "op", @@ -244859,7 +251314,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1236987913, "return_value": { "type": "enum::VisualShaderNodeIntOp.Operator" } @@ -244884,6 +251339,7 @@ "enums": [ { "name": "Hint", + "is_bitfield": false, "values": [ { "name": "HINT_NONE", @@ -244911,7 +251367,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 143686977, "arguments": [ { "name": "hint", @@ -244925,7 +251381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1563206693, "return_value": { "type": "enum::VisualShaderNodeIntUniform.Hint" } @@ -244936,7 +251392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -244951,7 +251407,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244963,7 +251419,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -244978,7 +251434,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -244990,7 +251446,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -245005,7 +251461,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -245017,7 +251473,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -245031,7 +251487,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -245042,7 +251498,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "value", @@ -245057,7 +251513,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -245118,6 +251574,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_IS_INF", @@ -245141,7 +251598,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1438374690, "arguments": [ { "name": "func", @@ -245155,7 +251612,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 580678557, "return_value": { "type": "enum::VisualShaderNodeIs.Function" } @@ -245180,6 +251637,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_SCALAR", @@ -245223,7 +251681,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3397501671, "arguments": [ { "name": "op_type", @@ -245237,7 +251695,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4013957297, "return_value": { "type": "enum::VisualShaderNodeMix.OpType" } @@ -245262,6 +251720,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_SCALAR", @@ -245293,7 +251752,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1409862380, "arguments": [ { "name": "type", @@ -245307,7 +251766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2823201991, "return_value": { "type": "enum::VisualShaderNodeMultiplyAdd.OpType" } @@ -245346,6 +251805,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_LINEAR", @@ -245373,7 +251833,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3457585749, "arguments": [ { "name": "mode", @@ -245387,7 +251847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2660365633, "return_value": { "type": "enum::VisualShaderNodeParticleAccelerator.Mode" } @@ -245426,6 +251886,7 @@ "enums": [ { "name": "EmitFlags", + "is_bitfield": false, "values": [ { "name": "EMIT_FLAG_POSITION", @@ -245457,7 +251918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3960756792, "arguments": [ { "name": "flags", @@ -245471,7 +251932,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 171277835, "return_value": { "type": "enum::VisualShaderNodeParticleEmit.EmitFlags" } @@ -245500,7 +251961,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -245514,7 +251975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -245543,7 +252004,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 194775623, "arguments": [ { "name": "mesh", @@ -245557,7 +252018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1808005922, "return_value": { "type": "Mesh" } @@ -245568,7 +252029,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -245582,7 +252043,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -245593,7 +252054,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "surface_index", @@ -245608,7 +252069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -245652,7 +252113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -245666,7 +252127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -245698,6 +252159,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_SCALAR", @@ -245725,7 +252187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2060089061, "arguments": [ { "name": "type", @@ -245739,7 +252201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3597061078, "return_value": { "type": "enum::VisualShaderNodeParticleRandomness.OpType" } @@ -245782,7 +252244,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "size", @@ -245796,7 +252258,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -245835,6 +252297,7 @@ "enums": [ { "name": "Source", + "is_bitfield": false, "values": [ { "name": "SOURCE_TEXTURE", @@ -245858,7 +252321,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3315130991, "arguments": [ { "name": "value", @@ -245872,7 +252335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1079494121, "return_value": { "type": "enum::VisualShaderNodeSample3D.Source" } @@ -245904,6 +252367,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_SCALAR", @@ -245947,7 +252411,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2427426148, "arguments": [ { "name": "op_type", @@ -245961,7 +252425,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 359640855, "return_value": { "type": "enum::VisualShaderNodeSmoothStep.OpType" } @@ -245986,6 +252450,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_SCALAR", @@ -246029,7 +252494,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 715172489, "arguments": [ { "name": "op_type", @@ -246043,7 +252508,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3274022781, "return_value": { "type": "enum::VisualShaderNodeStep.OpType" } @@ -246068,6 +252533,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_FLOAT", @@ -246111,7 +252577,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 510471861, "arguments": [ { "name": "type", @@ -246125,7 +252591,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2517845071, "return_value": { "type": "enum::VisualShaderNodeSwitch.OpType" } @@ -246150,6 +252616,7 @@ "enums": [ { "name": "Source", + "is_bitfield": false, "values": [ { "name": "SOURCE_TEXTURE", @@ -246183,6 +252650,7 @@ }, { "name": "TextureType", + "is_bitfield": false, "values": [ { "name": "TYPE_DATA", @@ -246210,7 +252678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 905262939, "arguments": [ { "name": "value", @@ -246224,7 +252692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2896297444, "return_value": { "type": "enum::VisualShaderNodeTexture.Source" } @@ -246235,7 +252703,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4051416890, "arguments": [ { "name": "value", @@ -246249,7 +252717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3635182373, "return_value": { "type": "Texture2D" } @@ -246260,7 +252728,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 986314081, "arguments": [ { "name": "value", @@ -246274,7 +252742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3290430153, "return_value": { "type": "enum::VisualShaderNodeTexture.TextureType" } @@ -246317,7 +252785,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2206200446, "arguments": [ { "name": "value", @@ -246331,7 +252799,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 146117123, "return_value": { "type": "Texture2DArray" } @@ -246367,7 +252835,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1188404210, "arguments": [ { "name": "value", @@ -246381,7 +252849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 373985333, "return_value": { "type": "Texture3D" } @@ -246427,6 +252895,7 @@ "enums": [ { "name": "TextureType", + "is_bitfield": false, "values": [ { "name": "TYPE_DATA", @@ -246452,6 +252921,7 @@ }, { "name": "ColorDefault", + "is_bitfield": false, "values": [ { "name": "COLOR_DEFAULT_WHITE", @@ -246469,6 +252939,7 @@ }, { "name": "TextureFilter", + "is_bitfield": false, "values": [ { "name": "FILTER_DEFAULT", @@ -246506,6 +252977,7 @@ }, { "name": "TextureRepeat", + "is_bitfield": false, "values": [ { "name": "REPEAT_DEFAULT", @@ -246533,7 +253005,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3894235364, "arguments": [ { "name": "type", @@ -246547,7 +253019,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 244818602, "return_value": { "type": "enum::VisualShaderNodeTextureUniform.TextureType" } @@ -246558,7 +253030,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2490959881, "arguments": [ { "name": "type", @@ -246572,7 +253044,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2357923939, "return_value": { "type": "enum::VisualShaderNodeTextureUniform.ColorDefault" } @@ -246583,7 +253055,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1608887800, "arguments": [ { "name": "filter", @@ -246597,7 +253069,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2790632769, "return_value": { "type": "enum::VisualShaderNodeTextureUniform.TextureFilter" } @@ -246608,7 +253080,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1498268787, "arguments": [ { "name": "type", @@ -246622,7 +253094,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 98242067, "return_value": { "type": "enum::VisualShaderNodeTextureUniform.TextureRepeat" } @@ -246686,7 +253158,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "constant", @@ -246700,7 +253172,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -246732,6 +253204,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_INVERSE", @@ -246755,7 +253228,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2900990409, "arguments": [ { "name": "func", @@ -246769,7 +253242,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2839926569, "return_value": { "type": "enum::VisualShaderNodeTransformFunc.Function" } @@ -246794,6 +253267,7 @@ "enums": [ { "name": "Operator", + "is_bitfield": false, "values": [ { "name": "OP_AxB", @@ -246845,7 +253319,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2287310733, "arguments": [ { "name": "op", @@ -246859,7 +253333,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1238663601, "return_value": { "type": "enum::VisualShaderNodeTransformOp.Operator" } @@ -246888,7 +253362,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -246902,7 +253376,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -246913,7 +253387,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "value", @@ -246927,7 +253401,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -246959,6 +253433,7 @@ "enums": [ { "name": "Operator", + "is_bitfield": false, "values": [ { "name": "OP_AxB", @@ -246990,7 +253465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1785665912, "arguments": [ { "name": "op", @@ -247004,7 +253479,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1622088722, "return_value": { "type": "enum::VisualShaderNodeTransformVecMult.Operator" } @@ -247029,6 +253504,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_PANNING", @@ -247052,7 +253528,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 765791915, "arguments": [ { "name": "func", @@ -247066,7 +253542,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3772902164, "return_value": { "type": "enum::VisualShaderNodeUVFunc.Function" } @@ -247091,6 +253567,7 @@ "enums": [ { "name": "Qualifier", + "is_bitfield": false, "values": [ { "name": "QUAL_NONE", @@ -247118,7 +253595,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -247132,7 +253609,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -247143,7 +253620,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1917199311, "arguments": [ { "name": "qualifier", @@ -247157,7 +253634,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3211552365, "return_value": { "type": "enum::VisualShaderNodeUniform.Qualifier" } @@ -247193,7 +253670,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -247207,7 +253684,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -247243,7 +253720,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "name", @@ -247257,7 +253734,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -247268,7 +253745,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3565867981, "arguments": [ { "name": "type", @@ -247282,7 +253759,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 523183580, "return_value": { "type": "enum::VisualShader.VaryingType" } @@ -247332,7 +253809,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "constant", @@ -247346,7 +253823,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -247375,7 +253852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -247389,7 +253866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -247400,7 +253877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "value", @@ -247414,7 +253891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -247450,7 +253927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "constant", @@ -247464,7 +253941,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -247493,7 +253970,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -247507,7 +253984,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -247518,7 +253995,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "value", @@ -247532,7 +254009,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -247568,7 +254045,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1727505552, "arguments": [ { "name": "constant", @@ -247582,7 +254059,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1222331677, "return_value": { "type": "Quaternion" } @@ -247611,7 +254088,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -247625,7 +254102,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -247636,7 +254113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1727505552, "arguments": [ { "name": "value", @@ -247650,7 +254127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1222331677, "return_value": { "type": "Quaternion" } @@ -247682,6 +254159,7 @@ "enums": [ { "name": "OpType", + "is_bitfield": false, "values": [ { "name": "OP_TYPE_VECTOR_2D", @@ -247709,7 +254187,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1692596998, "arguments": [ { "name": "type", @@ -247723,7 +254201,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2568738462, "return_value": { "type": "enum::VisualShaderNodeVectorBase.OpType" } @@ -247769,6 +254247,7 @@ "enums": [ { "name": "Function", + "is_bitfield": false, "values": [ { "name": "FUNC_NORMALIZE", @@ -247916,7 +254395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 629964457, "arguments": [ { "name": "func", @@ -247930,7 +254409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4047776843, "return_value": { "type": "enum::VisualShaderNodeVectorFunc.Function" } @@ -247962,6 +254441,7 @@ "enums": [ { "name": "Operator", + "is_bitfield": false, "values": [ { "name": "OP_ADD", @@ -248025,7 +254505,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3371507302, "arguments": [ { "name": "op", @@ -248039,7 +254519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 11793929, "return_value": { "type": "enum::VisualShaderNodeVectorOp.Operator" } @@ -248071,6 +254551,7 @@ "enums": [ { "name": "Subdiv", + "is_bitfield": false, "values": [ { "name": "SUBDIV_64", @@ -248102,7 +254583,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1637849675, "arguments": [ { "name": "data", @@ -248116,7 +254597,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1730645405, "return_value": { "type": "VoxelGIData" } @@ -248127,7 +254608,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2240898472, "arguments": [ { "name": "subdiv", @@ -248141,7 +254622,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4261647950, "return_value": { "type": "enum::VoxelGI.Subdiv" } @@ -248152,7 +254633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "extents", @@ -248166,7 +254647,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -248177,7 +254658,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 143531945, + "hash": 2781551026, "arguments": [ { "name": "from_node", @@ -248197,7 +254678,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ], "properties": [ @@ -248237,7 +254718,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134403788, + "hash": 4041601946, "arguments": [ { "name": "to_cell_xform", @@ -248275,7 +254756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1068685055, "return_value": { "type": "AABB" } @@ -248286,7 +254767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -248297,7 +254778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -248308,7 +254789,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -248319,7 +254800,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2362200018, "return_value": { "type": "PackedByteArray" } @@ -248330,7 +254811,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1930428628, "return_value": { "type": "PackedInt32Array" } @@ -248341,7 +254822,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "dynamic_range", @@ -248356,7 +254837,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -248368,7 +254849,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "energy", @@ -248383,7 +254864,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -248395,7 +254876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -248410,7 +254891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -248422,7 +254903,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "bias", @@ -248437,7 +254918,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -248449,7 +254930,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "propagation", @@ -248464,7 +254945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -248476,7 +254957,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "interior", @@ -248490,7 +254971,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -248501,7 +254982,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -248515,7 +254996,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -248586,7 +255067,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1214101251, "return_value": { "type": "Variant" } @@ -248602,6 +255083,7 @@ "enums": [ { "name": "WriteMode", + "is_bitfield": false, "values": [ { "name": "WRITE_MODE_TEXT", @@ -248615,6 +255097,7 @@ }, { "name": "ChannelState", + "is_bitfield": false, "values": [ { "name": "STATE_CONNECTING", @@ -248642,7 +255125,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -248653,7 +255136,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "was_string_packet", @@ -248661,7 +255144,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -248672,7 +255155,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1999768052, "arguments": [ { "name": "write_mode", @@ -248686,7 +255169,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2848495172, "return_value": { "type": "enum::WebRTCDataChannel.WriteMode" } @@ -248697,7 +255180,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3501143017, "return_value": { "type": "enum::WebRTCDataChannel.ChannelState" } @@ -248708,7 +255191,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -248719,7 +255202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -248730,7 +255213,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -248742,7 +255225,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -248754,7 +255237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -248766,7 +255249,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -248777,7 +255260,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -248788,7 +255271,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -249027,7 +255510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1474135307, + "hash": 3613820124, "return_value": { "type": "enum::Error" }, @@ -249055,7 +255538,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 174785354, + "hash": 2555866323, "return_value": { "type": "enum::Error" }, @@ -249083,7 +255566,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "peer_id", @@ -249098,7 +255581,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3067735520, "return_value": { "type": "bool" }, @@ -249116,7 +255599,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3554694381, "return_value": { "type": "Dictionary" }, @@ -249134,7 +255617,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2382534195, "return_value": { "type": "Dictionary" } @@ -249145,7 +255628,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 } ] }, @@ -249158,6 +255641,7 @@ "enums": [ { "name": "ConnectionState", + "is_bitfield": false, "values": [ { "name": "STATE_NEW", @@ -249187,13 +255671,27 @@ } ], "methods": [ + { + "name": "set_default_extension", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 3304788590, + "arguments": [ + { + "name": "extension_class", + "type": "StringName" + } + ] + }, { "name": "initialize", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 365816645, + "hash": 2625064318, "return_value": { "type": "enum::Error" }, @@ -249211,7 +255709,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599433, + "hash": 3997447457, "return_value": { "type": "WebRTCDataChannel" }, @@ -249233,7 +255731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -249244,7 +255742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -249265,7 +255763,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135410024, + "hash": 852856452, "return_value": { "type": "enum::Error" }, @@ -249286,7 +255784,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135445961, + "hash": 3958950400, "return_value": { "type": "enum::Error" }, @@ -249312,7 +255810,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -249323,7 +255821,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_connection_state", @@ -249331,7 +255829,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2275710506, "return_value": { "type": "enum::WebRTCPeerConnection.ConnectionState" } @@ -249522,14 +256020,6 @@ "is_static": false, "is_vararg": false, "is_virtual": true - }, - { - "name": "make_default", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 134152229 } ] }, @@ -249546,7 +256036,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2941976884, + "hash": 2284355069, "return_value": { "type": "enum::Error" }, @@ -249578,7 +256068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4251720975, + "hash": 1047156615, "arguments": [ { "name": "code", @@ -249599,7 +256089,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -249610,7 +256100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint16" @@ -249622,7 +256112,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -249636,7 +256126,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -249647,7 +256137,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1120709175, "return_value": { "type": "X509Certificate" } @@ -249658,7 +256148,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1793585120, "arguments": [ { "name": "cert", @@ -249736,7 +256226,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135481898, + "hash": 3684568301, "return_value": { "type": "enum::Error" }, @@ -249769,7 +256259,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1381378851, "return_value": { "type": "WebSocketPeer" }, @@ -249803,6 +256293,7 @@ "enums": [ { "name": "WriteMode", + "is_bitfield": false, "values": [ { "name": "WRITE_MODE_TEXT", @@ -249822,7 +256313,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1797831585, "return_value": { "type": "enum::WebSocketPeer.WriteMode" } @@ -249833,7 +256324,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 96037162, "arguments": [ { "name": "mode", @@ -249847,7 +256338,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -249858,7 +256349,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -249869,7 +256360,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4251720975, + "hash": 1047156615, "arguments": [ { "name": "code", @@ -249890,7 +256381,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -249901,7 +256392,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint16" @@ -249913,7 +256404,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enabled", @@ -249927,7 +256418,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -249948,7 +256439,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -249959,7 +256450,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 139628078, + "hash": 2328480543, "arguments": [ { "name": "headers", @@ -249974,7 +256465,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1480485266, + "hash": 4229601608, "return_value": { "type": "enum::Error" }, @@ -250002,7 +256493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "has_peer", @@ -250010,7 +256501,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1116898809, "return_value": { "type": "bool" }, @@ -250028,7 +256519,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -250046,7 +256537,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 923996154, "return_value": { "type": "int", "meta": "int32" @@ -250065,7 +256556,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 1738636107, + "hash": 2976048447, "arguments": [ { "name": "id", @@ -250091,7 +256582,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250102,7 +256593,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "ip", @@ -250116,7 +256607,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2119971811, "return_value": { "type": "CryptoKey" } @@ -250127,7 +256618,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3770317738, "arguments": [ { "name": "key", @@ -250141,7 +256632,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1120709175, "return_value": { "type": "X509Certificate" } @@ -250152,7 +256643,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1793585120, "arguments": [ { "name": "cert", @@ -250166,7 +256657,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1120709175, "return_value": { "type": "X509Certificate" } @@ -250177,7 +256668,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1793585120, "arguments": [ { "name": "ca_chain", @@ -250191,7 +256682,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -250203,7 +256694,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "timeout", @@ -250322,7 +256813,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "session_mode", @@ -250336,7 +256827,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "session_mode", @@ -250350,7 +256841,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250361,7 +256852,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "required_features", @@ -250375,7 +256866,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250386,7 +256877,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "optional_features", @@ -250400,7 +256891,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250411,7 +256902,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250422,7 +256913,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "requested_reference_space_types", @@ -250436,7 +256927,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250447,7 +256938,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 636011756, "return_value": { "type": "XRPositionalTracker" }, @@ -250465,7 +256956,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250476,7 +256967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -250639,6 +257130,7 @@ "enums": [ { "name": "Mode", + "is_bitfield": false, "values": [ { "name": "MODE_WINDOWED", @@ -250664,6 +257156,7 @@ }, { "name": "Flags", + "is_bitfield": false, "values": [ { "name": "FLAG_RESIZE_DISABLED", @@ -250697,6 +257190,7 @@ }, { "name": "ContentScaleMode", + "is_bitfield": false, "values": [ { "name": "CONTENT_SCALE_MODE_DISABLED", @@ -250714,6 +257208,7 @@ }, { "name": "ContentScaleAspect", + "is_bitfield": false, "values": [ { "name": "CONTENT_SCALE_ASPECT_IGNORE", @@ -250739,6 +257234,7 @@ }, { "name": "LayoutDirection", + "is_bitfield": false, "values": [ { "name": "LAYOUT_DIRECTION_INHERITED", @@ -250766,7 +257262,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "title", @@ -250780,7 +257276,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -250791,7 +257287,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1286410249, "arguments": [ { "name": "index", @@ -250806,7 +257302,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -250818,7 +257314,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "position", @@ -250832,7 +257328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -250843,7 +257339,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -250857,7 +257353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -250868,7 +257364,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_real_size", @@ -250876,7 +257372,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -250887,7 +257383,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "max_size", @@ -250901,7 +257397,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -250912,7 +257408,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "min_size", @@ -250926,7 +257422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -250937,7 +257433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3095236531, "arguments": [ { "name": "mode", @@ -250951,7 +257447,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2566346114, "return_value": { "type": "enum::Window.Mode" } @@ -250962,7 +257458,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3426449779, "arguments": [ { "name": "flag", @@ -250980,7 +257476,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3062752289, "return_value": { "type": "bool" }, @@ -250997,7 +257493,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251008,7 +257504,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "move_to_foreground", @@ -251016,7 +257512,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_visible", @@ -251024,7 +257520,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "visible", @@ -251038,7 +257534,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251049,7 +257545,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "show", @@ -251057,7 +257553,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_transient", @@ -251065,7 +257561,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "transient", @@ -251079,7 +257575,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251090,7 +257586,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "exclusive", @@ -251104,7 +257600,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251115,7 +257611,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251126,7 +257622,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251137,7 +257633,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_ime_active", @@ -251145,7 +257641,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "active", @@ -251159,7 +257655,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "position", @@ -251173,7 +257669,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251184,7 +257680,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -251195,7 +257691,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1130785943, "arguments": [ { "name": "size", @@ -251209,7 +257705,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3690982128, "return_value": { "type": "Vector2i" } @@ -251220,7 +257716,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2937716473, "arguments": [ { "name": "mode", @@ -251234,7 +257730,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 161585230, "return_value": { "type": "enum::Window.ContentScaleMode" } @@ -251245,7 +257741,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2370399418, "arguments": [ { "name": "aspect", @@ -251259,7 +257755,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4158790715, "return_value": { "type": "enum::Window.ContentScaleAspect" } @@ -251270,7 +257766,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "factor", @@ -251285,7 +257781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -251297,7 +257793,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -251311,7 +257807,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251322,7 +257818,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -251336,7 +257832,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251347,7 +257843,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "set_theme", @@ -251355,7 +257851,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2326690814, "arguments": [ { "name": "theme", @@ -251369,7 +257865,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3846893731, "return_value": { "type": "Theme" } @@ -251380,7 +257876,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "theme_type", @@ -251394,7 +257890,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -251405,7 +257901,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2336455395, "return_value": { "type": "Texture2D" }, @@ -251427,7 +257923,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2759935355, "return_value": { "type": "StyleBox" }, @@ -251449,7 +257945,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 387378635, "return_value": { "type": "Font" }, @@ -251471,7 +257967,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 229578101, "return_value": { "type": "int", "meta": "int32" @@ -251494,7 +257990,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 2377051548, "return_value": { "type": "Color" }, @@ -251516,7 +258012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 229578101, "return_value": { "type": "int", "meta": "int32" @@ -251539,7 +258035,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -251561,7 +258057,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -251583,7 +258079,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -251605,7 +258101,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -251627,7 +258123,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -251649,7 +258145,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 173599466, + "hash": 1187511791, "return_value": { "type": "bool" }, @@ -251671,7 +258167,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -251683,7 +258179,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229501585, "return_value": { "type": "Font" } @@ -251694,7 +258190,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -251706,7 +258202,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3094704184, "arguments": [ { "name": "direction", @@ -251720,7 +258216,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3909617982, "return_value": { "type": "enum::Window.LayoutDirection" } @@ -251731,7 +258227,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251742,7 +258238,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -251756,7 +258252,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -251767,7 +258263,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 265334380, + "hash": 1680304321, "arguments": [ { "name": "rect", @@ -251782,7 +258278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1763793166, "arguments": [ { "name": "parent_rect", @@ -251796,7 +258292,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2502430199, + "hash": 1912078273, "arguments": [ { "name": "ratio", @@ -251812,7 +258308,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 2219751724, + "hash": 3447975422, "arguments": [ { "name": "minsize", @@ -251827,7 +258323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3173471955, + "hash": 3728566557, "arguments": [ { "name": "minsize", @@ -252061,6 +258557,167 @@ } ] }, + { + "name": "WorkerThreadPool", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core", + "methods": [ + { + "name": "add_task", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3976347598, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "action", + "type": "Callable" + }, + { + "name": "high_priority", + "type": "bool", + "default_value": "false" + }, + { + "name": "description", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "is_task_completed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "task_id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "wait_for_task_completion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "task_id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "add_group_task", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2377228549, + "return_value": { + "type": "int", + "meta": "int64" + }, + "arguments": [ + { + "name": "action", + "type": "Callable" + }, + { + "name": "elements", + "type": "int", + "meta": "int32" + }, + { + "name": "tasks_needed", + "type": "int", + "meta": "int32", + "default_value": "-1" + }, + { + "name": "high_priority", + "type": "bool", + "default_value": "false" + }, + { + "name": "description", + "type": "String", + "default_value": "\"\"" + } + ] + }, + { + "name": "is_group_task_completed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "group_id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "get_group_processed_element_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 923996154, + "return_value": { + "type": "int", + "meta": "uint32" + }, + "arguments": [ + { + "name": "group_id", + "type": "int", + "meta": "int64" + } + ] + }, + { + "name": "wait_for_group_task_completion", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "group_id", + "type": "int", + "meta": "int64" + } + ] + } + ] + }, { "name": "World2D", "is_refcounted": true, @@ -252074,7 +258731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -252085,7 +258742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -252096,7 +258753,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -252107,7 +258764,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2506717822, "return_value": { "type": "PhysicsDirectSpaceState2D" } @@ -252157,7 +258814,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -252168,7 +258825,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -252179,7 +258836,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2944877500, "return_value": { "type": "RID" } @@ -252190,7 +258847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4143518816, "arguments": [ { "name": "env", @@ -252204,7 +258861,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3082064660, "return_value": { "type": "Environment" } @@ -252215,7 +258872,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4143518816, "arguments": [ { "name": "env", @@ -252229,7 +258886,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3082064660, "return_value": { "type": "Environment" } @@ -252240,7 +258897,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1711096158, "arguments": [ { "name": "effects", @@ -252254,7 +258911,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2213573967, "return_value": { "type": "CameraEffects" } @@ -252265,7 +258922,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2069328350, "return_value": { "type": "PhysicsDirectSpaceState3D" } @@ -252336,7 +258993,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 743155724, "arguments": [ { "name": "normal", @@ -252350,7 +259007,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3341600327, "return_value": { "type": "Vector2" } @@ -252361,7 +259018,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "distance", @@ -252376,7 +259033,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -252413,7 +259070,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3505987427, "arguments": [ { "name": "plane", @@ -252427,7 +259084,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2753500971, "return_value": { "type": "Plane" } @@ -252456,7 +259113,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4143518816, "arguments": [ { "name": "env", @@ -252470,7 +259127,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3082064660, "return_value": { "type": "Environment" } @@ -252481,7 +259138,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1711096158, "arguments": [ { "name": "env", @@ -252495,7 +259152,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2213573967, "return_value": { "type": "CameraEffects" } @@ -252531,7 +259188,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -252548,7 +259205,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -252570,6 +259227,7 @@ "enums": [ { "name": "NodeType", + "is_bitfield": false, "values": [ { "name": "NODE_NONE", @@ -252609,7 +259267,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 166280745, "return_value": { "type": "enum::Error" } @@ -252620,7 +259278,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2984359541, "return_value": { "type": "enum::XMLParser.NodeType" } @@ -252631,7 +259289,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -252642,7 +259300,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -252653,7 +259311,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint64" @@ -252665,7 +259323,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -252677,7 +259335,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -252695,7 +259353,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 844755477, "return_value": { "type": "String" }, @@ -252713,7 +259371,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3927539163, "return_value": { "type": "bool" }, @@ -252730,7 +259388,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -252747,7 +259405,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3135753539, "return_value": { "type": "String" }, @@ -252764,7 +259422,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -252775,7 +259433,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -252787,7 +259445,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "seek", @@ -252795,7 +259453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 844576869, "return_value": { "type": "enum::Error" }, @@ -252813,7 +259471,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 166001499, "return_value": { "type": "enum::Error" }, @@ -252830,7 +259488,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 680677267, "return_value": { "type": "enum::Error" }, @@ -252856,7 +259514,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -252867,7 +259525,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2753500971, "return_value": { "type": "Plane" } @@ -252894,7 +259552,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -252911,7 +259569,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2349060816, "return_value": { "type": "float", "meta": "float" @@ -252929,7 +259587,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 3100822709, "return_value": { "type": "Vector2" }, @@ -252946,7 +259604,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4181770860, "return_value": { "type": "enum::XRPositionalTracker.TrackerHand" } @@ -253008,6 +259666,7 @@ "enums": [ { "name": "Capabilities", + "is_bitfield": false, "values": [ { "name": "XR_NONE", @@ -253041,6 +259700,7 @@ }, { "name": "TrackingStatus", + "is_bitfield": false, "values": [ { "name": "XR_NORMAL_TRACKING", @@ -253066,6 +259726,7 @@ }, { "name": "PlayAreaMode", + "is_bitfield": false, "values": [ { "name": "XR_PLAY_AREA_UNKNOWN", @@ -253097,7 +259758,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -253108,7 +259769,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "uint32" @@ -253120,7 +259781,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -253131,7 +259792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "primary", @@ -253145,7 +259806,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -253156,7 +259817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2240911060, "return_value": { "type": "bool" } @@ -253167,7 +259828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134152229 + "hash": 3218959716 }, { "name": "get_tracking_status", @@ -253175,7 +259836,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 167423259, "return_value": { "type": "enum::XRInterface.TrackingStatus" } @@ -253186,7 +259847,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 1497962370, "return_value": { "type": "Vector2" } @@ -253197,7 +259858,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "uint32" @@ -253209,7 +259870,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134367851, + "hash": 3752640163, "arguments": [ { "name": "action_name", @@ -253247,7 +259908,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3429955281, "return_value": { "type": "bool" }, @@ -253264,7 +259925,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1615132885, "return_value": { "type": "enum::XRInterface.PlayAreaMode" } @@ -253275,7 +259936,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3429955281, "return_value": { "type": "bool" }, @@ -253292,7 +259953,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 497664490, "return_value": { "type": "PackedVector3Array" } @@ -253303,7 +259964,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -253314,7 +259975,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "enable", @@ -253328,7 +259989,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2455072627, "return_value": { "type": "int", "meta": "int32" @@ -253554,6 +260215,16 @@ } ] }, + { + "name": "_get_vrs_texture", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "RID" + } + }, { "name": "_process", "is_const": false, @@ -253729,7 +260400,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134547536, + "hash": 258596971, "arguments": [ { "name": "render_target", @@ -253788,7 +260459,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 41030802, "return_value": { "type": "RID" }, @@ -253814,7 +260485,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "tracker_name", @@ -253828,7 +260499,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -253839,7 +260510,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "pose", @@ -253853,7 +260524,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -253864,7 +260535,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -253875,7 +260546,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -253886,7 +260557,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 2806551826, "return_value": { "type": "XRPose" } @@ -253897,7 +260568,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 508576839, "arguments": [ { "name": "action_name", @@ -253956,7 +260627,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "world_scale", @@ -253971,7 +260642,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "float" @@ -253997,6 +260668,7 @@ "enums": [ { "name": "TrackingConfidence", + "is_bitfield": false, "values": [ { "name": "XR_TRACKING_CONFIDENCE_NONE", @@ -254020,7 +260692,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2586408642, "arguments": [ { "name": "has_tracking_data", @@ -254034,7 +260706,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 36873697, "return_value": { "type": "bool" } @@ -254045,7 +260717,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -254059,7 +260731,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -254070,7 +260742,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2952846383, "arguments": [ { "name": "transform", @@ -254084,7 +260756,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -254095,7 +260767,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -254106,7 +260778,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "velocity", @@ -254120,7 +260792,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -254131,7 +260803,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3460891852, "arguments": [ { "name": "velocity", @@ -254145,7 +260817,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3360562783, "return_value": { "type": "Vector3" } @@ -254156,7 +260828,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 4171656666, "arguments": [ { "name": "tracking_confidence", @@ -254170,7 +260842,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2064923680, "return_value": { "type": "enum::XRPose.TrackingConfidence" } @@ -254230,6 +260902,7 @@ "enums": [ { "name": "TrackerHand", + "is_bitfield": false, "values": [ { "name": "TRACKER_HAND_UNKNOWN", @@ -254253,7 +260926,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2784508102, "return_value": { "type": "enum::XRServer.TrackerType" } @@ -254264,7 +260937,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3055763575, "arguments": [ { "name": "type", @@ -254278,7 +260951,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2002593661, "return_value": { "type": "StringName" } @@ -254289,7 +260962,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -254303,7 +260976,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -254314,7 +260987,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "description", @@ -254328,7 +261001,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 201670096, "return_value": { "type": "String" } @@ -254339,7 +261012,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 83702148, "arguments": [ { "name": "profile", @@ -254353,7 +261026,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 4181770860, "return_value": { "type": "enum::XRPositionalTracker.TrackerHand" } @@ -254364,7 +261037,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3904108980, "arguments": [ { "name": "hand", @@ -254378,7 +261051,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2619796661, "return_value": { "type": "bool" }, @@ -254395,7 +261068,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4099720006, "return_value": { "type": "XRPose" }, @@ -254412,7 +261085,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 3304788590, "arguments": [ { "name": "name", @@ -254426,7 +261099,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134331914, + "hash": 3451230163, "arguments": [ { "name": "name", @@ -254456,7 +261129,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2760726917, "return_value": { "type": "Variant" }, @@ -254473,7 +261146,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 3776071444, "arguments": [ { "name": "name", @@ -254597,6 +261270,7 @@ "enums": [ { "name": "TrackerType", + "is_bitfield": false, "values": [ { "name": "TRACKER_HEAD", @@ -254630,6 +261304,7 @@ }, { "name": "RotationMode", + "is_bitfield": false, "values": [ { "name": "RESET_FULL_ROTATION", @@ -254653,7 +261328,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 1740695150, "return_value": { "type": "float", "meta": "double" @@ -254665,7 +261340,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 373806689, "arguments": [ { "name": "scale", @@ -254680,7 +261355,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3229777777, "return_value": { "type": "Transform3D" } @@ -254691,7 +261366,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134224103, + "hash": 1450904707, "arguments": [ { "name": "rotation_mode", @@ -254709,7 +261384,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338150, + "hash": 4183770049, "return_value": { "type": "Transform3D" } @@ -254720,7 +261395,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1898711491, "arguments": [ { "name": "interface", @@ -254734,7 +261409,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3905245786, "return_value": { "type": "int", "meta": "int32" @@ -254746,7 +261421,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1898711491, "arguments": [ { "name": "interface", @@ -254760,7 +261435,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 4237347919, "return_value": { "type": "XRInterface" }, @@ -254778,7 +261453,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 3995934104, "return_value": { "type": "Array" } @@ -254789,7 +261464,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 1395192955, "return_value": { "type": "XRInterface" }, @@ -254806,7 +261481,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2692800323, "arguments": [ { "name": "tracker", @@ -254820,7 +261495,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 2692800323, "arguments": [ { "name": "tracker", @@ -254834,7 +261509,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374087, + "hash": 3554694381, "return_value": { "type": "Dictionary" }, @@ -254852,7 +261527,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135374120, + "hash": 2742084544, "return_value": { "type": "XRPositionalTracker" }, @@ -254869,7 +261544,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 135338183, + "hash": 2143545064, "return_value": { "type": "XRInterface" } @@ -254880,7 +261555,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 134188166, + "hash": 1898711491, "arguments": [ { "name": "interface", @@ -255047,6 +261722,10 @@ "name": "ResourceUID", "type": "ResourceUID" }, + { + "name": "WorkerThreadPool", + "type": "WorkerThreadPool" + }, { "name": "VisualScriptCustomNodes", "type": "VisualScriptCustomNodes" From 34a785dc72683ac38e0aa80ac192eda2bf72f38f Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Sat, 13 Aug 2022 21:16:57 +0530 Subject: [PATCH 13/15] Fix leftover osx -> macos renames --- godot-git-plugin/SCsub | 7 ++----- thirdparty/git2/SCsub | 4 ++-- thirdparty/ssh2/SCsub | 4 ++-- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/godot-git-plugin/SCsub b/godot-git-plugin/SCsub index e06858e..de3975c 100644 --- a/godot-git-plugin/SCsub +++ b/godot-git-plugin/SCsub @@ -8,7 +8,7 @@ Import("env") godot_headers_path = "../godot-cpp/godot-headers/" cpp_bindings_path = "../godot-cpp/" cpp_library = "libgodot-cpp" -target_arch = env["bits"] +target_arch = "" dynamic_lib_extension = "" # Process some arguments @@ -81,10 +81,7 @@ if env["target"] in ("debug", "d"): else: cpp_library += ".release" -if env['platform'] == 'macos' and env['macos_arch'] != 'universal': - cpp_library += "." + env['macos_arch'] -else: - cpp_library += "." + "x86_64" +cpp_library += "." + target_arch env.Append(CPPPATH=[".", "src/"]) env.Append(CPPPATH=[ diff --git a/thirdparty/git2/SCsub b/thirdparty/git2/SCsub index 9d7359c..d34c9e5 100644 --- a/thirdparty/git2/SCsub +++ b/thirdparty/git2/SCsub @@ -85,7 +85,7 @@ if env_git["platform"] == "windows": ] ) -if env_git["platform"] in ["linux", "osx"]: +if env_git["platform"] in ["linux", "macos"]: env_git.Append(CCFLAGS="-fPIC") libgit2_sources += Glob("libgit2/src/unix/" + "*.c") libgit2_sources += [ @@ -126,7 +126,7 @@ if env_git["platform"] in ["linux", "osx"]: ] ) -if env_git["platform"] == "osx": +if env_git["platform"] == "macos": env_git.Prepend(CPPPATH=[env_git["macos_openssl"] + "include/"]) static_ssl = File(env_git["macos_openssl_static_ssl"]) static_crypto = File(env_git["macos_openssl_static_crypto"]) diff --git a/thirdparty/ssh2/SCsub b/thirdparty/ssh2/SCsub index 7be2774..89d10e1 100644 --- a/thirdparty/ssh2/SCsub +++ b/thirdparty/ssh2/SCsub @@ -57,7 +57,7 @@ if env_ssh2["platform"] == "windows": ) env_ssh2.Append(LIBS=["crypt32", "user32"]) -if env_ssh2["platform"] in ["linux", "osx"]: +if env_ssh2["platform"] in ["linux", "macos"]: env_ssh2.Append(CCFLAGS="-fPIC") env_ssh2.Append( CPPPATH=[ @@ -104,7 +104,7 @@ if env_ssh2["platform"] in ["linux", "osx"]: ] ) -if env_ssh2["platform"] == "osx": +if env_ssh2["platform"] == "macos": env_ssh2.Append(CPPPATH=[env_ssh2["macos_openssl"] + "include/"]) static_ssl = File(env_ssh2["macos_openssl_static_ssl"]) static_crypto = File(env_ssh2["macos_openssl_static_crypto"]) From a2ecf96e048b9dcb88689235b02c22b6df6eccdb Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Fri, 26 Aug 2022 21:12:55 +0530 Subject: [PATCH 14/15] Update extension_api.ci.json after TypedArray changes upstream --- extension_api.ci.json | 1534 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 1481 insertions(+), 53 deletions(-) diff --git a/extension_api.ci.json b/extension_api.ci.json index caac351..ac1de50 100644 --- a/extension_api.ci.json +++ b/extension_api.ci.json @@ -4232,6 +4232,19 @@ }, { "name": "floor", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 4776452, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "floorf", "return_type": "float", "category": "math", "is_vararg": false, @@ -4243,8 +4256,34 @@ } ] }, + { + "name": "floori", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 2780425386, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, { "name": "ceil", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 4776452, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "ceilf", "return_type": "float", "category": "math", "is_vararg": false, @@ -4256,8 +4295,34 @@ } ] }, + { + "name": "ceili", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 2780425386, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, { "name": "round", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 4776452, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "roundf", "return_type": "float", "category": "math", "is_vararg": false, @@ -4269,6 +4334,19 @@ } ] }, + { + "name": "roundi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 2780425386, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, { "name": "abs", "return_type": "Variant", @@ -4495,6 +4573,27 @@ }, { "name": "lerp", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 3389874542, + "arguments": [ + { + "name": "from", + "type": "Variant" + }, + { + "name": "to", + "type": "Variant" + }, + { + "name": "weight", + "type": "Variant" + } + ] + }, + { + "name": "lerpf", "return_type": "float", "category": "math", "is_vararg": false, @@ -11089,6 +11188,20 @@ } ] }, + { + "name": "rotated_local", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 729597514, + "arguments": [ + { + "name": "angle", + "type": "float" + } + ] + }, { "name": "scaled", "return_type": "Transform2D", @@ -11103,6 +11216,34 @@ } ] }, + { + "name": "scaled_local", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1446323263, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "translated", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1446323263, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, { "name": "translated_local", "return_type": "Transform2D", @@ -11577,6 +11718,74 @@ } ] }, + { + "name": "cubic_interpolate", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 726768410, + "arguments": [ + { + "name": "b", + "type": "Vector4" + }, + { + "name": "pre_a", + "type": "Vector4" + }, + { + "name": "post_b", + "type": "Vector4" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "posmod", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3129671720, + "arguments": [ + { + "name": "mod", + "type": "float" + } + ] + }, + { + "name": "posmodv", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2031281584, + "arguments": [ + { + "name": "modv", + "type": "Vector4" + } + ] + }, + { + "name": "snapped", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2031281584, + "arguments": [ + { + "name": "step", + "type": "Vector4" + } + ] + }, { "name": "clamp", "return_type": "Vector4", @@ -11611,6 +11820,34 @@ "is_static": false, "hash": 3918633141 }, + { + "name": "direction_to", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2031281584, + "arguments": [ + { + "name": "to", + "type": "Vector4" + } + ] + }, + { + "name": "distance_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3770801042, + "arguments": [ + { + "name": "to", + "type": "Vector4" + } + ] + }, { "name": "dot", "return_type": "float", @@ -12066,6 +12303,11 @@ "right_type": "Plane", "return_type": "bool" }, + { + "name": "*", + "right_type": "Transform3D", + "return_type": "Plane" + }, { "name": "in", "right_type": "Dictionary", @@ -13552,6 +13794,11 @@ "right_type": "Vector3", "return_type": "Vector3" }, + { + "name": "*", + "right_type": "Plane", + "return_type": "Plane" + }, { "name": "*", "right_type": "AABB", @@ -13631,6 +13878,24 @@ } ] }, + { + "name": "rotated_local", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1563203923, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, { "name": "scaled", "return_type": "Transform3D", @@ -13645,6 +13910,34 @@ } ] }, + { + "name": "scaled_local", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1405596198, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "translated", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1405596198, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, { "name": "translated_local", "return_type": "Transform3D", @@ -27097,7 +27390,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 711530217, + "hash": 1985425300, + "return_value": { + "type": "int", + "meta": "int32" + }, "arguments": [ { "name": "track_idx", @@ -34203,7 +34500,7 @@ "hash": 2586408642, "arguments": [ { - "name": "arg0", + "name": "enabled", "type": "bool" } ] @@ -67235,7 +67532,7 @@ "hash": 83702148, "arguments": [ { - "name": "arg0", + "name": "text", "type": "String" } ] @@ -73728,6 +74025,44 @@ } ] }, + { + "name": "VirtualKeyboardType", + "is_bitfield": false, + "values": [ + { + "name": "KEYBOARD_TYPE_DEFAULT", + "value": 0 + }, + { + "name": "KEYBOARD_TYPE_MULTILINE", + "value": 1 + }, + { + "name": "KEYBOARD_TYPE_NUMBER", + "value": 2 + }, + { + "name": "KEYBOARD_TYPE_NUMBER_DECIMAL", + "value": 3 + }, + { + "name": "KEYBOARD_TYPE_PHONE", + "value": 4 + }, + { + "name": "KEYBOARD_TYPE_EMAIL_ADDRESS", + "value": 5 + }, + { + "name": "KEYBOARD_TYPE_PASSWORD", + "value": 6 + }, + { + "name": "KEYBOARD_TYPE_URL", + "value": 7 + } + ] + }, { "name": "CursorShape", "is_bitfield": false, @@ -76337,7 +76672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4231754459, + "hash": 860410478, "arguments": [ { "name": "existing_text", @@ -76349,9 +76684,9 @@ "default_value": "Rect2(0, 0, 0, 0)" }, { - "name": "multiline", - "type": "bool", - "default_value": "false" + "name": "type", + "type": "enum::DisplayServer.VirtualKeyboardType", + "default_value": "0" }, { "name": "max_length", @@ -82543,6 +82878,19 @@ } ] }, + { + "name": "property_can_revert_changed", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "can_revert", + "type": "bool" + } + ] + }, { "name": "resource_selected", "arguments": [ @@ -85152,6 +85500,17 @@ "type": "String" } }, + { + "name": "get_architecture_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, { "name": "is_in_physics_frame", "is_const": true, @@ -90182,10 +90541,17 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 201670096, + "hash": 1162154673, "return_value": { "type": "String" - } + }, + "arguments": [ + { + "name": "skip_cr", + "type": "bool", + "default_value": "false" + } + ] }, { "name": "get_md5", @@ -94314,6 +94680,13 @@ } ] }, + { + "name": "FramebufferCacheRD", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core" + }, { "name": "GDScript", "is_refcounted": true, @@ -100410,6 +100783,70 @@ "type": "float", "meta": "float" } + }, + { + "name": "set_bake_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_bake_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_bake_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_bake_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] } ], "properties": [ @@ -100434,6 +100871,13 @@ "getter": "get_thickness", "index": -1 }, + { + "type": "int", + "name": "bake_mask", + "setter": "set_bake_mask", + "getter": "get_bake_mask", + "index": -1 + }, { "type": "Texture3D", "name": "texture", @@ -101538,6 +101982,37 @@ } ] }, + { + "name": "segment_intersects_circle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1356928167, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "segment_from", + "type": "Vector2" + }, + { + "name": "segment_to", + "type": "Vector2" + }, + { + "name": "circle_position", + "type": "Vector2" + }, + { + "name": "circle_radius", + "type": "float", + "meta": "float" + } + ] + }, { "name": "segment_intersects_segment", "is_const": false, @@ -102702,7 +103177,7 @@ } }, { - "name": "set_shader_instance_uniform", + "name": "set_instance_shader_uniform", "is_const": false, "is_vararg": false, "is_static": false, @@ -102720,7 +103195,7 @@ ] }, { - "name": "get_shader_instance_uniform", + "name": "get_instance_shader_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -103712,6 +104187,34 @@ } ] }, + { + "name": "_is_node_hover_valid", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_slot", + "type": "int" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_slot", + "type": "int" + } + ] + }, { "name": "connect_node", "is_const": false, @@ -108728,9 +109231,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3341600327, + "hash": 3690982128, "return_value": { - "type": "Vector2" + "type": "Vector2i" } }, { @@ -118774,20 +119277,24 @@ "value": 15 }, { - "name": "PARAM_SHADOW_BLUR", + "name": "PARAM_SHADOW_OPACITY", "value": 16 }, { - "name": "PARAM_SHADOW_VOLUMETRIC_FOG_FADE", + "name": "PARAM_SHADOW_BLUR", "value": 17 }, { - "name": "PARAM_TRANSMITTANCE_BIAS", + "name": "PARAM_SHADOW_VOLUMETRIC_FOG_FADE", "value": 18 }, { - "name": "PARAM_MAX", + "name": "PARAM_TRANSMITTANCE_BIAS", "value": 19 + }, + { + "name": "PARAM_MAX", + "value": 20 } ] }, @@ -119261,21 +119768,28 @@ "name": "shadow_transmittance_bias", "setter": "set_param", "getter": "get_param", - "index": 18 + "index": 19 }, { "type": "float", "name": "shadow_fog_fade", "setter": "set_param", "getter": "get_param", - "index": 17 + "index": 18 + }, + { + "type": "float", + "name": "shadow_opacity", + "setter": "set_param", + "getter": "get_param", + "index": 16 }, { "type": "float", "name": "shadow_blur", "setter": "set_param", "getter": "get_param", - "index": 16 + "index": 17 }, { "type": "bool", @@ -120856,6 +121370,44 @@ "value": 28 } ] + }, + { + "name": "VirtualKeyboardType", + "is_bitfield": false, + "values": [ + { + "name": "KEYBOARD_TYPE_DEFAULT", + "value": 0 + }, + { + "name": "KEYBOARD_TYPE_MULTILINE", + "value": 1 + }, + { + "name": "KEYBOARD_TYPE_NUMBER", + "value": 2 + }, + { + "name": "KEYBOARD_TYPE_NUMBER_DECIMAL", + "value": 3 + }, + { + "name": "KEYBOARD_TYPE_PHONE", + "value": 4 + }, + { + "name": "KEYBOARD_TYPE_EMAIL_ADDRESS", + "value": 5 + }, + { + "name": "KEYBOARD_TYPE_PASSWORD", + "value": 6 + }, + { + "name": "KEYBOARD_TYPE_URL", + "value": 7 + } + ] } ], "methods": [ @@ -121537,6 +122089,31 @@ "type": "bool" } }, + { + "name": "set_virtual_keyboard_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2696893573, + "arguments": [ + { + "name": "type", + "type": "enum::LineEdit.VirtualKeyboardType" + } + ] + }, + { + "name": "get_virtual_keyboard_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1928699316, + "return_value": { + "type": "enum::LineEdit.VirtualKeyboardType" + } + }, { "name": "set_clear_button_enabled", "is_const": false, @@ -121813,6 +122390,13 @@ "getter": "is_virtual_keyboard_enabled", "index": -1 }, + { + "type": "int", + "name": "virtual_keyboard_type", + "setter": "set_virtual_keyboard_type", + "getter": "get_virtual_keyboard_type", + "index": -1 + }, { "type": "bool", "name": "clear_button_enabled", @@ -126932,7 +127516,7 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "Object" + "type": "Node" }, "arguments": [ { @@ -126979,7 +127563,7 @@ }, "arguments": [ { - "name": "path", + "name": "index", "type": "int", "meta": "int32" } @@ -127068,10 +127652,6 @@ { "name": "despawned", "arguments": [ - { - "name": "scene_id", - "type": "int" - }, { "name": "node", "type": "Node" @@ -127081,10 +127661,6 @@ { "name": "spawned", "arguments": [ - { - "name": "scene_id", - "type": "int" - }, { "name": "node", "type": "Node" @@ -137221,6 +137797,58 @@ "type": "PackedStringArray" } }, + { + "name": "get_cmdline_user_args", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2981934095, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_restart_on_exit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 611198603, + "arguments": [ + { + "name": "restart", + "type": "bool" + }, + { + "name": "arguments", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + } + ] + }, + { + "name": "is_restart_on_exit_set", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_restart_on_exit_arguments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1139954409, + "return_value": { + "type": "PackedStringArray" + } + }, { "name": "delay_usec", "is_const": true, @@ -140184,6 +140812,31 @@ "default_value": "false" } ] + }, + { + "name": "set_fit_to_longest_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "fit", + "type": "bool" + } + ] + }, + { + "name": "is_fit_to_longest_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } } ], "signals": [ @@ -140220,6 +140873,13 @@ "setter": "_select_int", "getter": "get_selected", "index": -1 + }, + { + "type": "bool", + "name": "fit_to_longest_item", + "setter": "set_fit_to_longest_item", + "getter": "is_fit_to_longest_item", + "index": -1 } ] }, @@ -141544,6 +142204,18 @@ }, { "name": "PARAM_MAX", + "value": 15 + }, + { + "name": "PARAM_TURB_VEL_INFLUENCE", + "value": 13 + }, + { + "name": "PARAM_TURB_INIT_DISPLACEMENT", + "value": 14 + }, + { + "name": "PARAM_TURB_INFLUENCE_OVER_LIFE", "value": 12 } ] @@ -142219,6 +142891,137 @@ "meta": "float" } }, + { + "name": "get_turbulence_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_turbulence_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "turbulence_enabled", + "type": "bool" + } + ] + }, + { + "name": "get_turbulence_noise_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_turbulence_noise_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "turbulence_noise_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbulence_noise_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_turbulence_noise_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "turbulence_noise_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbulence_noise_speed_random", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_turbulence_noise_speed_random", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "turbulence_noise_speed_random", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbulence_noise_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3360562783, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_turbulence_noise_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3460891852, + "arguments": [ + { + "name": "turbulence_noise_speed", + "type": "Vector3" + } + ] + }, { "name": "get_gravity", "is_const": true, @@ -142863,6 +143666,76 @@ "getter": "get_param_texture", "index": 9 }, + { + "type": "bool", + "name": "turbulence_enabled", + "setter": "set_turbulence_enabled", + "getter": "get_turbulence_enabled", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_noise_strength", + "setter": "set_turbulence_noise_strength", + "getter": "get_turbulence_noise_strength", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_noise_scale", + "setter": "set_turbulence_noise_scale", + "getter": "get_turbulence_noise_scale", + "index": -1 + }, + { + "type": "Vector3", + "name": "turbulence_noise_speed", + "setter": "set_turbulence_noise_speed", + "getter": "get_turbulence_noise_speed", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_noise_speed_random", + "setter": "set_turbulence_noise_speed_random", + "getter": "get_turbulence_noise_speed_random", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_influence_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 13 + }, + { + "type": "float", + "name": "turbulence_influence_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 13 + }, + { + "type": "float", + "name": "turbulence_initial_displacement_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 14 + }, + { + "type": "float", + "name": "turbulence_initial_displacement_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 14 + }, + { + "type": "CurveTexture", + "name": "turbulence_influence_over_life", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 12 + }, { "type": "float", "name": "anim_speed_min", @@ -148466,6 +149339,38 @@ "inherits": "RefCounted", "api_type": "core", "methods": [ + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 1118143851, + "return_value": { + "type": "PhysicsRayQueryParameters2D" + }, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + }, + { + "name": "collision_mask", + "type": "int", + "meta": "uint32", + "default_value": "4294967295" + }, + { + "name": "exclude", + "type": "Array", + "default_value": "[]" + } + ] + }, { "name": "set_from", "is_const": false, @@ -148703,6 +149608,38 @@ "inherits": "RefCounted", "api_type": "core", "methods": [ + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 680321959, + "return_value": { + "type": "PhysicsRayQueryParameters3D" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "collision_mask", + "type": "int", + "meta": "uint32", + "default_value": "4294967295" + }, + { + "name": "exclude", + "type": "Array", + "default_value": "[]" + } + ] + }, { "name": "set_from", "is_const": false, @@ -168767,6 +169704,23 @@ "inherits": "RefCounted", "api_type": "core", "methods": [ + { + "name": "create_from_string", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 2150300909, + "return_value": { + "type": "RegEx" + }, + "arguments": [ + { + "name": "pattern", + "type": "String" + } + ] + }, { "name": "clear", "is_const": false, @@ -172010,6 +172964,23 @@ } ] }, + { + "name": "framebuffer_is_valid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4155700596, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "framebuffer", + "type": "RID" + } + ] + }, { "name": "sampler_create", "is_const": false, @@ -173889,11 +174860,11 @@ "value": 0 }, { - "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS", + "name": "LIGHT_PROJECTOR_FILTER_LINEAR", "value": 1 }, { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR", + "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS", "value": 2 }, { @@ -173901,8 +174872,12 @@ "value": 3 }, { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS_ANISOTROPIC", "value": 4 + }, + { + "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "value": 5 } ] }, @@ -173993,20 +174968,24 @@ "value": 15 }, { - "name": "LIGHT_PARAM_SHADOW_BLUR", + "name": "LIGHT_PARAM_SHADOW_OPACITY", "value": 16 }, { - "name": "LIGHT_PARAM_SHADOW_VOLUMETRIC_FOG_FADE", + "name": "LIGHT_PARAM_SHADOW_BLUR", "value": 17 }, { - "name": "LIGHT_PARAM_TRANSMITTANCE_BIAS", + "name": "LIGHT_PARAM_SHADOW_VOLUMETRIC_FOG_FADE", "value": 18 }, { - "name": "LIGHT_PARAM_MAX", + "name": "LIGHT_PARAM_TRANSMITTANCE_BIAS", "value": 19 + }, + { + "name": "LIGHT_PARAM_MAX", + "value": 20 } ] }, @@ -174179,11 +175158,11 @@ "value": 0 }, { - "name": "DECAL_FILTER_NEAREST_MIPMAPS", + "name": "DECAL_FILTER_LINEAR", "value": 1 }, { - "name": "DECAL_FILTER_LINEAR", + "name": "DECAL_FILTER_NEAREST_MIPMAPS", "value": 2 }, { @@ -174191,8 +175170,12 @@ "value": 3 }, { - "name": "DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "name": "DECAL_FILTER_NEAREST_MIPMAPS_ANISOTROPIC", "value": 4 + }, + { + "name": "DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "value": 5 } ] }, @@ -176031,7 +177014,7 @@ ] }, { - "name": "shader_get_param_list", + "name": "shader_get_shader_uniform_list", "is_const": true, "is_vararg": false, "is_static": false, @@ -182236,7 +183219,7 @@ ] }, { - "name": "instance_geometry_set_shader_parameter", + "name": "instance_geometry_set_shader_uniform", "is_const": false, "is_vararg": false, "is_static": false, @@ -182258,7 +183241,7 @@ ] }, { - "name": "instance_geometry_get_shader_parameter", + "name": "instance_geometry_get_shader_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -182279,7 +183262,7 @@ ] }, { - "name": "instance_geometry_get_shader_parameter_default_value", + "name": "instance_geometry_get_shader_uniform_default_value", "is_const": true, "is_vararg": false, "is_static": false, @@ -182300,7 +183283,7 @@ ] }, { - "name": "instance_geometry_get_shader_parameter_list", + "name": "instance_geometry_get_shader_uniform_list", "is_const": true, "is_vararg": false, "is_static": false, @@ -185109,7 +186092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3713126301, + "hash": 1939848623, "return_value": { "type": "enum::Error" }, @@ -185127,6 +186110,11 @@ "name": "use_sub_threads", "type": "bool", "default_value": "false" + }, + { + "name": "cache_mode", + "type": "enum::ResourceLoader.CacheMode", + "default_value": "1" } ] }, @@ -189931,9 +190919,140 @@ { "name": "RootMotionView", "is_refcounted": false, - "is_instantiable": false, + "is_instantiable": true, "inherits": "VisualInstance3D", "api_type": "core", + "methods": [ + { + "name": "set_animation_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1348162250, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_animation_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4075236667, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2920490490, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3444240500, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_cell_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_zero_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_zero_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + } + ], "properties": [ { "type": "NodePath", @@ -194093,7 +195212,7 @@ ] }, { - "name": "has_param", + "name": "has_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -194203,7 +195322,7 @@ } }, { - "name": "set_shader_param", + "name": "set_shader_uniform", "is_const": false, "is_vararg": false, "is_static": false, @@ -194221,7 +195340,7 @@ ] }, { - "name": "get_shader_param", + "name": "get_shader_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -204410,6 +205529,33 @@ } ] }, + { + "name": "set_custom_arrow_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "arrow_step", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_custom_arrow_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "double" + } + }, { "name": "is_editable", "is_const": true, @@ -204501,6 +205647,13 @@ "setter": "set_suffix", "getter": "get_suffix", "index": -1 + }, + { + "type": "float", + "name": "custom_arrow_step", + "setter": "set_custom_arrow_step", + "getter": "get_custom_arrow_step", + "index": -1 } ] }, @@ -213963,7 +215116,7 @@ "hash": 2586408642, "arguments": [ { - "name": "arg0", + "name": "enabled", "type": "bool" } ] @@ -217566,6 +218719,10 @@ { "name": "GRAPHEME_IS_CONNECTED", "value": 1024 + }, + { + "name": "GRAPHEME_IS_SAFE_TO_INSERT_TATWEEL", + "value": 2048 } ] }, @@ -217672,6 +218829,14 @@ { "name": "FEATURE_USE_SUPPORT_DATA", "value": 4096 + }, + { + "name": "FEATURE_UNICODE_IDENTIFIERS", + "value": 8192 + }, + { + "name": "FEATURE_UNICODE_SECURITY", + "value": 16384 } ] }, @@ -221504,6 +222669,45 @@ } ] }, + { + "name": "is_confusable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1433197768, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "dict", + "type": "PackedStringArray" + } + ] + }, + { + "name": "spoof_check", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3927539163, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "strip_diacritics", "is_const": true, @@ -221521,6 +222725,23 @@ } ] }, + { + "name": "is_valid_identifier", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3927539163, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "string_to_upper", "is_const": true, @@ -225054,6 +226275,22 @@ } ] }, + { + "name": "is_valid_identifier", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "string_get_word_breaks", "is_const": true, @@ -225074,6 +226311,42 @@ } ] }, + { + "name": "is_confusable", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "dict", + "type": "PackedStringArray" + } + ] + }, + { + "name": "spoof_check", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "string_to_upper", "is_const": true, @@ -233889,6 +235162,153 @@ } ] }, + { + "name": "TorusMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_inner_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_inner_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_outer_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_outer_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_ring_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ring_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "float", + "name": "inner_radius", + "setter": "set_inner_radius", + "getter": "get_inner_radius", + "index": -1 + }, + { + "type": "float", + "name": "outer_radius", + "setter": "set_outer_radius", + "getter": "get_outer_radius", + "index": -1 + }, + { + "type": "int", + "name": "rings", + "setter": "set_rings", + "getter": "get_rings", + "index": -1 + }, + { + "type": "int", + "name": "ring_segments", + "setter": "set_ring_segments", + "getter": "get_ring_segments", + "index": -1 + } + ] + }, { "name": "TouchScreenButton", "is_refcounted": false, @@ -252932,8 +254352,12 @@ "value": 1 }, { - "name": "COLOR_DEFAULT_MAX", + "name": "COLOR_DEFAULT_TRANSPARENT", "value": 2 + }, + { + "name": "COLOR_DEFAULT_MAX", + "value": 3 } ] }, @@ -254539,7 +255963,7 @@ "name": "VisualShaderNodeVectorRefract", "is_refcounted": true, "is_instantiable": true, - "inherits": "VisualShaderNode", + "inherits": "VisualShaderNodeVectorBase", "api_type": "core" }, { @@ -261788,6 +263212,10 @@ "name": "Glyph", "format": "int start = -1;int end = -1;uint8_t count = 0;uint8_t repeat = 1;uint16_t flags = 0;float x_off = 0.f;float y_off = 0.f;float advance = 0.f;RID font_rid;int font_size = 0;int32_t index = 0" }, + { + "name": "ObjectID", + "format": "uint64_t id = 0" + }, { "name": "PhysicsServer3DExtensionMotionCollision", "format": "Vector3 position;Vector3 normal;Vector3 collider_velocity;real_t depth;int local_shape;ObjectID collider_id;RID collider;int collider_shape" From 9acff81056228e675e027987219f2e9082a48353 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Wed, 31 Aug 2022 23:05:00 +0530 Subject: [PATCH 15/15] Update godot-cpp commit link in THIRDPARTY.md --- THIRDPARTY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/THIRDPARTY.md b/THIRDPARTY.md index 2ffcb6a..b51f8b9 100644 --- a/THIRDPARTY.md +++ b/THIRDPARTY.md @@ -2,7 +2,7 @@ The Godot Git Plugin source code uses the following third-party source code: -1. godotengine/godot-cpp - MIT License - https://github.com/godotengine/godot-cpp/tree/99e9dd1d9396ed3af40678263b509078e5265ffc +1. godotengine/godot-cpp - MIT License - https://github.com/godotengine/godot-cpp/tree/8ba1c059da5e97428d40612dd0afc2be4079b5c6 2. libgit2/libgit2 - GPLv2 with a special Linking Exception - https://github.com/libgit2/libgit2/tree/b7bad55e4bb0a285b073ba5e02b01d3f522fc95d 3. libssh2/libssh2 - BSD-3-Clause License - https://github.com/libssh2/libssh2/tree/635caa90787220ac3773c1d5ba11f1236c22eae8 @@ -17,7 +17,7 @@ We also link to these third-party libraries (only in the compiled binary form): ``` # MIT License -Copyright (c) 2017-2021 Godot Engine contributors. +Copyright (c) 2017-2022 Godot Engine contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal